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..
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...
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...
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...
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...
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...
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...
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...
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)
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....
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.