Jump to content
Xtreme .Net Talk

JInsane

Members
  • Posts

    3
  • Joined

  • Last visited

About JInsane

  • Birthday 09/13/1981

Personal Information

  • Occupation
    VB + VB.net programmer
  • Visual Studio .NET Version
    2003
  • .NET Preferred Language
    vb.net

JInsane's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. have you tried this.... SmtpMail.Send(email,"password","username") End Sub
  2. Hi Igomez, have you find a solution yet? I'm using the exact code and most prob a similar form, except it doesn't give me an error at all but nothing comes through at my fax? plz let me know you have found out anything about Faxing. Thanx in advance JInsane
  3. Lo guys/girls I got a problem which has to be sorted by 5/09 ..Hope anyone can help. I'm using a DataAdapter to connnect to my DataSet like this.. SqlDataAdapter1.Fill(DsVModel1, "VMake") 'Bind DataSet to DataGrid DataGrid1.DataSource = DsVModel1.Tables ("VMake").DefaultView ok.. now i need to browse the record via Button and TextBoxes but it just sticks with the 1st record...like this For i = 0 To iRow 'clearing bindings txtCode.DataBindings.Clear() 'txtCode.Text = iRow txtCode.Text = DsVModel1.Tables(0).Rows(iRow).Item(0) 'clearing bindings txtDescription.DataBindings.Clear() 'txtDescription.Text = iRow txtDescription.Text = DsVModel1.Tables(0).Rows(iRow).Item(1) iRow = DsVModel1.Tables("VMake").Rows.Count + 1 Next ok.. and last but not LEAST...Deleting a freekin' record ! ! H E L P ! ! JInsane
×
×
  • Create New...