Search results for query: *

  1. S

    My Code Just Isn't Working.. for prime numbers

    Well, another way you can do it is: Public Class Form1 Inherits System.Windows.Forms.Form Dim Finished As Boolean Private Sub btnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click Dim Primes(1000) As Integer Dim Count, Num, Found As...
  2. S

    PRINTING contents of a TableLayout Panel

    Hi all! i really don't know how to sort this one out, i would like to print out the contents(text) of labels contained in a tableLayout Panel. The labels are dynamically created (together with their respective text) in a For Loop based on user input. What i am trying to achieve is to have a...
  3. S

    Inserting New Records in Database

    Thanks for the quick response...actually i am using vb 2005 and didn't realize that my profile says i am using vb2003...i have just updated that. Nevertheless, i'll give it a try and see what happens.
  4. S

    Inserting New Records in Database

    Hi all!. I am having a problem when trying to insert a new row in the database. No Errors are showing up but when i check the MS-Access database, the new row is not there. Iam reading the contents from 3 controls as shown in code below: If con.State = ConnectionState.Closed Then...
Back
Top