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 SkipVought 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. Ctussey

    Help: Runtime error 3447: the Jet VBA file failed to initialize.

    Have you checked the following:<br> 1: Do all users have the drive to the Access file mapped to the same letter?<br> If its not on a network, check to see if the user installed the program to the default setting.<br> 2: Could the users all use the program earlier, and if not, you may...
  2. Ctussey

    Filling Listboxes using arrays

    This should work if I'm understanding what your looking for:<br> Dim MySet(4, 4) As String<br> Dim i As Integer<br> <br> MySet(0, 0) = &quot;1&quot;<br> MySet(1, 0) = &quot;First&quot;<br> MySet(0, 1) = &quot;2&quot;<br> MySet(1, 1) = &quot;Second&quot;<br> MySet(0, 2) = &quot;3&quot;<br>...
  3. Ctussey

    VB & SQL Server

    I found the problem, I had converted a Access Database to SQL Server and its datatypes were different from Access's so when I tried to update... it failed. Would have been easier to track down if VB had not of been giving an error that said that I was writing to a read only file.
  4. Ctussey

    VB & SQL Server

    I'm having a problem writing to SQL Server from my VB program. In one area, I can write to SQL Server on all but 3 areas, in the other area I can't write to the table at all. Does anyone have any ideas?
  5. Ctussey

    Using the Registry API

    <A HREF="http://msdn.microsoft.com/vbasic/downloads/alphasamples.asp" TARGET="_new">http://msdn.microsoft.com/vbasic/downloads/alphasamples.asp</A><br> <br> It also includes the documentation for its properties. Works well for me, I can create reg. calls that will write or read <br> from the...
  6. Ctussey

    Using the Registry API

    Try downloading the &quot;regobj.dll&quot; from the microsoft web site, it may not be as precise but works.
  7. Ctussey

    ADO Refresh

    I'm suffering a terrible slow down when I use the refresh command with my ADO control. <br> Any ideas on how to get around this or what may be causing it? I happens when I'm connected to a NT box with SQL Server and then through the Novell Network going to Access.<br>
  8. Ctussey

    Sizing a form to fit screen size

    Try:<br> Form1.WindowState = vbMaximized<br>
  9. Ctussey

    CSV file to SQL SERVER

    The method that I was going to use, is to import the CSV to an Access table (with commas and such left in). Then use VB to parse out the information (using the instr) to break at the commas, and populate the text boxes. Then... call out to SQL Srv, and enter the data to it. In theory its sound...
  10. Ctussey

    CSV file to SQL SERVER

    I need to convert a CSV File (beyond the normal problem of the comas, each two rows need to become 1 row in SQL Server (6.5)). Any help would be great.
  11. Ctussey

    How do you use DDE Links across a network?

    Thanks Chip<br> <br> I'll give that a try. And your right, I haven't found any good information on using the NetDDE.<br> <br>
  12. Ctussey

    Access/VB question

    Can you import a form from Access and place it into VB? If yes, then how?
  13. Ctussey

    How do you use DDE Links across a network?

    I'm trying to write two programs ,one that does the updates to the database, and the other displays messages to the user in the other program that calls on the same database, and would prefer to use a DDE will display the information to the other program. I can do it using the programs on the...
  14. Ctussey

    Excluding in groupwise's dictionary

    How can I exclude email address such as *@* or a string that starts the same like KD*?
  15. Ctussey

    Excluding in groupwise's dictionary

    How can I exclude email address such as *@* or a string that starts the same like KD*?

Part and Inventory Search

Back
Top