Click here to Skip to main content
15,886,873 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Help with update Pin
Pete O'Hanlon13-Apr-09 21:55
mvePete O'Hanlon13-Apr-09 21:55 
GeneralRe: Help with update Pin
hendrikbez13-Apr-09 22:26
hendrikbez13-Apr-09 22:26 
GeneralRe: Help with update Pin
Eddy Vluggen13-Apr-09 23:11
professionalEddy Vluggen13-Apr-09 23:11 
GeneralRe: Help with update Pin
hendrikbez13-Apr-09 23:59
hendrikbez13-Apr-09 23:59 
GeneralRe: Help with update Pin
Eddy Vluggen14-Apr-09 1:13
professionalEddy Vluggen14-Apr-09 1:13 
GeneralRe: Help with update Pin
hendrikbez14-Apr-09 1:33
hendrikbez14-Apr-09 1:33 
GeneralRe: Help with update Pin
Eddy Vluggen14-Apr-09 6:16
professionalEddy Vluggen14-Apr-09 6:16 
GeneralRe: Help with update Pin
hendrikbez14-Apr-09 23:24
hendrikbez14-Apr-09 23:24 
With my Breakpoint.

1. Click on button "Edit info"
2. Say I must choose a leidraad to edit
3. Choose number 4 from listbox

On this code
Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged

        Dim SqlStr As String

        SqlStr = "Select * from tblokkies where leidraad = """ & ListBox1.Items(ListBox1.SelectedIndex) & """"

        FillTextBox(SqlStr)
    End Sub


On F8

SqlStr = "Select * from tblokkies where leidraad = """ & ListBox1.Items(ListBox1.SelectedIndex) & """"
SqlStr ========"Sqltr "Select *from tblokkies where leidraad = "'n uitroep""
ListBox1.SelectedIndex)=========="Listbox1.Seletectedindex 3

FillTextBox(SqlStr) ========"Filltextbox Nothing

It then fills my textboxes with this info

4. info in this from row in my table ====Luidraad ='n uitroep" A1=gits, A2=aag,A3=SA (My textboxes luidraad,A1,A2,A3,)
Want to put info now in A4=test" (textbox A4)
4. Click on Save button.

On this code after F8

Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click

      If SaveOrEdit = "Save" Then

          Dim add As DialogResult

          add = Cls_MessageBbox.Show("Is jy Seker jy will Leidraad" & vbCrLf & vbCrLf & TxtLuidraad.Text & vbCrLf & vbCrLf & "Byvoeg", "Byvoeg.", MessageBoxButtons.YesNo, MessageBoxIcon.Question)

          If add = Windows.Forms.DialogResult.Yes Then
              AddNew()
          Else
              ListBox1.Text = "Geen leidraad is Bygevoeg nie"

          End If

      ElseIf SaveOrEdit = "Edit" Then

          Edit()
      Else

          StatusLabel.Text = " Geen Leidraad is bygevoeg"

      End If

  End Sub

If SaveOrEdit = "Save" Then =====Saveoredit ""
Then jumbs to
ElseIf SaveOrEdit = "Edit" Then =======Saveordeit ""
StatusLabel.Text = " Geen Leidraad is bygevoeg"=========Statuslabel.text "Leidradd :'n Uiroep: geselkteer"
After F8
StatusLabel.Text = " Geen Leidraad is bygevoeg"=========Statuslabel.text "Geen Leidraad is bygevoeg"

This is where it stops.
GeneralRe: Help with update Pin
Eddy Vluggen15-Apr-09 0:11
professionalEddy Vluggen15-Apr-09 0:11 
QuestionConnecting C++.NET with WebService.. Pin
shaina223112-Apr-09 21:13
shaina223112-Apr-09 21:13 
QuestionDatabase connection Pin
EmZan11-Apr-09 2:21
EmZan11-Apr-09 2:21 
AnswerRe: Database connection Pin
0x3c011-Apr-09 2:41
0x3c011-Apr-09 2:41 
GeneralRe: Database connection Pin
EmZan11-Apr-09 3:01
EmZan11-Apr-09 3:01 
GeneralRe: Database connection Pin
0x3c011-Apr-09 3:17
0x3c011-Apr-09 3:17 
GeneralRe: Database connection Pin
EmZan11-Apr-09 6:15
EmZan11-Apr-09 6:15 
GeneralRe: Database connection Pin
Colin Angus Mackay11-Apr-09 6:25
Colin Angus Mackay11-Apr-09 6:25 
GeneralRe: Database connection Pin
EmZan12-Apr-09 20:58
EmZan12-Apr-09 20:58 
GeneralRe: Database connection Pin
Colin Angus Mackay12-Apr-09 22:57
Colin Angus Mackay12-Apr-09 22:57 
GeneralRe: Database connection Pin
EmZan12-Apr-09 23:16
EmZan12-Apr-09 23:16 
GeneralRe: Database connection Pin
Colin Angus Mackay12-Apr-09 23:20
Colin Angus Mackay12-Apr-09 23:20 
GeneralRe: Database connection Pin
EmZan12-Apr-09 23:36
EmZan12-Apr-09 23:36 
GeneralRe: Database connection Pin
Colin Angus Mackay12-Apr-09 23:52
Colin Angus Mackay12-Apr-09 23:52 
GeneralRe: Database connection Pin
EmZan13-Apr-09 0:05
EmZan13-Apr-09 0:05 
GeneralRe: Database connection Pin
Colin Angus Mackay13-Apr-09 0:14
Colin Angus Mackay13-Apr-09 0:14 
GeneralRe: Database connection Pin
EmZan13-Apr-09 2:11
EmZan13-Apr-09 2:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.