Hi all,
I have doubt regarding this. How to Convert c++ game to Flash game. what r the advantages and disadvantages. can anyone help me in this.
thanks in advance
User Profile
Collapse
-
convert C++ game to Flash game
-
there is not property like that
ive declared this in cmd button, it shows current image of the form. i didnt get the image dynamically
With DataReport1.Sec tions(3)
Dim i As Integer
Set .Controls("imag e1").Picture = Form4.Image1(i) .Picture
Set .Controls("imag e2").Picture = Form4.Image1(1) .Picture
End With
anyway of change the image dynamically?... -
image in datareport
Hi guys
i ve image path in MS access. how to bring tht to datareport.?
any idea of this.
thanks -
Use relationship for those 3 tables and try using wizard to create ur form.....Leave a comment:
-
yeah, thats what i am trying to do, thanks.
type mismatch error
Code:scenecombo.ItemData(scenecombo.NewIndex) = rstRecordSet("sceneid")
Leave a comment:
-
i want to select sceneid from combo. then other field has to populate.
sceneid frm scenetbl
otherfields frm paneltbl. sceneid is fk in paneltbl
thats it. sorry guys....Leave a comment:
-
if i give movefirst, it shows only first recset. not the consecutive recset....Leave a comment:
-
Actualliy, am telling the recordset to move to next rec. but its starting from 2nd rec. i tried movefirst, it showing only first recordset....Leave a comment:
-
same field name.
first let me rectify this. y its going to second record. and if i click nextitem from combo not opening. if i click nextcommand button it moves. so it is happening like this.
Code:Private Sub scenecombo_Click() myquery = scenecombo.Text Call sceneLOAD If Not storyboard.EOF Then storyboard.MoveNext If storyboard!sceneid = myquery Then Call
Leave a comment:
-
yeah am sure. it has all the data.
anyway it calls the sceneload procedure. the data has to come na.
nothing is coming....Leave a comment:
-
the form is not loaded with no data. even combo box.
i tried by calling a procedure also
Call tblLOAD
projecttxt.Text = storyboard!proj ect ' error as item cannot be found in collection
i ve declared the query in tblload but still it showing error here....Leave a comment:
-
-
hari, if create a new instance of recordset only it showing me correct recordset.
Code:Private Sub Form_Load() myconnection Set storyboard = Nothing Set storyboard = New ADODB.Recordset storyboard.CursorLocation = adUseClient storyboard.Open "SELECT sequence, scenes, filename, panel, action, dialogue FROM panel WHERE scenes = '" & scenecombo.Text & "'",
Leave a comment:
-
Code:Set storyboard = Nothing storyboard.CursorLocation = adUseClient storyboard.Open "select * from xyz table, Connection, adOpenDynamic, adLockReadOnly
error in cursor location. object variable or with block not set...Leave a comment:
-
Code:Private Sub Form_Load() Set CON = New ADODB.Connection CON.CursorLocation = adUseClient myconnection Call tblLOAD projecttxt.Text = storyboard!project 'episode.Text = storyboard!episode storyboard.MoveFirst Call sceneLOAD Do While Not storyboard.EOF scenecombo.AddItem storyboard!sceneid 'List all the sceneID items into the ComboBox
Leave a comment:
-
hey its working, i didn't set recordset to execute. thaty its given that error. but y my record count is showing -1...Leave a comment:
-
what i ve to do for this.
i ve commented recordset line, 2 line declared as accdb= that query.
but now its giving error in sc1comboclick_e vent
runtime error item cannot be found in collection or ordinal name....Leave a comment:
-
Code:Sub rLOAD() Set storyboard = New ADODB.Recordset ' Open Recordset If CON.State = 1 Then MsgBox "Connection is opened" Else MsgBox "Connection is not opened" End If storyboard.Open "SELECT seq, sc1, images, pan, act, dial FROM xyzTBL WHERE sc1 = '" & sc1combo.Text & "'", CON, adOpenStatic, adLockReadOnly
Leave a comment:
-
Sub Fill()
secombo = storyboard!seq1
sc1combo = storyboard!sc1
pan_txt.Text = storyboard!Pan
Image1.Picture = LoadPicture(App .Path & "\images\" & storyboard("fil ename"))
act_txt.Text = storyboard!Act
dial_txt.Text = storyboard!dial
End Sub...Leave a comment:
-
accdb = "SELECT sequence, scenes, filename, panel, action, dialogue FROM panel WHERE scenes = '" & scenecombo.Text & "'"
?accdb
i tried it in immediate window not returning anything
tbl has 3 rec for tht id Hari,...Leave a comment:
No activity results to display
Show More
Leave a comment: