HI all
one sequence has many panels. when i select combo it displays all the fields but panel has more rows. i want to view that also. how to do that?
move next and previous commds are there but not working.
pls help me with coding
here goes my coding
thanks in advance
one sequence has many panels. when i select combo it displays all the fields but panel has more rows. i want to view that also. how to do that?
move next and previous commds are there but not working.
pls help me with coding
here goes my coding
Code:
Private Sub sequcombo_Click()
myconnection
myquery = sequcombo.Text
Call rLOAD
Do While storyboard!sequence <> myquery
storyboard.MoveNext
If storyboard!sequence = myquery Then
scenecombo.Text = storyboard!scenes 'sceneid depends on the table(sequence)
Call PanelCOUNT
panel_txt.Text = storyboard!Panel
action_txt.Text = storyboard!Action
dialogue_txt.Text = storyboard!dialogue
'Image1.Picture = LoadPicture(App.Path & "\images\" & storyboard("filename"))
Image1.Picture = LoadPicture(storyboard!Filename) 'this produce sometimes in frame else error whileloading
noofpanel.Text = storyboard.RecordCount 'panelcount not displaying exact count of particular sequence
End If
Loop
accdb = "SELECT DISTINCT sequence FROM sequence WHERE seqid = '" & myquery & "' "
'Load SQL query into a variable
Set storyboard = CON.Execute(accdb, adOpenStatic)
End Sub
Comment