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 Mike Lewis 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: foxprogram
  • Order by date
  1. foxprogram

    Storing images in a VFP

    Thank you OlafDoschke ! I check it out.
  2. foxprogram

    Storing images in a VFP

    In Clipper 5.3 (grrr) there was a file with extension .BML, and it used to store images, text etc. in one file. (The name of this file was egal to the executable) This file loaded into memory when the executable start, and then I was able to point the images, and put them onto the screen. I got...
  3. foxprogram

    Storing images in a VFP

    Every images linked into the executable now. And the result is that the .EXE file is a fat two and a half megabytes :( I should use only few hundred kilobytes executable file plus a large DLL or sg like that.
  4. foxprogram

    Storing images in a VFP

    My question is :How can I store images which are now part of the compiled executable (marked as Included) ? Should I put them into a .dll, or sg like this ? Sorry but I have no VFP book, and I am just a beginner! :)
  5. foxprogram

    Highlighted ID in a List Box

    Thank you very much !
  6. foxprogram

    Highlighted ID in a List Box

    I try to solve the problem with Treeview control. What Ihave to write here : x=thisform.oletreeView.nodes.Add("R",4,"C"+alltrim(STR(i)),malbumnev,thisform.Imagelist.__________) to load an image to the actual node ? (I loaded images before, into the Imagelis control)
  7. foxprogram

    Highlighted ID in a List Box

    This a screenshot about my list box object : http://www.kepfeltoltes.hu/051021/Image2.jpg It is working fine if the user click twice in a row ( the whole list will be cleared, then it will be filled with only the chosen part numbers ). I should use a plus sign somewhere which the user should...
  8. foxprogram

    Highlighted ID in a List Box

    Yes. Because I cannot use treeview ActiveX control, that is use 16x16 16c icons only, but I need to use large images to switch on/off items in a list(?) box. I've tough that i should take some push buttons near the list box object, and the same line and the same time as the higlighted row in...
  9. foxprogram

    Highlighted ID in a List Box

    How can I get the relative number of the highlighted row ? .ListIndex tells only the selected item index, but I need to know the highlighted row position only in the selectable area ...
  10. foxprogram

    How 2 start a methode from a form's INIT ???

    Thank You Mike! This is the property what i forgot ! :-)
  11. foxprogram

    How 2 start a methode from a form's INIT ???

    I would like to know, that how can I solve that, when a form got a parameter, check it, then it should run a method, and the user would able to follows on the screen the procedure. Now it works, but I cannot see any form while the method is not finished. :-( How should i do that the methode is...
  12. foxprogram

    UDP stupid question

    Another question. How can I recognize that who connected / requested / send me anything ? Should I know the IP address of that machine ???
  13. foxprogram

    UDP stupid question

    OK. I did it !!! Now user should type the name of the machine in the local network, and what the user type into a text, the other side would display it. Just like a chat ! :-) Thank you guys! foxprogram
  14. foxprogram

    UDP stupid question

    Thank you! I replaced the 2 Winsock on my form to another two winsock, and now everything is fine. But I cannot see yet, how could I use a form with 2 winsock to send machines to each other coordinates during the gameplay ... Any idea for my Pong style game ? :-)
  15. foxprogram

    UDP stupid question

    Thx! I put these lines into my form, and now I have the follownig message: "...Invalid operation at current state" After I press Ignore, your example works fine, but this error message is shown every time when I press the button. ???
  16. foxprogram

    UDP stupid question

    Hello! I would like to use my PONG :-) game by network with 2 machines. I would like to send positions of the player's figure to each other. I use winsock object, and I have a problem: THISFORM.olecontrol1.Object.Protocol=1 THISFORM.olecontrol1.Object.RemoteHost="user1"...
  17. foxprogram

    Parameters

    Stupid question. I never made VC++ program. How can I recognize which cpp is the main ? I have several files, but no ones contains main. I would like to use a parameter (filename with path) which came as parameter when the app is started from command line. Where I would type and what ? :)
  18. foxprogram

    Treeview control questions

    Check it out now! :-) Nice recursive solution: http://www.google.co.hu/search?hl=hu&q=how+to+check+all+children+treeview+vfp+ON%2FOFF&meta=
  19. foxprogram

    Treeview control questions

    Hello ! :-) I found a nice recursive solution on the WEB: http://www.foxite.com/archives/0000019334.htm
  20. foxprogram

    Treeview control questions

    In the Treeview.NodeCheck event i did: -------------------------------------- If lapozo.oleTreeView.Nodes.Count > 0 FOR zzz = 1 TO lapozo.oleTreeView.Nodes.Count IF thisform.getnodetext(lapozo.oleTreeView.Nodes.Item(zzz).Parent)=Node.Text IF...

Part and Inventory Search

Back
Top