| Thread | Last Post | Replies |
|
| My Blog | 25 Nov 2006 01:21 GMT | 2 |
Take a look at this link... http://arun-dotnet.blogspot.com
|
| Access to DataList | 25 Nov 2006 01:16 GMT | 1 |
I have a problem: how can I retrieve data from specific location in datalist ? ex. row no. 5 col no. 3 ? i populate datalist with SQL function without using dataset and datatable
|
| Tab Key as Entry Key | 25 Nov 2006 01:10 GMT | 4 |
I posted this request a few weeks ago and since then I lost all the replies. Please bear with me and re-post replies to this request again. I want to know if its relatively easy to have the Entry key act as the Tab key in Windows forms written in C#. And are there any real ...
|
| ArrayList without Boxing and UnBoxing | 25 Nov 2006 00:12 GMT | 94 |
How can I create an ArrayList in the older version of .NET that does not require the expensive Boxing and UnBoxing operations? In my case it will be an ArrayList of structures of ordinal types. Thanks.
|
| How to trim a text string? | 24 Nov 2006 23:28 GMT | 6 |
Hi i would like to trim a text string. I have a text string called filename I want to display just the file in my label, and not the path. Can someone tell me how I get everything AFTER, the LAST, BACKSLASH in
|
| Send Message(string) c# exe to vc++ exe(unmanaged) using WindowsSendMessage | 24 Nov 2006 22:49 GMT | 2 |
I tried followinf but working fine fo int but how to do it for string using user custome message in c# [DllImport("User32.dll")]
|
| Managed C# to unmanaged DLL | 24 Nov 2006 22:27 GMT | 11 |
I have a to pass a char* from C# to a library in C++. I have tried passing string and doing [MarshaAs(UnmanagedType.LPStr)]string myVal and it didn't work . I also tried to pass an unsafe call by declaring my method as unsafe and passing a pointer and it still doesn't work.
|
| Multi-lingual Web applications | 24 Nov 2006 20:43 GMT | 1 |
I was wondering if anyone here has experience of making Web applications that are multi-lingual? The solution that I have in my head is to have several "language" files as resources so that there are no hard-coded strings within my class library, but I'm not sure how to start.
|
| Is NET 2.0 installed? | 24 Nov 2006 19:20 GMT | 4 |
Is there a simple way for a newbie PC user to determine if NET 2.0 is installed?
|
| Addition of two values | 24 Nov 2006 19:17 GMT | 5 |
I've got a method : public static Object _Add(Object val1, Object val2); {} val1 and val2 are among of these types : - sbyte
|
| Using an array that is allocated in a native dll? | 24 Nov 2006 16:31 GMT | 5 |
I have a native dll that has a byte array to which I want a pointer to in my C# application but I will need some help to do that. the dll exports this function: void DllFunction (PBYTE pArray, DWORD dwLen)
|
| Developing gadgets for Windows Vista | 24 Nov 2006 16:09 GMT | 6 |
Can I develop my own gadgets for Windows Vista? Where can I find more information about this?
|
| [NEWBIE] DLLImport | 24 Nov 2006 16:06 GMT | 1 |
I'm trying to call function BOOL PtInRect(const RECT *lprc, POINT pt) from C#: This is my C# code I have problem with: [DLLImport("user32")]
|
| Strange Label behavior | 24 Nov 2006 16:00 GMT | 10 |
Can someone explain this one to me ...? Add one Label and one Button to form . Set RightToLeft of Label to True. try this
|
| Easy one about supressing validation | 24 Nov 2006 15:47 GMT | 2 |
This is regarding VS 2003 Windows forms. I have TextBoxes which use the Validating event when the user shifts focus. When the user closes down the form using the red cross in the top left corner, validation still takes place if a TextBox has focus.
|