Click here to Skip to main content
16,005,236 members
Home / Discussions / C#
   

C#

 
GeneralRe: Bitmap Rendering speed Pin
Daniel Turini8-Dec-04 5:32
Daniel Turini8-Dec-04 5:32 
GeneralRe: Bitmap Rendering speed Pin
Tristan Rhodes8-Dec-04 13:04
Tristan Rhodes8-Dec-04 13:04 
GeneralRe: Bitmap Rendering speed Pin
Tristan Rhodes9-Dec-04 4:06
Tristan Rhodes9-Dec-04 4:06 
GeneralRe: Bitmap Rendering speed Pin
Daniel Turini9-Dec-04 4:26
Daniel Turini9-Dec-04 4:26 
GeneralRe: Bitmap Rendering speed Pin
Tristan Rhodes9-Dec-04 5:21
Tristan Rhodes9-Dec-04 5:21 
GeneralRe: Bitmap Rendering speed Pin
Daniel Turini9-Dec-04 7:18
Daniel Turini9-Dec-04 7:18 
GeneralTextChanged vs Click Pin
realmontanakid8-Dec-04 2:23
realmontanakid8-Dec-04 2:23 
GeneralRe: TextChanged vs Click Pin
Stefan Troschuetz8-Dec-04 2:40
Stefan Troschuetz8-Dec-04 2:40 
Don't know why the TextChanged event handler didn't work (maybe it's not submitted correctly.?).
Anyway, as you want to automatically show the second form after reading with the Barcode scanner in my opinion the textbox is pretty useless, because you write a value to it and in the TextChanged event show your form and clear the textbox. So why not showing the form directly after reading from the scanner.
Besides, you should dispose your form after using it, so the resources get cleaned up. Or use the using statement as shown by the following code snippet:
using(frmShow x = new frmShow(id))
{
x.Show();
}








www.troschuetz.de
GeneralRe: TextChanged vs Click Pin
realmontanakid8-Dec-04 4:14
realmontanakid8-Dec-04 4:14 
GeneralRe: TextChanged vs Click Pin
Stefan Troschuetz8-Dec-04 4:31
Stefan Troschuetz8-Dec-04 4:31 
GeneralRe: TextChanged vs Click Pin
realmontanakid8-Dec-04 4:59
realmontanakid8-Dec-04 4:59 
GeneralRe: TextChanged vs Click Pin
Dave Kreskowiak8-Dec-04 4:50
mveDave Kreskowiak8-Dec-04 4:50 
GeneralRe: TextChanged vs Click Pin
realmontanakid8-Dec-04 5:19
realmontanakid8-Dec-04 5:19 
GeneralRe: TextChanged vs Click Pin
Stefan Troschuetz9-Dec-04 21:59
Stefan Troschuetz9-Dec-04 21:59 
QuestionHow to create an array of textboxes with the disigner ? Pin
rgcolli8-Dec-04 2:22
rgcolli8-Dec-04 2:22 
GeneralBig DB problem Pin
Zamolxes8-Dec-04 1:51
Zamolxes8-Dec-04 1:51 
GeneralRe: Big DB problem Pin
turbochimp8-Dec-04 4:15
turbochimp8-Dec-04 4:15 
GeneralA DataGrid Problem Pin
A.Mohsen8-Dec-04 0:03
A.Mohsen8-Dec-04 0:03 
GeneralDrag and drop Pin
blazeski7-Dec-04 23:56
blazeski7-Dec-04 23:56 
GeneralRe: Drag and drop Pin
Heath Stewart8-Dec-04 5:43
protectorHeath Stewart8-Dec-04 5:43 
Generalbitmap in c# Pin
arus20047-Dec-04 23:53
arus20047-Dec-04 23:53 
GeneralRe: bitmap in c# Pin
turbochimp8-Dec-04 4:59
turbochimp8-Dec-04 4:59 
GeneralRe: bitmap in c# Pin
arus20049-Dec-04 19:57
arus20049-Dec-04 19:57 
GeneralLinking Database to Dataset Pin
pjholliday7-Dec-04 22:54
pjholliday7-Dec-04 22:54 
GeneralRe: Linking Database to Dataset Pin
exhaulted7-Dec-04 23:11
exhaulted7-Dec-04 23:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.