Search results for query: *

  1. C

    Question Wildcards

    I want a timer constantly checking what Url the webge is constantly on, then if the if statement defects the user is on any other website other than goodgle for instance, then take a action. But I want to allow every page under the same domain as Google, so I wanted to have something like...
  2. 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...
  3. 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?
  4. 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.
  5. 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()...
  6. C

    Disable Windows Shortcuts

    OK, i've found this if it helps Private Sub Form_Unload(ByVal Cancel As Integer) hook.StopHook(WH_KEYBOARD_LL) hook = Nothing apiLink = Nothing End Sub Private Sub hook_KeyDown(ByVal VKey As Long, ByVal scanCode _ As Long, ByVal ExtendedKey As Boolean, ByVal...
  7. C

    error while signing: Key not valid ?

    Anyone? This is really bugging me...
  8. C

    Disable Windows Shortcuts

    I don't understand any of that sorry, I am rarther new to this programing.
  9. 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...
  10. 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...
  11. C

    Create a database

    Well I need it to be available on the internet, so users can change the information within the program and it to be sent to the database and saved. This will work the same on the internet, users will be able to logon and change the information. This will then be automacticly updated for all...
  12. C

    Make the contents of a form resize with the form?

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

    Disable Windows Shortcuts

    How would I be able to do this "hooking" thing?
  14. C

    Disable Windows Shortcuts

    By using the Windows hooking APIs would I be able to stop the the function being called from the user pressing the key's? Remember the point of this to stop all action on the ctrl + alt + del key's.
  15. 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....
  16. C

    Disable Windows Shortcuts

    Ok... I have no idea what that lot means, you may have to break it down for me.... And is it possible to disable that window I was on about? I also found this vista : disable ctrl + alt + del I talks about filtering out the ctrl alt del keys? By the way I won't be able to reply for 7 days....
  17. C

    Disable Windows Shortcuts

    Riiiight ok..... How do I do that in code? Because I have no idea?? And I also think that disabling task manager won't completly solve this, I need to disable this window As you maybe able to see there is a shutdown button there. I think it would be best if I disabled task manager and this...
  18. 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"...
  19. 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:
  20. C

    Question Create a simple trial feature for your program

    I came up with something like that, but I got -number.... Does anyone know the correct way to take away a date from a date?
Back
Top