GoDBTech
Home Solutions products Support Company
My Personal Page 
Forum 
    Forum Messages 
    Search Forum 
Downloads 
    GoDB Downloads 
    Beta Downloads 
Support 
    FAQ 
    Online Help 
    Samples 



FAQ

Keyword :            

1.Will GoDB Simulator for symbiyan support device keypad?
    Our GoDB Simulator dose not support as like device keyboard. This simulator keyboard was mapped with only numbers. Hence only numeric entries through device keypad are possible as against the normal text entry.
2.Has GODB been used to interface a Symbian handset with a bluetoooth device?
    Yes, you can able to connect bluetooth of external devices using Devopen function in GoDB.
    
3.How to receive a SMS in GoDB and pass the received message to another form?
    Get the message using global variable in the form notify and pass this message in a button click event using loadurl.Then get this message in the second form using print.
    Ex:
    sub Form_Notify
     if GetNotifySrc()=11 then '' (SYMBIAN Device)
     for i=1 to 10
     if getmessage(a,b$,c$,"")<>0 then
     print a;b$;c$
     m=a
     mtype$=b$
     ~msg$=c$
     update()
     else
     exitfor
     endif
     next
     update()
     endif
    endsub
    
    Sub Button1_Click
     loadurl("!message.frm")
    End Sub
    
    Then Print ~msg$ inthe second form.
    
4.How to create the SIS file in GoDB?
    Kindly use the below steps to create the SIS file using GODB.
    Step 1: Open a GoDB application
    Step 2: Choose the Platform as Symbian x.x in
     Release / Debug mode.
    Step 3: Clean and Rebuild the application and
     run the application.
    Step 4: Choose Symbian 7.0 from the
     Tools Menu ----> Generic Device ---->
     Build SIS and then enter 8 digit numeric
     Symbian UID.
    Step 5: ApplicationName.SIS file is created in
     the Release / Debug folder.
    Step 6: Transfer that ApplicationName.SIS from
     PC to Device via Bluetooth.
    
    Note: Generic device option for the general devices, the device model which are not added in
    the Gstudio.
    
    
5.How to use the scroll bar in mobile phone?
     Use 4-way navigation key in phone to view and to scroll the editable controls. Otherwise you can use Setscrlval function. This function sets the scroll bar positions. Useful when you want to alter the default scroll behavior of the form, when the focus changes.
6.How do i switch to fullscreen in GoDB application?
    In Setosvar() function *SwitchFullScreen attribute is used to set the fullscreen mode.
    
    Example:
    
     SetOsVar("*SwitchFullScreen", 1)