Download the free trial version
Basic4android Video
Features
Tutorials and manuals
Showcase
Screenshots

Go Back   Android Development Forum - Basic4android > Basic4ppc (Windows Mobile) > Share Your Creations
Documentation Wiki Register Members List B4P Search Today's Posts Mark Forums Read

Share Your Creations Show your developed application to Basic4ppc community. Please include source code if possible.

Great DB With Table Full size windows APP

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-02-2007, 05:55 AM
Junior Member
 
Join Date: May 2007
Posts: 36
Default Great DB With Table Full size windows APP

Great DB Full application
Heres a really nice DB application i made with the table control, no DLL needed. Great for you DB creators that need a very nice DB app with just a exe file, for regular windows !!!!!!!
Attached Files
File Type: sbp WNDBPro20.sbp (18.3 KB, 448 views)
Reply With Quote
  #2 (permalink)  
Old 06-15-2009, 10:30 AM
Junior Member
 
Join Date: Nov 2008
Posts: 16
Default

I guess the data table is missing. Could you supply a small sample? Is there
something else wrong? I am getting an error message re: textFamily.
Attached Images
File Type: jpg WinProDBErrorMsg.jpg (25.3 KB, 71 views)
Reply With Quote
  #3 (permalink)  
Old 06-15-2009, 11:05 AM
agraham's Avatar
Basic4ppc Expert
 
Join Date: Jul 2007
Location: Cheshire, UK
Posts: 6,072
Awards Showcase
Innovator medal Beta Tester Forum Contributer 
Total Awards: 3
Default

Uncheck Tools -> Check for unassigned/unused variables
__________________
Sorry, but I don't answer questions by PM or email.
Please post your queries in the forum.
Reply With Quote
  #4 (permalink)  
Old 06-19-2009, 04:51 AM
Junior Member
 
Join Date: May 2007
Posts: 36
Default Corrected file

Quote:
Originally Posted by scott93727 View Post
Great DB Full application
Heres a really nice DB application i made with the table control, no DLL needed. Great for you DB creators that need a very nice DB app with just a exe file, for regular windows !!!!!!!
See corrected file.
Attached Files
File Type: sbp WNDBPro20.sbp (18.1 KB, 163 views)
Reply With Quote
  #5 (permalink)  
Old 07-21-2009, 10:07 PM
Junior Member
 
Join Date: May 2007
Posts: 36
Default DB Error

Quote:
Originally Posted by johnpc View Post
I guess the data table is missing. Could you supply a small sample? Is there
something else wrong? I am getting an error message re: textFamily.
See corected file below
Reply With Quote
  #6 (permalink)  
Old 08-26-2009, 01:08 AM
Newbie
 
Join Date: Aug 2009
Posts: 3
Default

great
Reply With Quote
  #7 (permalink)  
Old 08-26-2009, 04:48 AM
derez's Avatar
Basic4ppc Expert
 
Join Date: May 2007
Posts: 978
Awards Showcase
Beta Tester Competition Winner 
Total Awards: 2
Default

Very nice

The use of goto should be avoided as much as possible (it is justified in the case of error recovery).
See the modified subs below:
Code:
Sub cmbType_SelectionChanged (Index, Value)
Select index
    
Case 0
        label6.Text=
"Name"
        label7.Text=
"Address"
        label8.Text=
"City State"
        label9.Text=
"Phone"
        label10.Text=
"Notes"
        label13.Text=
"Email"
        label14.Text=
"WWW"
    
Case 1
        label6.Text=
"Business"
        label7.Text=
"Address"
        label8.Text=
"City State"
        label9.Text=
"hours"
        label10.Text=
"Stock"
        label13.Text=
"Shipper"
        label14.Text=
"WWW"
    
'table1.AddCol(cString,"Business",175)
    'table1.AddCol(cString,"Address",175)
    'table1.AddCol(cstring,"City State") 'Account Number must be unique.
    'table1.AddCol(cString,"Email",175)
    'table1.AddCol(cString,"Remarks",175)
    'table1.AddCol(cString,"WWW",175)
    'table1.AddCol(cString,"Work",175)
    'table1.AddCol(cstring,"Type",175)
    Case 2
        label6.Text=
"Retailer"
        label7.Text=
"Address"
        label8.Text=
"City State"
        label9.Text=
"WWW"
        label10.Text=
"Sale Items"
        label13.Text=
"Hours"
        label14.Text=
"Stock"
    
Case 3
        label6.Text=
"Shipper"
        label7.Text=
"Address"
        label8.Text=
"City State"
        label9.Text=
"Phone"
        label10.Text=
"Frieght"
        label13.Text=
"Type"
        label14.Text=
"Hours"
    
Case 4
        label6.Text=
"URL"
        label7.Text=
"Website"
        label8.Text=
"Type"
        label9.Text=
"Email"
        label10.Text=
"Remarks"
        label13.Text=
"Service"
        label14.Text=
"Active"
    
Case 5
        label6.Text=
"Name"
        label7.Text=
"Email"
        label8.Text=
"Phone"
        label9.Text=
"Data"
        label10.Text=
"Remarks"
        label13.Text=
"Sex"
        label14.Text=
"WWW"
    
Case 6
        label6.Text=
"Order"
        label7.Text=
"Amount"
        label8.Text=
"Price"
        label9.Text=
"Shipped"
        label10.Text=
"Stock"
        label13.Text=
"Company"
        label14.Text=
"Shipper"
    
Case 7
        label6.Text=
"Stock"
        label7.Text=
"Item"
        label8.Text=
"Amount"
        label9.Text=
"Cost"
        label10.Text=
"Remarks"
        label13.Text=
"Discount"
        label14.Text=
"Suplier"
    
Case 8
        label6.Text=
"Name"
        label7.Text=
"Bank"
        label8.Text=
"Amount"
        label9.Text=
"Payment"
        label10.Text=
"Balance"
        label13.Text=
"Due"
        label14.Text=
"Check"
End Select
End Sub
and this:
Code:
Sub Button17_Click 'rev
Cmbtype.SelectedIndex = typ - 1
typ = typ + 
1
End Sub
__________________
David Erez
Ramat Hasharon, Israel
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
I need help with desktop full screen ! superbabicka Questions (Windows Mobile) 7 11-09-2009 02:16 PM
Full Screen Opt Compilation? cdeane Questions (Windows Mobile) 6 05-02-2008 10:26 AM
Full Screen Inc ToolBar RandomCoder Bug Reports 2 01-26-2008 02:31 PM
screen size to form size relation Cableguy Basic4ppc Wishlist 2 08-14-2007 09:40 PM
Firefox is a great browser Erel Chit Chat 4 05-19-2007 09:41 AM


All times are GMT. The time now is 12:19 PM.


Powered by vBulletin® Version 3.6.12
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0