User Tools

Site Tools


sample_code:database_navigate

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revision Both sides next revision
sample_code:database_navigate [2015/04/17 00:44]
yep created
sample_code:database_navigate [2015/04/17 00:54]
yep
Line 1: Line 1:
-**Application: Droidscript databases**.+======Application: view Droidscript databases======
 I created this simple application to learn and play Databases and Dialogs I created this simple application to learn and play Databases and Dialogs
-  * Identify the sqlite databases in the default folder.+  * Identify the sqlite databases in the default folder used by Droidscript(var target)
   * List the tables   * List the tables
   * List Columns of tables   * List Columns of tables
Line 7: Line 7:
   * And could also delete a database   * And could also delete a database
  
- --- //[[bis40@free.fr|thierry DERICK]] 2015/04/17 00:40// 
  
- +On My local Version, I have also 3 icons in subdirectory Img<br> 
 +I leave text, the code for icons is kepts inside ... see the 3 tCol 
 + 
 +enjoy. Sorry few French comments. 
 + 
 +<code JavaScript AdminDB.js>
  
 // thierry . 2015 04 15 // thierry . 2015 04 15
Line 75: Line 79:
   remindColumn.SetTextColor( colorTitle );   remindColumn.SetTextColor( colorTitle );
          
- //tColGauche=app.CreateText("db files",0.33); + tColGauche=app.CreateText("db files",0.33); 
- tColGauche= app.CreateImage("Img/database.png",0.07); + //tColGauche= app.CreateImage("Img/database.png",0.07); 
   lh1.AddChild(tColGauche);   lh1.AddChild(tColGauche);
-  tColGauche.SetMargins( 0.1,0.003,0,0.004 ); +  //tColGauche.SetMargins( 0.1,0.003,0,0.004 ); 
   tColGauche.SetOnTouch( btnD_OnTouch );   tColGauche.SetOnTouch( btnD_OnTouch );
- //tColCentre=app.CreateText("tables",0.33); + 
- tColCentre=app.CreateImage("Img/table.png",0.07);+ tColCentre=app.CreateText("tables",0.33); 
 + //tColCentre=app.CreateImage("Img/table.png",0.07);
   lh1.AddChild(tColCentre);   lh1.AddChild(tColCentre);
-  tColCentre.SetMargins( 0.29,0.003,0.29,0.004 );+  //tColCentre.SetMargins( 0.29,0.003,0.29,0.004 );
   tColCentre.SetOnTouch( btnT_OnTouch );   tColCentre.SetOnTouch( btnT_OnTouch );
- //tColDroite=app.CreateText("column",0.33); + 
- tColDroite=app.CreateImage("Img/column.png",0.07);+ tColDroite=app.CreateText("column",0.33); 
 + //tColDroite=app.CreateImage("Img/column.png",0.07);
   lh1.AddChild(tColDroite);   lh1.AddChild(tColDroite);
-  tColDroite.SetMargins( 0,0.003,0.1,0.004 ); +  //tColDroite.SetMargins( 0,0.003,0.1,0.004 ); 
   tColDroite.SetOnTouch( btnF_OnTouch );   tColDroite.SetOnTouch( btnF_OnTouch );
-  //var colorTitle="#0033dd"; + 
-  //tColGauche.SetTextColor( colorTitle ); +  var colorTitle="#0033dd"; 
-  //tColCentre.SetTextColor( colorTitle ); +  tColGauche.SetTextColor( colorTitle ); 
-  //tColDroite.SetTextColor( colorTitle );+  tColCentre.SetTextColor( colorTitle ); 
 +  tColDroite.SetTextColor( colorTitle );
      
  // faire des listes  // faire des listes
Line 113: Line 120:
   //Create buttons width columns.   //Create buttons width columns.
  btnD = app.CreateButton( "Db", 0.3 ,-1,"alumn");  btnD = app.CreateButton( "Db", 0.3 ,-1,"alumn");
-   //lh3.AddChild( btnD );+   lh3.AddChild( btnD );
    btnD.SetOnTouch( btnD_OnTouch );    btnD.SetOnTouch( btnD_OnTouch );
  btnT = app.CreateButton( "Table", 0.3 ,-1,"alumn");  btnT = app.CreateButton( "Table", 0.3 ,-1,"alumn");
-   //lh3.AddChild( btnT );+   lh3.AddChild( btnT );
    btnT.SetOnTouch( btnT_OnTouch );    btnT.SetOnTouch( btnT_OnTouch );
  btnF = app.CreateButton( "Column", 0.3 ,-1,"alumn");  btnF = app.CreateButton( "Column", 0.3 ,-1,"alumn");
-   //lh3.AddChild( btnF );+   lh3.AddChild( btnF );
    btnF.SetOnTouch( btnF_OnTouch );    btnF.SetOnTouch( btnF_OnTouch );
    
Line 331: Line 338:
 function closeDialog02(){dlgContent.Hide()} function closeDialog02(){dlgContent.Hide()}
  
- }+</code> 
 + 
 +enjoyed? 
 + --- //[[bis40@free.fr|thierry DERICK]] 2015/04/17 00:40//
  
sample_code/database_navigate.txt · Last modified: 2015/04/23 20:59 (external edit)