No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Re: 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 … | |
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 … | |
Re: 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 … | |
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 … | |
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 … | |
Re: 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" | |
Re: 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)) … | |
Re: 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 … | |
The End.