Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K

9 Posted Topics

Member Avatar for mitz

Affiliate programs pay much better than AdSense. If you can get banners for a good category (like Car Insurance) you can get paid anywhere from $5 to $30 a click. There are affiliates that earn hundreds of thousands of dollars per month. Find a good affiliate program and start earning …

Member Avatar for margaret224
1
1K
Member Avatar for danielgee

Hi, Is there a simple control I can use with ASP.NET to display an unbound list with multiple columns (like the ListView control in VB6.) It seems that you can use the GridView. but it seems really complicated to populate (with unbound data.) Can you use the ListBox to do …

Member Avatar for danielgee
0
156
Member Avatar for Dell XPS

Unfortunately Microsoft forgot to put in the e.Handled on a mouse event. If you would like, you can create your own Class do deal with this. Then you just use e.Handled = True (on the TabControl MouseDown for example) and the mouse click will not get fired. I copied the …

Member Avatar for Dell XPS
0
226
Member Avatar for danielgee

Hi, When I execute queries which have a lot of data returned in the recordset my VB app seems to hang (IE: This program is not responding) I'm using ODBC to connect to the database and am using Postgres DB [CODE] Public db_name As String Public db_username As String Public …

Member Avatar for Oxiegen
0
165
Member Avatar for danielgee

I'm using a thread in my function to connect to the DB. How do I tell when the thread is finished so that I can continue with the next part of the code. Also, must you terminate a thread or will it terminate on its own after the code has …

0
65
Member Avatar for Jahira

Sorry, didn't see the new thread After your datafill eg: Me.TestTableTableAdapter.Fill(Me.DataSet1.TestTable) - VB will generate this for you use: ComboBox1.Text = "Select Country"

Member Avatar for Jx_Man
0
126
Member Avatar for leroi green

Try this: [code] Private Sub xCalcButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles xCalcButton.Click 'go for it! Dim gLoop As Long Dim namepart(3) As String Dim length(3) As String namepart = TextBox1.Text.Split(" ") For gLoop = 0 To 2 If Len(namepart(gLoop)) <= 6 Then length(gLoop) = "short" ElseIf Len(namepart(gLoop)) …

Member Avatar for danielgee
0
87
Member Avatar for shivangiKul

Sounds like the query is using DISTINCT. Depending on the database engine it may be better to use the GROUP BY? When using a DISTINCT in the database query, it will not repeat rows with the same data. (IE. If you have 7 rows with the first name 'Mary' and …

Member Avatar for danielgee
0
97
Member Avatar for farifari

The End.