CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: liftthis

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Need help creating an exception for wrong password in decrypt method

    The following code works but I am trying to prevent decrypting a file if you have the wrong key.


    // Example code showing how to use Java's Password-Based encryption. This
    // example is a...
  2. Replies
    1
    Views
    3,506

    parse xml file generated by googlevoice

    Need some help to parse a xml file generated by https://www.google.com/voice/inbox/recent/sms

    The part of the xml file of interest is



    <div class="gc-message-sms-row">

    <span...
  3. need help with circularbuffer warkmark level

    I am treating a circular buffer like a buffer.

    I have a situation that can occur in my design. I could receive 384 bytes into the circular buffer, and I only read 48 bytes. I don't want to keep...
  4. how to add copy contructor to this class since the construtor has a void

    class Utils {

    public:

    // Constructor
    Utils(void);

    // copy Constructor
    Utils(const Utils &src);
  5. Replies
    2
    Views
    725

    Trying to append crc to test data.

    I am having trouble trying to get the CRC append to the test data, and print out the data with the appended crc.




    #include <stdio.h>
    #include <string.h>

    #include "crc.h"
  6. Re: need a little help with linking error for CRC

    I am having trouble trying to get the CRC append to the test data, and print out the data with the appended crc.


    #include <stdio.h>
    #include <string.h>

    #include "crc.h"

    static unsigned...
  7. Re: need a little help with linking error for CRC

    Thanks that helped. How do know if the CRC generated is correct?
  8. Re: need a little help with linking error for CRC

    Yes I did with and without the #pragma once and still have a problem
  9. Re: need a little help with linking error for CRC

    Still need to address the error link2005: _crcTable already defined in crc.obj,

    I can't see it.
  10. Replies
    2
    Views
    1,916

    Re: looking for sample code for 16/32bit CRC

    thanks
  11. need a little help with linking error for CRC

    I need some help with compiler error.
    error link2005: _crcTable already defined in crc.obj


    I attach the zip file below:
  12. Replies
    2
    Views
    1,916

    looking for sample code for 16/32bit CRC

    I know there are samples of code that deal with the topic I am asking for but, I am looking for one that will handle stream of bytes (networking CRC's) for C++ project. I will use the 32bit CRC on...
  13. how to use shellExecute to open an html file

    I need help prototyping how to use this function.


    ShellExecute(0,"open","C:\StrengthCoach\training_output\test.html","","",SW_SHOWNORMAL);
  14. system32\cmd.exe taking too long to load file

    I am using the system(START Outputfile);
    command in my program to display the outputfile to the screen and it is taking about 1 minute to be displayed. I would like to know what could be causing...
  15. Re: how to display results in another html window

    I am confused. with your answer. I come from the C and C++ work were I can print out my variables to a file.

    I thought I could put some code in the print function to display what was inputed in...
  16. how to display results in another html window

    I am trying to display information from my text boxes to another html window (pop up). using the print button. Does anybody have examples for this.

    Attached code





    <HTML>
    <head>
  17. Replies
    7
    Views
    950

    Re: need help adding values in a javascript

    I have made some enhancements and need to know how to use values in the sex pull down menu on the calculate function.

    Thanks in advance





    <HTML>
    <head>
  18. Replies
    7
    Views
    950

    Re: need help adding values in a javascript

    I can't see the sample code
  19. Replies
    7
    Views
    950

    Re: need help adding values in a javascript

    I am looking for sample code that I can hack and understand.
  20. Replies
    7
    Views
    950

    need help adding values in a javascript

    I am trying to add up the best snatch and best cj and place the total in total cell. I am new to java script and If anybody has some examples how to do this I would appreciated it.

    here is the...
  21. Replies
    5
    Views
    870

    Re: need help to passing string in function

    Thank You. I learn so much from you.
  22. Replies
    5
    Views
    870

    Re: need help to passing string in function

    I am trying to close a file using a function I created called closeFile

    I tried to pass in filedir but it did not work. I tried the code below and it does not work. Can somebody help me here. ...
  23. Replies
    5
    Views
    870

    need help to passing string in function

    I am trying to pass a string called fildir in a function closeFile(filedir)

    I have provided the header file and cpp file. I am new to classes I need some help passing a string
    ...
  24. Replies
    11
    Views
    1,324

    Re: need help with search and replace function

    another other problem: I used to use the following commented code.



    // char systemcall[ ] = "START C:/training_output/";

    // char text[255];


    // ...
  25. Replies
    11
    Views
    1,324

    Re: need help with search and replace function

    I got the prototype working using the getline, but I tried to intergrate to the logic below.

    Now I get the following errors.
    Can some help with these errors.

    error C2872: 'ofstream' :...
Results 1 to 25 of 32
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured