| Thread | Last Post | Replies |
|
| Setting cursor to show overwrite or insert mode | 14 Jun 2005 16:10 GMT | 4 |
I use the RichTextBox and sometimes put it into overwrite mode. I'd like the cursor to show whether its in overwrite or insert mode. I often use Cursor.Current = Cursors.WaitCursor
|
| Running sql-query | 14 Jun 2005 16:03 GMT | 1 |
How do I run this query Dim objConnectionUNI As OleDbConnection = New OleDbConnection(connUNI) Dim objDataAdapter As OleDbDataAdapter = New OleDbDataAdapter( _ "INSERT INTO tblDebitor ( Kontonr, KontoNrTall, Kontnavn,
|
| databound comboboxes in datagridview | 14 Jun 2005 15:33 GMT | 1 |
Databound comboboxes in a datagridview control, are not editable! Therefore if I want to let my user adding a value which is not part of the list, it wouldn't work! Is there a work around? Has anyone come across this problem before?
|
| how can i execute a delegate on the thread that created the object ? | 14 Jun 2005 15:24 GMT | 3 |
how can i execute a delegate on the thread that created the object ? (the object is not control, but im looking somthing like the control.invoke , but to my object)
|
| Seeking tool to create custom collections | 14 Jun 2005 14:57 GMT | 3 |
Until Generics arrives, the only way to do things like: create a strongly-typed ArrayList-like object; create a strongly-typed HashTable with given types for key and value; and so on; is to churn out a block of code manually, for each strongly-typed collection wanted.
|
| Unhandled Exception handler | 14 Jun 2005 14:57 GMT | 1 |
I have a Windows forms app which is started from a sub Main. In Sub main I have this line: AddHandler System.AppDomain.CurrentDomain.UnhandledException, AddressOf Form1.UnhandledExceptionHandler
|
| Formatting a String | 14 Jun 2005 13:58 GMT | 4 |
I have a string that looks like this: 2005-06-01 I'd like to make this string look like this: June 1, 2005
|
| sendKeys doesn't work | 14 Jun 2005 13:46 GMT | 4 |
i'm primarily a web developer so this is probably some really obvious mistake, but why doesn't sendKeys open the 'Open File' dialogue in photoShop with the following code: '// open the map graphic for editing in photoshop //
|
| Looping through radiobuttons | 14 Jun 2005 13:35 GMT | 3 |
I have 5 radiobuttons in a groupbox and I'm trying to uncheck all of them: Dim ctrl as Control For each ctrl in GB.Controls If TypeOf ctrl Is RadioButton Then
|
| Changing a public string | 14 Jun 2005 12:48 GMT | 8 |
I have this line of code Public Navn1 As String = "Per" I want to change it to another 'text' by entering some text in a textbox like
|
| MVP Grump | 14 Jun 2005 12:04 GMT | 13 |
MVP's eh. Well, I think there are some people who definately dont deserve them but get them because of their connections. I've just been looking at the MVP list for VB and I can see at least one person who I know ( No one here I might add) who NEVER helps on the NG's but is there ...
|
| Check if object handles/is hooked up to a certain type of event/event handler | 14 Jun 2005 11:58 GMT | 2 |
Is there a way to check if an object handles a certain type of event or if the object is hooked up to a certain event handler/call back function? For instance what would be the equivalent syntax in the following:
|
| regex "%s" and how to escape the % | 14 Jun 2005 11:52 GMT | 2 |
I want to use the regex.replace for a string containing "%s" I can't seem to get the "%s" escaped. I tried a normal "\%s" but that doesn't seem to do it. Picks up any "s". ---------------------------------------------------------------------
|
| Thread just wont start!!?!?! | 14 Jun 2005 11:49 GMT | 5 |
This one is really doing my head in, I am attempting to start a thread using the following code, -------------------- Public Sub start()
|
| How to uninstall the deployment by the user | 14 Jun 2005 11:47 GMT | 4 |
Now, I have to go to the control panel to remove the installed deployment manually. Is there any method to generate an uninstall exe for the user to remove the deployment? Thanks a lot,
|