- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
10 Posted Topics
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. There, just check .NET Frameworrk 2.0. If this fails, just google .NET framework, and you should find some …
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 do that with one SQL query? Thanks in advance.
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 it there, instead of editing each page. Thanks in advance.
To make the result show in textbox 4, have textbox4.text = (put the result here). To prevent any alphabethic characters, use the isnumeric function.[CODE]if not isnumeric(textbox1.text) then [INDENT]msgbox("Invalid") exit sub[/INDENT] end if[/CODE] If you have any more questions, don't hesitate to ask!
How would you disable the ctrl, alt, delete, windows, and tab keys? Thanks
To add a row in the database you need to the following things: [CODE]imports system.data.oledb Private mycomm As New OleDb.OleDbCommand Private myconn As New OleDb.OleDbConnection 'The following code goes under the button procedure. Dim strquery as string myconn.connectionstring = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=(location of database);User Id=admin;Password=;" strquery = "INSERT INTO (put table …
All you have to do to open any file is [ICODE]Process.start("C:\example\example.doc")[/ICODE]
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 properties, just click on the menu item and go to properties.
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 chosen, the program picks a random one and executes it. …
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 connect with the database and retrieve the information. You can also easily verify the information. To let the …
The End.
nowitzk