Search results for query: *

  • Users: Chris11
  • Content: Threads
  • Order by date
  1. C

    Question Wildcards

    Hey I need to make a simple if statement. If WebBrowser.Location = "http://www.google.com" Then Else MsgBox("Message") End If And there is something with statement as well... Not too sure what. But I'd like the if statement to look for every website not just google, so...
  2. C

    Use Group Policy

    I want to disable the task manager and the ctrl-alt-del whilst the user does something and then re-enable it when they have finshed. what would i need to write in order to do this?
  3. C

    Connect to an Access Database over the internet?

    I created a database, uploaded it to the internet. I know want to connect to the database. I don't want VB to 'download' it, I want it to view it, so when it comes to updating the database the one on the server is updated.
  4. C

    Simple Database Problem: Adding new data row...

    Hey, i'm having some problems with this bit of code, I want to add a new row of information in to this database. The code is posted below. If inc <> -1 Then Dim cb As New OleDb.OleDbCommandBuilder(da) Dim dsNewRow As DataRow dsNewRow = ds.Tables("AddressBook").NewRow()...
  5. C

    error while signing: Key not valid ?

    Does anyone know what this error means? And how to fix it? "Error 2 An error occurred while signing: Key not valid for use in specified state." I found this solution on the internet but I have no idea how to do it... "Delete all data sources in the Server Explorer and add them again. Run the...
  6. C

    Create a progress bar for a webbrowser?

    I want to make a progress bar for the loading of a webpage? Anyone know the code for that? I know now...
  7. C

    Make the contents of a form resize with the form?

    How can I Make the contents of a form resize with the form?
  8. C

    Add User Account Control

    How can I use vista's feature User Account Control (UAC) in my program? I won't be able to reply for 7 days....
  9. C

    Disable Windows Shortcuts

    Is it possible to disable windows shortcuts in vb.net, if so how? I need to be able to disable: start key, ctrl-alt-del, ctrl-shift-esc. I have created a lock screen program simliar to the defult windows one. The only problem is that you can use ctrl-alt-del to get to the "account menu"...
  10. C

    Create a database

    I want to make a database for my program to store information about users. I nneed to be able to add and change the information. But I have idea how to do this, and I have never created a database before... :confused:
  11. C

    Question Can you create settings in code view?

    Can you create new settings from the code view? Like if you wanted to add a new user, you could add a new settings for that user.
  12. C

    Question Create a simple trial feature for your program

    I want to be able to create a simple trail feature for my program. Normally i base i on how many times the user has opened my the program. This time i want to be be based on what day the user starts using it, and then add on the trail period? Could anyone help me by starting my off?
  13. C

    dectect mouse move

    I need to be able to find out if the mouse has been moved, if the mouse hasn't been moved in a minute then use Cursor.Hide() to hide the mouse, if the mouse is moving then I want the mouse to be shown. To get the Position of the mouse use this: Cursor.Position.X Cursor.Position.Y I don't...
Back
Top