Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~2K People Reached
Favorite Forums

10 Posted Topics

Member Avatar for hercx

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]

Member Avatar for hercx
0
280
Member Avatar for Mike Askew

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]

Member Avatar for Member #857553
0
217
Member Avatar for tahamasoom
Member Avatar for yoge911
Member Avatar for swathys

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, …

Member Avatar for Nikon70
0
168
Member Avatar for Nikon70

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 …

Member Avatar for mfas
0
109
Member Avatar for Awah Mohamed

As good a place as any. [URL="http://msdn.microsoft.com/en-us/vbasic/default.aspx"]Microsoft[/URL]

Member Avatar for Nikon70
0
115
Member Avatar for hirenpatel53

[QUOTE=hirenpatel53;1274279]i have one datetime picker want to show selected date into textbox please help[/QUOTE] [code] Textbox1.Text = DateTimePicker1.Value [/code]

Member Avatar for hirenpatel53
0
289
Member Avatar for Nikon70

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, …

Member Avatar for Nikon70
0
103
Member Avatar for Nikon70

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 …

0
60

The End.