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 bkrike 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
  • Content: Threads
  • Order by date
  1. 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
  2. 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...
  3. 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...
  4. 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
  5. 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
  6. 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
  7. mover50

    visual API's

    Does linux have any visual development tools like visual C++ or visual basic to name a couple? Thanks, Kent
  8. 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...
  9. mover50

    Runaway loop..

    Here is the code running GNU GCC C++ on linux. #include <iostream> #include <cstdlib> using namespace std; int main() { int magic; int guess; magic = rand(); do { cout << "Enter your guess: "; cin >> guess; if (guess == magic) { cout << "** Right ** "; cout...
  10. mover50

    kbhit and conio.h

    As I understand it, the kbhit() function is not part of the Standard C++, but is a common extension that is supposed to be provided by most compilers. My documentation to use the header file conio.h for the kbhit() function, but when I do a compile that way, it says the conio.h is not found...
  11. mover50

    trying to learn C++ and some other stuff

    I want to try and code a program in C++ that will be able to access a yahoo web site to download .csv data and also work with a MySQL database and I want to do this on a linux OS. I have extensive programming experience in other lanuages mostly on mainframe along with some PC basic. So learning...
  12. mover50

    What's wrong with this code?

    Getting this error... [mover50@localhost C++]$ g++ prog3-06.cpp -o prog3-06 prog3-06.cpp:7: error: syntax error before `^' token prog3-06.cpp: In function `int main()': prog3-06.cpp:20: error: syntax error before `^' token prog3-06.cpp: At global scope: prog3-06.cpp:25: error: syntax error...
  13. mover50

    C++ and imbedded sql

    Anyone know where to find a book or tut on how to code imbedded sql in C++, preferably on linux? I would like to find one that has some hands on stuff, where you can do everything from creating a db, table to maintaining it and creating reports. Thanks, Kent
  14. mover50

    C++ and the internet.

    Does C++ have the ability to acquire data from the internet? Can I generate a URL that will go out and get some data on the internet and then give it to C++ to process like it is reading data from a file? A simple example would be to do it like the Query statement in Excel. Thanks, Kent
  15. mover50

    Call to Les Bate

    Les, Was wondering if you have plans to write your 'Perl fast&easy web development' with linux in mind? I basically had no problems following your excellent book using windows 98 but, found that I cannot make it work for linux. Too many things are very different. If you are, I would like to...
  16. mover50

    basic perl/cgi question

    I am learning perl using Ellie Quigly's book 'Perl by Example'. For the most part it has been very very helpful. However I am stumped on how to get my perl script to work with cgi.(refering the example3.16 in the manual). I have posted this on the Apache forum and got some response, but not...
  17. mover50

    where's the connection?

    When I do compile of my C++ program, I get this error, basically telling me that count has been declared elsewhere. Where is the connection to the 'stl_algo.h' where it was also declared? I am running it on linux FC2. g++ prog3-02.cpp -o prog3-02 prog3-02.cpp: In function `int main()'...
  18. mover50

    apache and linux

    I have installed Apache as my web server on linux and trying to use a perl script with cgi. I am somewhat of a newbie with Apache, linux and perl. The Apache seems to be ok but I get a file not found when I try to run the perl script. The url I use is...
  19. mover50

    perl/cgi/linux newbie question

    I have installed Apache as my web server on linux and trying to use a perl script with cgi. The Apache seems to be ok but I get a file not found when I try to run the perl script. The url I use is; hyper//localhost/home/mover50/Linux/chap03/example16 (with hyper actually being http:) That...
  20. mover50

    rounding

    Say I do a calculation that has a variable with a whole number and another with a floating point. Say the numbers are, 2 and 14.897 and I multiply them 2*14.897 which equals 29.794, however I want to round it up to 29.8. How would I do that? Thanks, Kent (the worrier)

Part and Inventory Search

Back
Top