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!

Search results for query: *

  • Users: castor2003
  • Content: Threads
  • Order by date
  1. castor2003

    CREATE DLLs FOOLING AROUND

    Just recently I got into the DLL creation business. I use them to bundle alot of public functions that I use. However, I keep getting dll files being created on its own accord with an [r1] and [r2] added to the filename portion of the created dll file. For example, I build my DLL project to...
  2. castor2003

    GETPRINTER() TRAGEDY

    I was utterly humiliated by the failure of this function to pop the dialog box for the user to select a printer. Instead it returned a 'Printer Not Ready'. The tragedy is that the program won't get continued if a printer is not selected. What I found is that when the default windows printer...
  3. castor2003

    SHELLEXECUTE REFUSES TO RUN NETSTAT!!!

    Why isnt Shellexecute creating ports.txt? I have run out of ideas. Could a kind heart assist. I am trying to go around the IPI* APIs. =shellrun([NETSTAT -a -n],[],[open],[ >C:\ports.txt],1) FUNCTION shellrun PARAMETERS cfile as string,cdir as string,caction as string,cparams as String...
  4. castor2003

    ASSIGNING WINSOCK .OCX PORT NUMBERS

    I have been assigning the clients of my software arbitary port numbers on which to accept incoming messages. However,I don't know if the another app on the client/machine is already 'listening' on this port. Would there be conflicts? Should I worry?
  5. castor2003

    WINSOCK MATTERS - UDP or TCP

    I am writing an app which comprises an Application Manager and a Library Kiosk. I am using Winsock.ocx to send instructions to the Kiosk like when to shut down temporarily and reopen etc. In the protocol selection I get 0 for TCP and 1 for UDP. I have been using 1, cause I see it on most...
  6. castor2003

    RUNTIME CENTERING OF CONTROLS

    I am writing a dynamic form that has to be readjusted in size and Height given the parameters passed to it. This means that I would have to be centering them horizontally. Any idea how I could achieve this? I am getting grey hair over this.
  7. castor2003

    Using Created .dlls from VFP7 Project

    I have this project with a .prg which defines an OLEPUBLIC class that I want to send to someone as a .dll from which the functions can be run. This is what a what I did. In the project's TESTDLL.PRG. Only item in the project. DEFINE CLASS holy AS CUSTOM OLEPUBLIC PROCEDURE trnsform...
  8. castor2003

    Main Menu not showing in Top-Level-Form

    I have a MDI form which I use to launch my app. My main toolbar comes up fine from the Activate method. I placed DO MAINMENU.MPR in the forms INIT()and I only see a flash of it. Any help?
  9. castor2003

    My EXE won't dissappear from the Task Manager

    This is what I have in my App's object's doquit() method RELEASE oGOD [Code] IF pcDeveloping RELEASE oTool SET SYSMENU TO DEFAULT SET CLASSLIB TO CANCEL ELSE CLEAR EVENTS QUIT ENDIF [\Code] Shouldn't the above completely close the App's.exe? I have laboured for hours on this and the...
  10. castor2003

    How can I have VFP7 to SET PATH to a UNCName?

    It is important that my users are able to jump from server to server for data so I want to set Path to all three servers. Those servers are mapped differently on the various workstations. As a work around, I have a function that gives me the uncpath, However when I use it with FILE() to test...
  11. castor2003

    How do I hide the Visual Foxpro menu

    I have compiled an exe for my project which should start from a .prg which launches my login.scx. I keep getting the Visual Foxpro menu coming up first. I launch my own menu when the user gets authenticated. a Hand can help alot...Thanks in advance you good people.
  12. castor2003

    How do I test the existence of a form

    I have a few forms working together. They don't have caption. I have poked my brains the best I know to find a way to determine if they are visible so I could take certain steps. I know it is a simple issue that is just eluding me.. I tried using PEMSTATUS AND GETPEM, but these left me more...
  13. castor2003

    Combining Class Library

    I am working with 2 class libraries. I wish to combine them without subclassing them. I search the VFP HELP TO NO AVAIL. Is my desire achievable?
  14. castor2003

    How to discard a form before it becomes visible.

    I have a set of fours forms that has a 'Parent-Child' relationship. If the data created by the Great Grand parent form is not inputted yet, I want to signal to the user trying to open a decendant form that it is not possible until the Great Grand Parent form is run the data is set. So I use...
  15. castor2003

    Interacting with other applications

    I am creating an app which is not a COM server that has functions that the user would be using. My app uses that app data. I want to be able to make that visible and invisible at will. The idea is to force the user to log into that app when starting my app then I want to make the app...
  16. castor2003

    Scattered Variables losing scope - Help!

    Something strange is happening to me which has cost me two nights of sleep. I have this form with a CUSTOM VCR, with next,prev btns etc. I have a 'blockaction' method on that container that references the parent Form for Next,Add and all actions. The other method of that Vcr Container is a...
  17. castor2003

    Do you have the 'Cmctl198.chm' file??

    I am serious need of this help file for the MS TreeView Control. I am using the control and needs to understand some more stuff. Some folks have answered my questions but if I get the file, I will be helping myself. Could someone send it to relentlessly.geo@yahoo.com PLEASEEEEEEEE..
  18. castor2003

    How to control and get data from TreeView Control

    I have succeeded in having my first TreeView working and boy I am excited. However, there seem to be little help around for it I can't find the help file. Do you know where I can find it? It is 'Cmctl198.chm'. I can't seem to find it on my PC. I would like to do two things with my treeview...
  19. castor2003

    TreeView is killing me. - help!!!

    I am trying to use this control for the first time and I was hoping the following code would display one root node with a child along with the + sign. Also, when I run the form it says that references are not complete and hangs up. What could by my problem? #DEFINE relatFirst 0 #DEFINE...
  20. castor2003

    Can WordPad be automated?

    I want to use Wordpad as a text viewer and needs to be able to automate it? Is it a server? How do I call it? oApp = CREATEOBJECT("??????")

Part and Inventory Search

Back
Top