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 TouchToneTommy 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 akialia

  1. akialia

    integrating applications using a.p.i.

    If I understand correctly, I think you want one program to comunicate with another. This can be done in many ways, there are command calls in VB and C that send parameters to other exes or there are API calls that send messages to other applications. You really do need to be clearer. However I...
  2. akialia

    Command line

    If you look through 'HKEY_CLASSES_ROOT' you will find heaps of classes, windows looks here to see which files or programs are associated which what. In the same way, if you create a programs which you want to own a file type, it is here that you create the key. For examples of this and many...
  3. akialia

    Active form getting hidden behind another maximized application

    Gidday, I see three options, depending on your needs it's up to you which one you use. 1. Use the VB Z-Order functions to control which form is top most. 2. Use the API call that keeps a form On-Top - ======================================================== Const HWND_TOPMOST = -1 Const...
  4. akialia

    Roll on records in two subforms

    Hi, Create a class that handles all the DB calls and stores all the return values. Then you call the class and use any values within it. My API Site: http://users.chariot.net.au/~akia/Home.htm E-mail: akialia@yahoo.com
  5. akialia

    validating username and password against the system

    Here is how I do it. This call will only work on NT base operating systems. For other useful API calls, check out my API web site. http://users.chariot.net.au/~akia/Home.htm ======================================================= Option Explicit Declare Function LogonUser _ Lib...
  6. akialia

    Date Time picker where's it gone?

    The Date control comes with Office, you must take a copy of it from you office directory and then include it with your set-up program, so that the control is registered on the new PC. Point to note, if you are using Office 2000, the control will not work on a PC using Office XP and visa-versa...
  7. akialia

    API function to disconnect modem

    The two calls that you will need are 'RasEnumConnections' and 'RasHangUp'. The first one to get the handle and the second one to hang up. I have examples of both these call in C and VB at my web site if you have difficulties. http://users.chariot.net.au/~akia/Home.htm
  8. akialia

    Who's logged on?

    You didn't mention which language you were writting in, I'll give it to you in C and if it's Delphi or VB you can get the example from my web site: http://users.chariot.net.au/~akia/Home.htm ========================================================== char ipBuffer[32]; unsigned long...
  9. akialia

    Verify User via NT security

    Here it is, but you should also visit my API site that is dedicated to API calls in either C, VB or Delphi. http://users.chariot.net.au/~akia/Home.htm =========================================================== Declare Function LogonUser _ Lib "advapi32" _ Alias...
  10. akialia

    Can i embedd my VB6 form into a web page?

    If you create your program to be an OCX control then you can add it to your web page. ============================================ API Site, examples in C, Delphi and VB http://users.chariot.net.au/~akia/Home.htm
  11. akialia

    Distributing VB Application

    Is it possible to create a visual basic program that can run pre-written report and the PC the program runs on does not have Crystal Reports installed. I know you can write the reports in VB and that you can use the cpeaut32.dll if Crystal is installed. If some one does know, can you please...

Part and Inventory Search

Back
Top