you need to set the ControlStyles to support the transperant color before you can set it for you control. http://msdn2.microsoft.com/en-us/library/wk5b13s4(d=ide).aspx[^] Ankita
Which control do you use ? if label, then you cannot select the text. if textbox or richtextbox, then you can select the text using method "Select(int start, int length)". e.g.
this.textbox.Select(0, 2);
Hi! The C# compiler is part of the .NET framework and can be found somewhere under %WINDIR%\Microsoft.NET So if you have a .NET framework installed on the target machine (which you need for your app to run), you'll also have csc.exe. Regards, mav -- Black holes are the places where god divided by 0...
I don't see how this would work properly. Your Image is being loaded from a FileStream that you're immediately closing with fs.Close(). An underlying stream has to be open for as long as the Image is in use. The next call to Invalidate() makes it try to refresh the image... but it can't, so I would expect an error thrown at that point. -- I've killed again, haven't I?
Hi! Don't know if I understand what you want, but if you need the value of an AutoValue that Access has assigned to a field in your newly-inserted row, you can look for "@@Identity". Another way could be to create your IDs on your own - use a GUID and you can be sure that it's unique and you have its value before you even insert the row into the database. Regards, mav -- Black holes are the places where god divided by 0...
can you explain better what have you told http://www.codeproject.com/script/comments/forums.asp?msg=1483752&forumid=1649&XtraIDs=1649&searchkw=sasuko&sd=2%2F12%2F2006&ed=5%2F13%2F2006#xx1483752xx[^] here with hack P/invoke?
Susuko wrote:
Where can i downalod it?
You could try reinstalling the .NEt framework or VS200x.
Susuko wrote:
where can i found a tutorial to use?
Here are a few:
JIT Compilation and Performance - To NGen or Not to NGen?[^]
NGen Revs Up Your Performance with Powerful New Features[^]
The Performance Benefits of NGen[^]
/ravi My new year's resolution: 2048 x 1536 Home | Music | Articles | Freeware | Trips ravib(at)ravib(dot)com
As mentioned in the page to which I posted the link, you call the DrawReversibleFrame method a second time (passing in the same Rectangle as the first call) to erase the frame. Josh