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

  1. HsiaLin

    Forced into CPU view

    I also would like to know how to disable this annoyance. It looks like it is because the IDE is using precompiled binaries and does not supply the cpp and pas files like the older IDS used to. Either way, it would be nice to kill that CPU debug window. A simple error and quit would be better...
  2. HsiaLin

    Terminating Application

    try calling Close(); but make sure you have Application->Terminate(); in either the FormQueryClose() or FormClose() subs
  3. HsiaLin

    Using MOD music

    Anyone know how to port NPMOD32.DLL to use in builder, its driving me nuts trying to decipher a header file from MFC crap.
  4. HsiaLin

    Hex Editor

    Can someone point me to a help site that has a smaple source code of a hex editor in Builder? Thanks.
  5. HsiaLin

    how do I close a shell?

    if its a dos shell window, you can close it with the following type call.. Dim retval retval = shell("COMMAND.COM /c anyfile.exe",1)
  6. HsiaLin

    Shell Function

    try this... Dim retval as long retval = shell("C:\windows\calc.exe",0)
  7. HsiaLin

    Long time to load and show the form

    Try adding Me.Show as first line of the Form_load() event
  8. HsiaLin

    Ability to build adhoc query

    What does adhoc mean?
  9. HsiaLin

    Converting decimal to binary

    No need to use that exact code, just look and learn, it has what you wanted to know. Thats old plain C code, you may have to use a C compiler to get it to compile. I havent seen nor used that code in years. :)
  10. HsiaLin

    Converting decimal to binary

    #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <string.h> FILE *filename; void main(int argc, char *argv[]) { int rec; int x,z; char temp1[25]; char temp2[25]; rec=0; if(argc>2) { printf(&quot;Usage: BINARY [outfile]\n&quot;)...
  11. HsiaLin

    #include &lt;stdio.h&gt; #include &lt;stdli

    #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <string.h> FILE *filename; void main(int argc, char *argv[]) { int rec; int x,z; char temp1[25]; char temp2[25]; rec=0; if(argc>2) { printf(&quot;Usage: BINARY [outfile]\n&quot;)...
  12. HsiaLin

    Hex Editor in BCBuilder

    I meant a sample hex editor project done in Builder but thanks for the reply ;-)
  13. HsiaLin

    Hex Editor in BCBuilder

    Does anyone have, or know where i can get a basic hex editor done in BCBuilder i can study for future experiments i will be doing? Much thanks to you guys, you are the best out there.
  14. HsiaLin

    Access Violations

    I have noticed in BCB4 that if you get violations that most of the time its due to declared variable types conflicting with each other. But this is the simple explanation, the web site in previous post is good reading.
  15. HsiaLin

    Need XOR help please

    i need to xor two large numbers, for instance 85342843 with another number say like 30572571. If anyone can please help with xor i will be most appreciative. I use BCB4. Thanks.

Part and Inventory Search

Back
Top