No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
Re: Hi Try the following code So that you can enter only the numbers not even any special characters. try it in the textbox keypress event Private Sub textbox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles tsum.KeyPress If Asc(e.KeyChar) = 8 Then Exit Sub End If If Asc(e.KeyChar) = 44 … | |
Re: Hi In vb.net you having a tool named Link Label. Use the link label to link a HTML Page to your form. Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal_ e As System.Windows.Forms.LinkLabelLinkClickedEventArgs)_ Handles LinkLabel1.LinkClicked System.Diagnostics.Process.Start("www.startvbdotnet.com") 'using the start method of system.diagnostics.process class 'process class gives access to local and remote … | |
Hi all Hi to move a label box from left to right and right to left with the help of timers. Also how to change the fore color of the label (RAndom colcors )with the help of timers Thanks in advance | |
Re: Hi You can view your SQl Table in vb.net with the help of DataSet and DataView. EXAMPLE: Dim cn3 As SqlCeConnection = Nothing cn3 = New SqlCeConnection("Data Source=\My Documents\Databasename.sdf; " + "Password=") Try If cn3.State = ConnectionState.Open Then cn3.Close() End If cn3.Open() Dim da3 As New SqlCeDataAdapter("SELECT * FROM TABLENAME", … | |
Hi to all I am working with Sql server ce for mobile application with vb.net. I want to crete a table before that i have to check weather the table exists or not. Also want to know about Object id in sql server and how to create it. Thanks and … | |
Hi all I am working with VB.NET 2003 for mobile application. Here there is no likn label option. But i want to open a html link in my VB.NET form. Like may be on button click event or in form load event. If any idea help me Thanks and Regards … | |
Hi all I am trying to run a VB.Net application in Pocket PC. I using Data set to get data from data base and using it in the application. When ever i running the application i got the following error. A Native exception occured. Exception code:0x80000002 Exception Address:0x016c8328 Ok to … | |
Hi all when i trying to convert a string to date and store in data base it shows type cast error code is as follows: dim s_date1 as string dim s_date as date s_date1 = s_mon & "/" & s_day & "/" & s_year s_date = CType(s_date1, Date) | |
Hi all i am working with VB.NET for mobile application. I want to open a HTML page in the internet explorer from my form and the size of the internet explorer should be limited to the Pocket Pc size. How can limit the size of internet explorer and how can … | |
[COLOR="Green"]HI Every body[/COLOR] I am working with VB.NET 2003 for smart device applications. Here there is no Link label tool. But i want to link a HTML file to my application. your suggestions will be very helpful for me. If you have any code samples just share it with me … | |
Hi all i working with HTML when my first web page is going to displayed it should be in the width and height according to my need . like a rectangle window or square or like a pop up window. How can i set the width and heght for the … | |
Re: Hi Why dont you try me.hide() instead of giving form1.Hide() or form1.Close() private sub button1.click() form2.show() me.hide() | |
Re: Hi Are you using DataTable to Display values in DataGrid? If so try with the following DataGridTableStyle property [CODE]Dim l_dgtsl As DataGridTableStyle Try l_dgtsl = New DataGridTableStyle l_dgtsl.MappingName = DataTableName Dim l_dglnkCol As DataGridTextBoxColumn l_dglnkCol = New DataGridTextBoxColumn l_dglnkCol.MappingName = "Name" 'Column name in the data table l_dglnkCol.HeaderText = "Name" … | |
Re: Hi Create a data base. Create a table for login with two columns one for user name and other for password. Create a dataset. Assign the data base table to the dataset. Get the user name from the user and check weather it matches with the user name in the … |
The End.