Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by tEkHEd

  1. tEkHEd

    Application Pools + Client User

    I think that I may have introduced a double hop scenario with the application pool being run as a specified account and the web site configured to use the same account.. I will do some more testing on this though..
  2. tEkHEd

    Application Pools + Client User

    Hi.. I have built a composite asp.net 2.0 webcontrol for my intranet which is hosted by an application pool that is run under a service account. I am trying to find a solution where I can update the control with the client user id. I thought that I could use a VBScript that is run on a...
  3. tEkHEd

    Active Directory Permission

    Hello. I want to be able to allow my computer objects to add/remove themselves from AD Groups. I thought that this simply needed the NT AUTHORITY\SELF account to be appropriatly permissioned? I have set the following permissions on my OU and Group Objects, but am still not able to add the...
  4. tEkHEd

    CreateProcessAsUserW - ERROR

    Hi. I am no longer able to use the API call above with Windows XP SP2 or Windows Server 2003. I understand that this is due to the way in which this api call has been amended in the new versions of the OS if called by a service. To work around this I wanted to use impersonation on a seperate...
  5. tEkHEd

    DataTable Selecting + NOT IN

    I can't do that as this is an in-memory dataset build from directory.services queries from Active Directory.
  6. tEkHEd

    DataTable Selecting + NOT IN

    Hi there.. I have a dataset created of 3 tables, my structure is a little like: Application Table: AppID (Int32 Auto generated (primary key)) AppName (String) AppLicense (string) Busines Layer Table: BLID (Int32 Auto generated (primary key)) BLName (String) BL_mm_App: ID (Int32 Auto...
  7. tEkHEd

    Help with Master-Detail and Datagrid

    Hello.. I am trying to build an in memory DB for an application that reads from Active Directory. The app is going to be used to manage Applications and their dependancies. To achieve the link between app and its dependancies I have created a DataSet consisting of 2 tables and 2 relationships...
  8. tEkHEd

    image

    If you want to allow the user to specify their own skins for the die, then you simply need to create a 2nd ImageList on the fly and get the user to add the images that they wish to use. You will need to write a function that will bind the images to the list, validate that they have selected 6...
  9. tEkHEd

    Way to speed up comparison of 1300 query result rows with

    So change your SQLDataAdapter/Command to and OLEDataAdapter/Command :)
  10. tEkHEd

    Combobox Index out of range

    You can use the combobox properties to select the item that you want by using the combobox1.SelectedText = "MyText" I also wouldn't necessarily create the combobox with a blank entry, I would simply set the property to Disabled (combobox.Enabled = False) so that the user couldn't actually...
  11. tEkHEd

    image

    Why not put the 6 images for your die in an ImageList? You can then reference the image you require by the ImageList Index, remember of course that the ImageList is ZERO based so your code will need to be something like: diceRoll.Image = ImageList1.Images(Dice -1)
  12. tEkHEd

    Can you trap Expanding and Collapsing TreeView controls at Design Time

    Or indeed these events too (forgot about them..) treeview1.BeforeExpand Treeview1.BeforeCollapse
  13. tEkHEd

    Can you trap Expanding and Collapsing TreeView controls at Design Time

    Yes, you can handle the following treeview events. Treeview1.AfterExpand Treeview1.AfterCollapse
  14. tEkHEd

    add null fields

    not too sure about mySQL syntax, but if this were SQL then I would check for a null value and replace it with 0 prior to doing the addition.. something like: Update isnull(field1, 0) + 1 as field1 blah....
  15. tEkHEd

    how to make it look like xp style

    You still need to specify a manifest file and add your resources to it.. You also need to make sure your controls are set to FlatStyle: System.Windows.Forms.FlatStyle.System

Part and Inventory Search

Back
Top