| Thread | Last Post | Replies |
|
| ThreadPool.QueueUserWorkItem | 20 Jun 2005 15:53 GMT | 1 |
In the code format below, is there any way to pass in a variable to the writefiles proceedure? ThreadPool.QueueUserWorkItem(AddressOf WriteFiles) Public Sub WriteFiles(ByVal stateInfo As Object)
|
| Please help :( richtextbox issue | 20 Jun 2005 15:01 GMT | 4 |
I really don't understand why the following code set the font color of 'message' to blue but then when I type text manually in the richtextbox after 'message', the font is still blue ! It should be black as I do "\cf0}". Can anyone explain that to me ?
|
| GetStdHandle .NET | 20 Jun 2005 14:53 GMT | 9 |
I ran into trouble with GetStdHandle API. When I'm trying to get standard output with GetStdHandle(-11I), it returns strange values such as 1548, 1876. If I try to WriteConsole() into these handles, it does not work, and GetLastError returns ERROR_INVALID_HANDLE. But when I ...
|
| Routine to restore program from system tray | 20 Jun 2005 14:33 GMT | 2 |
Following the advice of several members, especially Dragon, I have gotten this routine to work. If you double click on your program's icon to load it, and it is already running minimized into the sysem tray, it will just reopen the running instance, not create another instance. ...
|
| Form must not display in Application task bar | 20 Jun 2005 14:16 GMT | 4 |
I have a problem with the ALT+TAB application task bar, I have an application wich have more than one form displaying, but I just want one(the main form) display in the application task bar (when we push on ALT+TAB) and not the secondary form.
|
| Viewing data from dataview | 20 Jun 2005 13:39 GMT | 1 |
I use a dataview to view records from an sql-database in a windows-form. When I use a select statement from a table like SELECT * FROM Table1 it works ok. objDataAdapter.Fill(objDataSet, "Table1")
|
| Thread and memory consumption | 20 Jun 2005 13:29 GMT | 10 |
Does anybody is experiencing a lot of RAM consumption when using many threads ? If yes, how can we reduce that level of used memory? Thanks tou!
|
| Refresh of control (color) | 20 Jun 2005 11:55 GMT | 4 |
Me.tvKunder.ForeColor = Color.FromArgb(l) changes the color of the Treeview control 'tvKunder' immidiately. Using a loop: For Each c In Me.Controls
|
| DataGrid Style | 20 Jun 2005 11:34 GMT | 3 |
Hi all. Help! What am I doing wrong? My datagrid works fine, the columns are created and the data is filled. However, I just cannot resize the column widths to what I want them to be. I created a TableStyle but it is ignored. :-(
|
| Dataset | 20 Jun 2005 11:15 GMT | 5 |
HI my issue is that i'm having a dataset with 2 tables in it, the problem that i want to have a dataview wich represents a subquery ie (select * from tbl1 where id in (select top 10 from tbl2))
|
| System tray help | 20 Jun 2005 10:58 GMT | 8 |
I am having application in vb.net. I am having module and one form. From module i am opening form. On main itself i am checking whether another instance of application is running or not. I am also providing faclity of minimizing application
|
| Simple Text Box Question | 20 Jun 2005 09:26 GMT | 3 |
I was looking at a text box to set its Tool Tip property and it seems Dot Net does not provide this as a property? Is this correct or have I missed it somewhere? Also could someone explain the ImeMode settings?
|
| Using MsChart | 20 Jun 2005 07:18 GMT | 1 |
I have a program that I have added a tab control (using to following code) with 12 tabpages, on the pages I added AxMsChart and a Button. The button control works fine but the AxMsChart gives an "InvalidActiveXstateException" error when
|
| Bluetooth OBEX File Transfer | 20 Jun 2005 07:12 GMT | 1 |
I'd like to transfer files from a Desktop computer to my Cellphone/PDA using VB.NET I've research a bit on this, and I found that I would need to do it using OBEX via Serial Bluetooth COM Port.
|
| How do I add my icon to a VB.net exe file? | 20 Jun 2005 04:54 GMT | 1 |
Is there a simple way to add my own icon to my vb exe file? I would think that there would be some way to add the icon file (MyIcon.ico) to the project and have it included. I can add the icon to a shortcut but that is not what I want.
|