Forum: MySQL Jul 28th, 2008 |
| Replies: 2 Views: 2,507 Hi,
I just started using phpMyAdmin. I need to create a table with all the dates of the year. The date will be the primary key and for each date there will be five time fields. Is there any way to... |
Forum: HTML and CSS Jul 20th, 2008 |
| Replies: 1 Views: 458 Hi.
I am currently developing a website. I have a side navigation menu that is on every page which I frequently edit. Is there anyway to put the navigation menu code into an external file and edit... |
Forum: VB.NET Feb 2nd, 2008 |
| Replies: 4 Views: 3,474 To include the .NET framework in your setup, first go to the solution explorer, right-click on your project's name, and choose properties. From there, go to the publish tab and click prerequisites.... |
Forum: VB.NET Jan 31st, 2008 |
| Replies: 22 Views: 4,602 To make the result show in textbox 4, have textbox4.text = (put the result here). To prevent any alphabethic characters, use the isnumeric function.if not isnumeric(textbox1.text) then... |
Forum: VB.NET Jan 29th, 2008 |
| Replies: 6 Views: 1,193 No problem, but I am pretty sure that it will work with the oledbdataadpater and you can also use the create index function, and any SQL function for that matter. |
Forum: VB.NET Jan 28th, 2008 |
| Replies: 10 Views: 2,902 All you have to do to open any file is Process.start("C:\example\example.doc") |
Forum: VB.NET Jan 28th, 2008 |
| Replies: 3 Views: 3,955 You can have the program retrieve the user type (admin, etc.) and have an 'If...then' statement that makes the menu items disappear (visible=false) or disable it (enabled=false). To access these... |
Forum: VB.NET Jan 28th, 2008 |
| Replies: 6 Views: 1,193 Sorry, I sometimes get a little ahead of myself. Let me explain the code. The 'imports' statement at the top just retrieves the namespace needed for the code to work. The two following variable... |
Forum: VB.NET Jan 28th, 2008 |
| Replies: 4 Views: 947 No problem, and thanks once again! |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 1 Views: 3,045 You should have a table containing the usernames and corressponding passwords and also with an user type so you can specify the administrators. You can then use OLEDB connections and commands to... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 6 Views: 1,193 To add a row in the database you need to the following things:
imports system.data.oledb
Private mycomm As New OleDb.OleDbCommand
Private myconn As New OleDb.OleDbConnection
'The following code... |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 4 Views: 947 |
Forum: VB.NET Jan 27th, 2008 |
| Replies: 2 Views: 4,878 How would you disable the ctrl, alt, delete, windows, and tab keys?
Thanks |
Forum: VB.NET Jan 26th, 2008 |
| Replies: 4 Views: 947 Hi,
I have a program that lets the user choose from four options. The user can choose more than one and can choose all of them if he/she wants to, but must choose at least one. Out of the choices... |