Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. infacta

    How would I code Ctrl+A ?

    Reece, If you are refering to sending keyboard strokes or presses then you could try the following SendKeys.Send("^A") or SendKeys.Send("^+A") cheers, Infacta
  2. infacta

    Tab Controls Part II

    Mysticmart, I am not sure if this answers your question but have you tried the following Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim page As TabPage page = TabControl1.SelectedTab() If page.Name =...
  3. infacta

    INSERT INTO Access problem

    Hi All, I have figured out the problem. In the end it turned out that the database i was using has a different relational structure than i first thought. I was referencing incorrect ID's. As suspected, the 'INSERT INTO' command does indeed work. I thank you for all your efforts and comments...
  4. infacta

    INSERT INTO Access problem

    The Following is a section of code adding just 1 piece of information. This should work, and indeed does with a new clean database. However in my case, the table 'Project' is related back to another table via the 'Name' parameter. Dim MyConnectionName As String =...
  5. infacta

    INSERT INTO Access problem

    I see what you are saying. Maybe i didn't explain myself properly. The Syntax i already know. INSERT INTO is already defined in Access. What i am looking for is a VB.NET work around for the parent/child issue since i cannot find anyway way to perform this directly using JET or ADODB
  6. infacta

    INSERT INTO Access problem

    Christiaan, I believe this is a VB.NET forum. I am trying to access the database through VB.NET. I have seen some similiar database accessing questions in this forum so i hope and believe i am in the correct forum
  7. infacta

    INSERT INTO Access problem

    Hi All, I have a problem when trying to insert rows into a microsoft Access database. I know the problem is due to a parent/child relationship. The problem is i can't seem to find the correct syntax to access(insert into) the child. Will the INSERT INTO command still work?? If so, how do i...
  8. infacta

    USB installation on sloaris 8??

    To all, I am trying to install a Belkin USB 2.0 pci card on my Sun ultra 10 solaris 8. I can't get the pci device to be recognised. Has anyone achieved this before or can anyone point me in the right direction. Thanks in advance, Alan
  9. infacta

    unresolved external

    hi all i am relatively new to c++ and have run into a problem. I am running a program called cfitsio, used for viewing certain types of images, but when i try to link it i get a error saying "error: unresolved external '_ffopen' referenced from D:\CFITSIO\IMLIST.OBJ" I do not know what...
  10. infacta

    file compression

    hi TerraSamba, I got that from the site. thanks a million infacta
  11. infacta

    file compression

    Hi all, I have 120GB of images in .fit format (not that important). I know that when i compress these files (using winzip for example) i get a compression ratio of 63%). I must back up the 120GB but would also like to compress. Does anyone know how i might write a script to compress the images...
  12. infacta

    graph32.ocx

    hi, i am trying to use VB to run a camera. but when i run the code i get an error saying "graph32.ocx not registered correctly". i am using VB6 and i have dragged graph32.ocx to my machine. but VB will not register the file either. i am puzzled. can anyone help? thanx

Part and Inventory Search

Back
Top