![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Questions & Help Needed Post any question regarding Basic4ppc. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
this ![]() 1) I understand that this software can be used to create a custom gui for a barcode scanner using windows mobile 5.0 correct? 2) How do import information from the barcode scanner into a flat file? Can this program help me do that? Thanks in advance for any assistance you can provide. -Gioia |
|
||||
|
The functionality of the Barcode library can be achieved with the Door library.
I've attached a simple program which shows how to add the TextChanged event to a textbox. You should add TextBox1.Focus at the beginning of your program. Now whenever you scan a barcode the value will appear in the textbox. You can take this value and write it to a file with FileWrite.
__________________
Basic4ppc reference list |
|
||||
|
The relevant code which should be placed in sub TextBox1TextChangedEvent_NewEvent is:
Code:
If StrLength(TextBox1.Text) < 2 Then 'Ignore keyboard.
TextBox1.Text = ""
Return
End If
Form1.Text = TextBox1.Text
TextBox1.Text = ""
__________________
Basic4ppc reference list |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| SQLite newbie question | JamesC | Chit Chat | 1 | 08-01-2008 08:26 AM |
| Newbie Question | Stevenator65 | Questions & Help Needed | 9 | 05-30-2008 08:53 PM |
| Newbie question - arrays and tables | BjornF | Questions & Help Needed | 3 | 05-15-2008 09:29 AM |
| Another newbie question: How to refere to the active form? | yildi | Questions & Help Needed | 2 | 11-17-2007 07:55 PM |
| Newbie - question about loadXML | yildi | Questions & Help Needed | 6 | 11-12-2007 11:43 PM |