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: mover50
  • Order by date
  1. mover50

    mwi_rotate

    Thanks Mike, You are 2 for 2 with me today. Even my tutorial had that one wrong. Regards, Kent Kent
  2. mover50

    menu preview not working

    Now I see it. I thought something was supposed to show in the message box based upon the prompt selected. All it does is replace the system menu bar with the new menu bar (in grey) in the designer window, no matter what prompt is selected. Is that right? Thanks Mike, Kent
  3. mover50

    menu preview not working

    Using VFP 7. Does the menu preview work for anyone with the menu designer? I can't get mine to work. Thanks, Kent
  4. mover50

    mwi_rotate

    Using VFP 7 and doing a sample tutorial project. In the menu design steps I have a submenu in windows prompt. The prompt under that is: Cycle The result is: bar # In the options box is: _mwi_rotate When I run it, it tells me; "Variable _MWI_ROTATE is not found". Any help would be most...
  5. mover50

    glib and other stuff

    I don't know if you solved your problem yet or not, Gotten sidetracked and have not tried out your suggestions. Giving myself some crash learning on foxpro. As for the no man or info, I could not find them on my FC2 either. Thanks for the help, will put it some good use shortly, I hope. Kent
  6. mover50

    Getting started with VFP 7

    Thanks Cricket, That might just be the ticket. Kent
  7. mover50

    Getting started with VFP 7

    Thanks Mike and Dave, I have already checked out those sites and I have a VFP 3 book and did want to have to purchase another book. What I was hoping for was a tutorial that is specifically for VFP 7. The VFP 3 book I have is a struggle and it seems like I spend most of my time relating to...
  8. mover50

    Getting started with VFP 7

    I have VFP 7 installed and am now trying to learn it. Have done some google searches on tutorials and find them lacking. Also find there is a dirth of books on VFP7. I have gone through the help menu and am hoping I can find something more hands on than that. Would like to find a fast track...
  9. mover50

    glib and other stuff

    I'm skeptical of your reply because you didn't list any development packages in your initial post, and RPM-based distros commonly install with no devel pacakges. Also, your symptoms would exactly correspond to a lack of development packages. Chipper, I am not at the pc with the package and will...
  10. mover50

    glib and other stuff

    GNOME has GTK++ which is a visual product much like Visual C++ (if I remember right)... The best thing I can think is to try to run 'locate' to find where the headers your trying to use are... If they aren't in your include path then you'll have to add them to your include path or use the...
  11. mover50

    storing class declarations and user functions

    Where do I store user class and function declarations? If I can store them in my home directory, how do I create a path so g++ can find it? Thanks, Kent
  12. mover50

    autogen error

    Well, I know what the problem is, just don't know how to fix it. Not even sure how to explain it. When I went to use autogen for a particular app, autogen.sh was not in the directory where the app is. I think autogen has to be in the same direcory as the app. The only way I could think of to...
  13. mover50

    autogen error

    Maybe someone here might have an answer or an idea. When I run autogen 5.6.4 I it tells me: ../installpaths no such file or directory. Any help would be most appreciated. Kent
  14. mover50

    autogen error

    Hope someone might have an idea here. When I run autogen 5.6.4 I get an error message telling me that ../installpaths no such file or directory. Anyone? Thanks, Kent
  15. mover50

    visual API's

    Glade looks promising. Did a yum install of glade2. No man or info on it. Also not finding much documentation on how to use it. Thanks, Kent
  16. mover50

    visual API's

    Does linux have any visual development tools like visual C++ or visual basic to name a couple? Thanks, Kent
  17. mover50

    glib and other stuff

    I am trying to learn how to use glib/gtk+/gdk using C++ on linux. As far as I can tell the following components are installed. atk-1.6.0-1 glib-1.2.10-12.1.1 gtk+-1.2.10-29.1.1 pango-1.4.1-1 They show up as such when I do a rpm -q. When I do a man or info for each of them, nothing shows. In...
  18. mover50

    Runaway loop..

    oops I mean. int randNum = (rand()%100) + 1; That seems to generate a number between 1 and 100, at least it does for me. Kent
  19. mover50

    Runaway loop..

    int randNum = ((rand() / RAND_MAX) * 100) + 1; Won't you always get 1 doing that? How about: int randNum = (rand()/%100) + 1; or something like that.. Kent Kent (the worrier)
  20. mover50

    Runaway loop..

    Thanks cpjust, That stopped the runaway, however the cout << "Only enter numbers: [0-9]" << endl; never did execute. I did a man srand and read it, and am not quite sure how it works. What is RAND_MAX and how is it set? How would I use the rand() to generate a number say between 1-100...

Part and Inventory Search

Back
Top