355 Posted Topics
Re: [QUOTE] i have managed to connect vb.net to Microsoft database access but now i am struggling with the code to authentication log in. when i log in to the form i want it to display the user name in the label in vb.net form.[/QUOTE] Hi, After the authentication log in … | |
Re: Hi, You can try something like this: [CODE]Dim myReport as new ReportDocument() myReport.Load("C:\myReport.rpt") 'Pass database and Parameter info here myReport.PrinttoPrinter(1,true,0,0) 'This prints one copy of all pages to the default printer, and collates them[/CODE] | |
Re: Hi, I've tryed the code and works like it should, that means if you start then the counting is running until the time 60 sec. is passed and the messagebox will pop up. If you stop, the labels are showing the time left. [CODE]Public Class Form1 Private CountDownTime As Date … | |
Hi All to members, My name is Luc and I'm very interested in VB. Net. I think that in this forum, I'll see a lot of unsolved projects to try out and learn from them. To become a better programmer. Thanks in advance for all the help. Greets, Luc001 | |
Re: Hi, You can try this in a button event: [CODE=vb]For Each ctrl As Control In GroupBox1.Controls CType(ctrl, RadioButton).Checked = False Next[/CODE] |
The End.