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 SkipVought 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: *

  1. dextersmonkey

    sharing data between asp pages

    I am looking for a way to share data between two web apps in something similar to DDE. I can't find anything that is helpful. DOM seems to be what would work best but that seems to apply only to the page you are working on. What I need is to be able to pull data from elements on another page...
  2. dextersmonkey

    sharing data between asp pages

    I am new to asp, and I am looking for a way to share data between two web apps in something similar to DDE. I can't find anything that is helpful. DOM seems to be what would work best but that seems to apply only to the page you are working on. What I need is to be able to pull data from...
  3. dextersmonkey

    float parameters

    you could using the following format specifiers cout.setf(ios::showpoint, ios::floatfield); cout.setf(ios::fixed); cout<<setprecision(2); any floating point output will show to 2 digits of precision. you have to include iomanip.h for setprecision to work the first 2 lines are taken care of by...
  4. dextersmonkey

    how do you get the graphics functions to work?(look at name)

    To use the graphics routine for borland C++ 5.02 you need to create a project with a Target Type of Application, Platform of DOS, and include the BGI libraries. You can then run a sample application like this: example: #include <iostream.h> //console i/o needed if graphics fails #include...
  5. dextersmonkey

    borland 5.02

    Kind of an old thread, but another way would be to include the conio or constre header file and then use getch() to wait for a key to be hit. example: #include <constrea.h> int main(){ cout<<&quot;Waiting for you to press a key to exit...&quot;<<endl; getch(); return 0; } This...
  6. dextersmonkey

    A question about strings... (Beginner)

    In C++ there is no such thing as agregate string operations meaning you can't assign one string to another, you can't assign a string a value unless it is during declaration. You can read a string during input and you can output a string. the following example shows how to get a string at run...
  7. dextersmonkey

    textcolor(), ahhhhh

    Hey all, This for any of you that are using Borland C++ 5.02. When you try to use constrea.h for console output formatting you may get compile or make errors. ex. Error: Unresolved external 'setxy(int,int)' referenced from After much suffering with this problem I finally found a fix on...

Part and Inventory Search

Back
Top