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

    Win2k Defrag

    >> get used to replacing ide hard disks from time to time. i reccomend that you start thinking about replacing and upgrading your disk about when it gets half full... that keeps everything running in top shape. there needs to be enough room on the disk for the vurtual memory, as well as enough...
  2. Nyaj2k1

    File Already Open?

    >> if you dont have any files that you actully *want* open at that point where the error is, then just say: CLOSE >> to be sure that all files are closed at that point. close without a corrisponding variable or number simply closes all open files regardless. something i do at the end of...
  3. Nyaj2k1

    Out Of Memory (Shell Command)

    No... your QB programs free memory is just smaller then what DOS needs to run, compiled and uncompiled. Once you get your program over a few KB, that happens... the only thing you can do is reduce the memory footprint of your application... or use a shell workaround. What are you trying to do...
  4. Nyaj2k1

    LINE format

    These numbers have to be made on the fly, within the program, and with constantly changing dot patterns.
  5. Nyaj2k1

    File transfer using Random Access

    What kind of port? Com, or Lpt?
  6. Nyaj2k1

    Does C/C++ contains every command that Qbasic has ?

    Trying to translate from QuickBasic to C is pure hell. In fact, depending on how complex the application is, you may be better off just rewriting your program. You will probably have better luck translating to VisualBasic. The PRINT command can be kind of tricky, but what I've allways done was...
  7. Nyaj2k1

    Automate passing ctrl z in dos or hyper-terminal

    ON KEY is a command native only to BASIC.
  8. Nyaj2k1

    way for not using ltrim$ rtrim$

    Ummmm... Kinda long eh?
  9. Nyaj2k1

    LINE format

    ... But I still use 2 ^ X for setting up the table.
  10. Nyaj2k1

    LINE format

    But, I experemented and yes, a refrence table is much faster.
  11. Nyaj2k1

    LINE format

    2 ^ 0 = 1 2 ^ 1 = 2 2 ^ 3 = 4 2 ^ 4 = 8 2 ^ 5 = 16 2 ^ 6 = 32 2 ^ 7 = 64 2 ^ 8 = 128 ect...
  12. Nyaj2k1

    ? on searching files based on criteria / storing results

    Thanks. Ummmm... Bisray was longing for it?
  13. Nyaj2k1

    LINE format

    I've been experementing with this line thing, and I only have one sugestion. Why not use... 2 ^ x ...insted of a table?
  14. Nyaj2k1

    Generic Questions

    My point exactly. LogicLRD, you must eather be a very fast typest, or you have to much time on your hands. :)
  15. Nyaj2k1

    Qbasic in Windows XP

    Ummmm... Firstly, in order for a DOS prompt to take up 100% system resources in XP, I imagine your computer is quite slow. I would guess less then 500mhz P2. Also, note that *some* computers run QB just fine. Mine for example, has no trouble whatsoever running QB under XP.
  16. Nyaj2k1

    LINE format

    Very nice.
  17. Nyaj2k1

    way for not using ltrim$ rtrim$

    As a final step, you could reduce the number of times you use Trim$: FOR r = nomchi TO 1 STEP -1 iTemp$ = Trim$(Str$(Tempo)) tempo = (suite(r) * expo) + reste suitetotal(r) = VAL(RIGHT$(STR$(tempo), 1)) IF LEN(iTemp$) > 1 THEN reste = VAL(LEFT$(iTemp$...
  18. Nyaj2k1

    way for not using ltrim$ rtrim$

    I allways move it to a function: Function Trim$(iStr As String) Trim$ = Ltrim$(Rtrim$(iStr)) End Function Then, you could change your code to read: FOR r = nomchi TO 1 STEP -1 tempo = (suite(r) * expo) + reste suitetotal(r) = VAL(RIGHT$(STR$(tempo), 1)) IF...
  19. Nyaj2k1

    Where is hotmail going??

    Lol... I would love to pirate some software for my Linux box, alas, I keep running into issues like: "This application is Freeware" or "You may freely copy this program to all your friends." There just seems to be no good way to pirate Linux software.
  20. Nyaj2k1

    ? on searching files based on criteria / storing results

    ' ============================================= ' Data search application 1.1 ' Created by Allan Davis (aka Nyaj2k1) ' ============================================= ' ' == Notes ==================================== ' ' ==== New ==================================== ' ' Thanks for the feedback...

Part and Inventory Search

Back
Top