User Profile

Collapse

Profile Sidebar

Collapse
indhu
indhu
Last Activity: May 7 '07, 09:56 AM
Joined: Oct 3 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • indhu
    started a topic convert C++ game to Flash game
    in C

    convert C++ game to Flash game

    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
    See more | Go to post

  • indhu
    replied to image in datareport
    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?...
    See more | Go to post

    Leave a comment:


  • indhu
    started a topic image in datareport

    image in datareport

    Hi guys

    i ve image path in MS access. how to bring tht to datareport.?

    any idea of this.
    thanks
    See more | Go to post

  • indhu
    replied to move next commands
    Use relationship for those 3 tables and try using wizard to create ur form.....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    yeah, thats what i am trying to do, thanks.

    type mismatch error
    Code:
    scenecombo.ItemData(scenecombo.NewIndex) = rstRecordSet("sceneid")
    ...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    if i give movefirst, it shows only first recset. not the consecutive recset....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    Actualliy, am telling the recordset to move to next rec. but its starting from 2nd rec. i tried movefirst, it showing only first recordset....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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
    ...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    yeah am sure. it has all the data.

    anyway it calls the sceneload procedure. the data has to come na.
    nothing is coming....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    nothing is loaded....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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 & "'",
    ...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    Code:
    Set storyboard = Nothing
    storyboard.CursorLocation = adUseClient
    storyboard.Open "select * from xyz table, Connection, adOpenDynamic, adLockReadOnly
    runtime error 91
    error in cursor location. object variable or with block not set...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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
    ...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    hey its working, i didn't set recordset to execute. thaty its given that error. but y my record count is showing -1...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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....
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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
    ...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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...
    See more | Go to post

    Leave a comment:


  • indhu
    replied to move next commands
    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,...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...