Search:

Type: Posts; User: HisWord

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,904

    Ok. thanks for the tips. After MUCH reading and...

    Ok. thanks for the tips. After MUCH reading and studing sample code I hammered out a rough dialog based app. However, when I tell the app to go into a loop to listen for some data my program is...
  2. Replies
    6
    Views
    1,904

    Getting Started With Winsock!

    Yeah!!! WinSock!!! Yeah!!! Ok. I want to dive more deeply into this and really aren't sure where to begin. Let me tell you what I want to do, and see if you can give me a few hints. I want to make a...
  3. Replies
    3
    Views
    1,430

    No help on the Long Division, but as far as the...

    No help on the Long Division, but as far as the documentation why not just use MSDN online? Or are you looking to have it all available for offline use? I can try to help you out the best I can,...
  4. Replies
    12
    Views
    5,699

    Well, here goes. First of all, you shouldn't even...

    Well, here goes. First of all, you shouldn't even need an autoexec.bat for windows98. I only have one to start my debugger. However, if removing it doesn't seem to work, then why not just reload...
  5. Replies
    2
    Views
    1,023

    Using MSVBVMx0.dll in c++

    Although there probably isn't a valid reason for wanting to, has anyone ever tried to call a VB function from a program written in c++? Is it even possible?
  6. Replies
    0
    Views
    931

    Get the default Printer from NT 4.0

    GetDefaultPrinter works for Win200 and later from what I've read. I was wondering how this can be donw with a NT 4.0 machine with SP6? If anyone has any ideas that would be great. Thanks.
    -Aaron
  7. Replies
    6
    Views
    1,148

    You also can not tab from one edit box to the...

    You also can not tab from one edit box to the next? Or maybe it's just on NT machines. I'm running NT and find that sometimes when I program things to work a specific way they don't always work %100...
  8. Replies
    4
    Views
    2,357

    DanMan, It can all be easily cracked....

    DanMan,

    It can all be easily cracked. Back when I was a kid, and into all that, time limits where the easiest things to disable. I don't know how it is now, but back then, the toughest...
  9. Thread: file i/o

    by HisWord
    Replies
    2
    Views
    960

    Here's what I got for CreateFile and ReadFile ...

    Here's what I got for CreateFile and ReadFile

    Unsigned Char Buffer[50]={0};
    HANDLE hFile;
    DWORD ReadBytes = 16;
    DWORD dwRead;


    hFile= CreateFile("C:\\Temp\\Temp.txt", GENERIC_READ,...
  10. Replies
    1
    Views
    1,269

    Background colors invert when resizing?

    I just finished coding my first window that loads a bitmap for it's background. neat huh? Anyway, when I fire up my program, sometimes the colors are right and other times they look inverted or...
  11. Replies
    2
    Views
    1,464

    sorry, my batch file and stuff uses the TinyCRT...

    sorry, my batch file and stuff uses the TinyCRT stuff I got from the net. If you just want to use the native stuff that comes with the command lines tools use this.

    bcc32 -c -w- -tW %1
    brcc32...
  12. Replies
    2
    Views
    1,464

    I ran into this same problem a while back. Here...

    I ran into this same problem a while back. Here is what you need to use. Just make a batch file like I did and then run it like makeapp mysource.cpp where makeapp is you batch file containing this: ...
  13. Replies
    8
    Views
    1,638

    MonkFish, When I first started out I...

    MonkFish,

    When I first started out I was making simeple win32 console apps that would help me with simple tasks. I made a small timer app that would just count down from whatever time I...
  14. Replies
    2
    Views
    1,059

    I found an APi of sorts, but it used inline ASM....

    I found an APi of sorts, but it used inline ASM. I couldn't really figure it out, but the need has now psased for such a thing. I'll just wait until it comes up again I guess. Thanks.
  15. Replies
    3
    Views
    1,139

    The *Best* tutorial for me may not be the best...

    The *Best* tutorial for me may not be the best one for you. It just depends on how you learn. When I started out, I just went to yahoo and typed in stuff like "learn c++" and "c++ tutorial" and found...
  16. Replies
    2
    Views
    1,059

    Setting voume info

    Is there a WinAPI for setting volume info such as type, serial, and label?
  17. Replies
    13
    Views
    2,227

    Ok. With much messing around and rereading all...

    Ok. With much messing around and rereading all the info you guys have provided, I finally was able to get the Dialog to do what I want, sorta. Here's the whole deal. My dialog box accepts user input,...
  18. Replies
    13
    Views
    2,227

    I'm just using WinAPI. I don't know if it...

    I'm just using WinAPI. I don't know if it supports OWL or not, never had to use it. I was thinking that it should worl on dialogs too, but in every example I've seen so far, it works on a dialog that...
  19. Replies
    13
    Views
    2,227

    V, I get what your code is doing, which is...

    V, I get what your code is doing, which is basically how mine is set up, but my app is a dialog, not a window. Zman, I'm using Borland free command line deal so there is no wizard. Any other...
  20. Replies
    13
    Views
    2,227

    Ok guys, I've been looking around and found some...

    Ok guys, I've been looking around and found some sample code and tried this, but it doesn't work.

    switch(uMsg){

    case WM_SYSKEYDOWN:
    case WM_SYSKEYUP:

    switch(wParam){

    case VK_F1:
  21. Replies
    13
    Views
    2,227

    Thanks guys this is a lot of good information for...

    Thanks guys this is a lot of good information for me to research. If anyone has some sample code as to how to do this that would be great. I'll be looking today for some. Thanks again.
  22. Replies
    13
    Views
    2,227

    Doing stuff when certain Key combo's pushed

    I'm sure this is easy for someone, so here goes. I have a dialog based app that accepts use input. When a user hits something like alt and 2 at the same time, I want to change all the text to * or...
Results 1 to 22 of 22