Recent content by Russ9517

  1. R

    Visual Basic 2008 error - reading from datagrid

    Hi I got a strange error with visual basic 2008, I'm writing a asp web app and i have a search page with a datagrid linking to a stored procedure on a sql server. There is 3 columns on the page ID, Name and Select command button. I need it to add the ID into the session when you click on select...
  2. R

    save a website using a username and password

    I need to save a xml page from a "website "http://www.currencysource.com/rss/GBP.xml" The pc that needs to access it requires a username and password to be entered but this will be ran automatically so the program would need to specify the username and password as well as the proxy. Does...
  3. R

    Mysql database link to access problem

    it's on my pc and i'm using access 2003
  4. R

    Mysql database link to access problem

    mysql 5.0.51 odbc 3.51.19 i only set thte server name, user, password, database name and i used the default prt 3306 could security on the network cause this?
  5. R

    Mysql database link to access problem

    i'll using the same login and password and i've tried at simple table but it's the same. The user i'm using has full permissions and i can add and edit field fine in mysql directly but not in access.
  6. R

    Mysql database link to access problem

    When i open one of the tables i can't change any information or add new records
  7. R

    Mysql database link to access problem

    I've created a database in mysql and linked the tables to microsoft access via odbc connection. I've setup a user in mysql with full permissions but i can't add/edit/delete any records in access:confused:
  8. R

    Access backend

    it will have around 50 in at a time but running a frontend database from the users harddrive but linking to a database on a network
  9. R

    Access backend

    I'm writing a microsoft access database which will be used by 70+ users but access can't handle that many users well. Is there another program i can use to store the table which will work better? :confused:
  10. R

    VBA Check for reference

    I need some code to check is a reference has been installed on the pc Is this possible?:confused:
  11. R

    Get IP address

    Hi I need a function to return the ip address of the local pc can anyone help? Thanks
  12. R

    Help With Tree View

    I've got this code to generate a tree view list box from a recordset but i need to know how to: On double click chnage to value of a child node and also to know which valve is selected from the list. Code: lisPipes.Nodes.Add , , "PON" & rsPipes!Pon, rsPipes!Pon lisPipes.Nodes.Add...
  13. R

    Help with getting running applications

    I need to be able to get a list of the alt+tab application and be able to swith to one. Any ideas?
  14. R

    Help with file search

    I'm writing some code to read a list of filenames from a text file and searching for the filename in a folder and sub folders. The following code works but it only search 1 folder how can i get it to search any subfolders. thanks Private Sub cmdCheck_Click() Dim strFilename As String...
  15. R

    Error Handling

    I've wrote a error handling function but is there a way of getting an access database to call this function without using on error in every procedure. Thanks
Back
Top Bottom