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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by KCI

  1. KCI

    create, write and save a text file

    Use Write # if you are creating a csv file. ;)
  2. KCI

    Break Key

    From the run menu (with VB) use break or stop. Then remove or comment out the msgbox. ;)
  3. KCI

    ADO Binding

    All, I’m trying to work out a bug and I was hoping someone might have some insight. I created an app using ADO BINDING. Seems straight forward, I’ve seen several examples from Microsoft and also used the walkthrough from Teach yourself C++ in 21 days...
  4. KCI

    Count forms with SUB main

    App.PreviousInstance ? KCI
  5. KCI

    Error:DllRegisterServer entry point was not found

    Could the issue be permissions? KCI
  6. KCI

    My Access mdb file is updated daily

    Hey, From what I know, you really don't tell ADO any specifics about whether the access is local or over the net. ADO just needs to be able to resolve the computer name to the correct IP address. This is an issue that your network people can help with. the answer will involde mapping...
  7. KCI

    Sending a command from VB to the command line

    Hey, I think you "copy xyz.prn to lpt1" if the printer is local. You may also want to use a batch file. You may have a little more control over things. good luck, KCI
  8. KCI

    Display data in grid

    Hey, Yes, it is possible. I would start by using a MSFlexGrid (because it allows free selection). and use the grid in unbound mode since it is faster and you do not require editing. Hope this helps (a little). good luck, KCI
  9. KCI

    Move out of field with Validation Event with mouse

    Hey, Don't really have an answer, but if you are not relying on the functionality of the validate event to cancel the lost focus you may try moving your code to the LostFocus event. Just a though ... I hate to see these issues sit for a long time. Also consider placing code in the gotfocus...
  10. KCI

    PDF Pages

    Hey, There must be a way to determine the number of pages using API calls. The question is just whether Adobe gives you enough info about thier DLL's and OCX's to use them (try Adobe SDK). Sorry, I am not giving you the answer, but I hope this lets you know you are looking in the right...
  11. KCI

    Query heterogeneous tables (dbf/mdb)

    Hey, That is the first thing that came to my mind ... you may have to do some manually cunkin to figure out the "NOT IN" clause. good luck, KCI
  12. KCI

    Count forms with SUB main

    Hey, Not sure I understand, but look into the Forms collection. Collections can be very powerful when you are unsure as to what is out there. good luck, KCI
  13. KCI

    Sending a to the C Shell

    Hey, Maybe try to shell a batch file that contains the commands you want to run. This goes bake to the DOS days. Basically create a text file with a .bat extension, inside the batch file you can do anything you like. Batch programming is very powerful and can include not just command to...
  14. KCI

    datagrid jump to

    Hey, Should work. What you will need to do is something like this: rs.Movefirst ''' Seem to get into trouble sometimes if I don't use this rs.Find(Left$(string1,len(trim$(string1))), 0, adSearchForward, adBookmarkFirst) Then depending on how the grid is setup bound or unbound, sorted or...
  15. KCI

    Getting HDD partitions for multiple HDD in system

    Hey, Not sure whether this will help, but check the file boot.ini found in the root directory of your C-drive. good luck, KCI

Part and Inventory Search

Back
Top