- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 1
10 Posted Topics
Go to your form properties and set Window State to Maximized. Also go to your project properties, select Application tab and Set Startup form to whichever form you want on launch.
I have a textbox to enter date into a MS Access database. I've tried entering 29-02-2000. But it is saved as 28-01-1900 in Access. I've tried entering 02-20-2000. But it is saved as 01-01-1900 in Access. My system shortdate format is dd-MM-yyyy. My system longdate format is dd MMMM,yyyy. My …
In my project i want to create a database through my application, how can create new database using sql statement.( i.e create database...)
I am currently working on a very simple project. But I am having problem with special characters. The one character which I find very annoying is ' . This single quote / aphostrophe is ruining my project while entering names like "James D'souza". Can anyone please help me in recording …
Hello all. I want to know whether it is possible to retrieve list of all tables found in a particular database titled 'Company'? It have got several tables with the names, Suppliers, Customers, etc etc. Just like Oracle, where you retrive all tables using select * from tab; . Is …
In my database table, 16 rows are inserted with null values for all columns. How can I delete these rows using SQL statement?
Hey guys, I'm working on a job. I need sql statement for the following query: "List all Employees Names with equal ages." (If possible, along with their year of birth, or date of birth.)
Private Sub TextBox2_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox2.KeyUp If e.KeyCode < 65 Or e.KeyCode > 90 Then MsgBox("No Numbers please") TextBox2.Clear() Exit Sub End If End Sub This code needs some make-up and decorations. Better first customize then use.
Please mark it as 'Solved' if your problem is solved. Best regards
The only line which is going to help you is "On Error Resume Next" .. since you have posted the code in whole, I am too lazy to imagine the whole form. So, just enter this code, after the line where you start 'Reading' the code. On Error Resume Next …
The End.