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

  1. EnCocytus

    AddressOf operator

    ALright, Ineed some help with the addressOf operator. I am using a .Dll file that requires a callback. But I keep getting an error message "Invalid use of AddressOf operator". Here is an exerpt of my code. Private Declare Function client Lib "WinSox.dll" _ Alias...
  2. EnCocytus

    queue problems

    Doh, I knew it was something really easy that I was missing. I hit myself on my forehead when I saw your post. Thanx, apatterno. 1001100 1110101 1101011 1100101
  3. EnCocytus

    queue problems

    Hey, I am having problems declare a simple queue. As far as I can tell, I'm declaring it right. Most likely it is just one of those things where the problem is right in front of me. Anyways, here is how I've been declaring it. #include <queue.h> static queue<char *> q; But I keep...
  4. EnCocytus

    wrapper classes?

    Amazing, this looks like it might be just what I'm looking for. It will prolly take a little time to customize and implement. But I think this should be enough. Thank you. 1001100 1110101 1101011 1100101
  5. EnCocytus

    wrapper classes?

    I am currently writing a client/server dll, and what I want to do is be able to send anything over the connection. Such as files, objects, or simple text. Is there a master class that all other data classes are derived from? The closest thing I could find was CObject, but I don't think it...
  6. EnCocytus

    winsock and pictures

    An intersesting idea. I definitely need a 100% tcp/ip transfer. However, i never thought of recieving the data as a byte array, and trying to force it into a picture type. (An idea i got from reading your post). One quick question though, what is Inet1 declared as. It's not a winsock is it...
  7. EnCocytus

    winsock and pictures

    I'm trying to figure out a way to send pictures (not necessarly files, but like an stdPicture) over a simple tcp winsock connection. I can't seem to find anything, neither code nor tutorials. I've searched the forums, and haven't found a direct answer to this question. I 've also looked at...
  8. EnCocytus

    Random File Selection

    No need to get touchy vb5prgrmr, i'll admit I'm not a vb savant, being that I don't have any help files to reference (besides online that is). Just trying to do my share in helping out. I never said that my code was the definitive way of doing it.... just a quick solution. As far as using...
  9. EnCocytus

    Random File Selection

    looks like vb5prgrmr beat me to it.... oh well Happy Trails 1001100 1110101 1101011 1100101
  10. EnCocytus

    Random File Selection

    for a quick and easy solution you could always do somethng like.... [code] Dim number As Double Dim filler As String, filename As String filler = &quot;0&quot; number = Rnd() Do While ((number * 100) > 50) number = Rnd() Loop number = number * 100...
  11. EnCocytus

    Problems with Data controls

    Nevermind, I think I figured out what was wrong. I never defined a record source (oh man, what a day). Anyways, it works now. I am still interested in a good tutorial on ADO controls if anyone knows of one of the top of their heads. Thanks 1001100 1110101 1101011 1100101
  12. EnCocytus

    change backcolor for one cell in grid

    If you are using MSFlexGrid, you can just change the grid pointers to the cell you want to change the color of and use cellBackColor. For example, MSFLexGrid.row = 0 MSFLexGrid.col = 0 MSFlexGrid.CellBackColor = 14603939 This will change the first cell to a light blue background 1001100...
  13. EnCocytus

    Problems with Data controls

    I've been trying to straighten this bug for a couple days now, and I can't figure out what is wrong. It's probably something simply. What I've been trying to do is have a Data control named tempData that will open an Access database file I've created earlier in the program. And add some records...
  14. EnCocytus

    Scandisk Problems

    When I use scandisk while in windows, it says that there might be surface errors, and starts a thorough scan. When it finishes, it declares there were no problems. So, the scan is completing in Win. But not on boot. I think jsauce's advice will work great for the boot up problem. Thanx...
  15. EnCocytus

    Scandisk Problems

    I have an old HP 450mhz 128 mb pc, running 98 se. I turned it on the other week, and got the 'OS not found error'. I attatched the HD to another PC as a slave to see if it was a bad HD or another problem. Whenever I tried to access the old hd, my newer system crashed. So I put a brand new WD...
  16. EnCocytus

    What the hel_l_ is buffer?

    The dishwasher actually works great for those old 3.5 floppy drives that get really dirty. You need to take the covers off though, and I've always done it without soap. Last thing you need is some soap scum on your drive. And it takes a couple of days to dry. 1001100 1110101 1101011 1100101
  17. EnCocytus

    There has got to be a better way

    I have on average around twenty to thirty files, all of which have headers which I use to populate a dynamic array of head_of_file. What I need to do is check to make sure if all totalNum’s are the same, and if not, display a message. And check to make sure the num variables are complete and...
  18. EnCocytus

    And Gates

    Hey, thanks for the help everyone. I have enough information to get started. Turns out I will just have to use relays. 1001100 1110101 1101011 1100101
  19. EnCocytus

    And Gates

    Wow, thank you soooo much. One last question. It would really simplify my logic if there was such thing as 110vac NAND gates. This is my first time ever trying to create my own circuitry, so Thanx 1001100 1110101 1101011 1100101
  20. EnCocytus

    And Gates

    I know this is question is a little off for this forum, but this forum was the closest thing I could find that would match my question. I have been searching the net, and can't seem to find a site that sells simple gates. All I'm looking for are And, XOR, and Not gates. Anybody know where I...

Part and Inventory Search

Back
Top