2,157 Posted Topics
Re: You might be having a proxy problem on IIS, try adding this: [code]<defaultProxy useDefaultCredentials="true"> <proxy autoDetect="True" usesystemdefault="True"/> </defaultProxy>[/code] | |
Re: You can use this to get the color of a pixel on the screen: [code]public Color GetColorAt(Point location) { Bitmap screenPixel = new Bitmap(1, 1); Graphics gfx = Graphics.FromImage((Image)screenPixel); gfx.CopyFromScreen(location.X, location.Y, 0, 0, new Size(1, 1)); return screenPixel.GetPixel(0,0); }[/code] | |
Re: Take the date of registration then use the AddDays method of DateTime. | |
Re: Create two events in your main window, something like WindowOpened and WindowClosed. When you open another window, it calls the WindowOpened routine, and when it closes, it calls WindowClosed. You will have to pass a reference to your main form to each form you create. | |
Re: It means that you have two definitions of 'components' in the same scope/namespace. For example, you can't do this: [code] int myvar = 3; String myvar = "tuesday"; [/code] | |
Re: Why didn't you use SqlTypes.SqlInt64 for the identity field? | |
Re: The VB.NET forum is right over there -> |
The End.