- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
This is for a list box but is much the same [CODE] Dim connectionString As String = DBConnectionString Dim sqlConn As New SQLiteConnection(connectionString) Dim SQLComm As New SQLiteCommand("SELECT * FROM Collections", sqlConn) sqlConn.Open() Dim r As SQLiteDataReader = SQLComm.ExecuteReader() While r.Read() lbProjectType.Items.Add(New MyListboxItem(r("CollName"), r("CollGuid"))) End While sqlConn.Close()[/CODE]
I'm not sure if this is the same thing, but it's how I do it in my app. [CODE]Me.ImageList1.Images.Add(FilePath, ImageFromBase64String(r2("DBImage")))[/CODE]
I think Advanced Installer does this... [url]http://www.advancedinstaller.com[/url]
Here's the code I use. [CODE] Function CreateKey() '## Create mCom registry subkey ## Dim regKey As RegistryKey Try regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE", True) regKey.CreateSubKey("Software\my company\my app") regKey.Close() Return (True) Catch ex As Exception MsgBox("Registry Setting Failed: " & ex.Message) Return (False) End Try End Function Function SetValue(ByVal subKey As String, …
I have a sqlite database and want to update the sort column in my table. e.g. Col1 - Col2 C - 4 A - 3 B - 5 I want to sort on col1 then update Col2 with new values i.e. 1-3 Don't know if it's possible but doing it …
As good a place as any. [URL="http://msdn.microsoft.com/en-us/vbasic/default.aspx"]Microsoft[/URL]
[QUOTE=hirenpatel53;1274279]i have one datetime picker want to show selected date into textbox please help[/QUOTE] [code] Textbox1.Text = DateTimePicker1.Value [/code]
When I read a text file as the code below the first line returns as nothing. I checked the text file and it contains 3 lines before the read. After the read the first line is blank the following 2 lines have values. I don't write back to the file, …
Hi, I've been at this for an hour and feel it's time to give up and ask you guys. I've got a data grid view. I can hold down CTRL+MouseClick and multiselect my rows. How do I do the same with key strokes? I basically want to use the arrow …
The End.
Nikon70