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

Search:

Type: Posts; User: Tamerocyte

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: (How) can a mobile app access the phone's memory (wallpapers, ringtones, etc.)?

    Check out this link for some assistance.
    http://www.codeproject.com/ce/MbPocketOBEX.asp

    Good luck
  2. Replies
    1
    Views
    2,509

    Re: Smartphone Issue

    There are several examples in the windows mobile SDK.
  3. Replies
    0
    Views
    1,485

    M5000 RF comms

    Hello all,

    I have recently purchased the SPV M5000 smartphone with Windows mobile 5.0.

    I was wondering whether I would be able to program it so as to transmit the audio signal via RF to my car...
  4. Thread: Isp

    by Tamerocyte
    Replies
    1
    Views
    558

    Isp

    Hello all,

    I am trying to write a program in VC++ 6.0 to help me trade shares and keep up to date with stock prices. I don't know how I can acquire these details, although I do know many websites...
  5. Replies
    2
    Views
    513

    Re: API for Office programs?

    You need to read about MS Office Automation.

    I have worked on this before, its not the funnest job, but once you get one function call running the rest are very similar.

    check this link out for...
  6. Replies
    3
    Views
    12,988

    Re: Autorun.inf for MAC?

    Much obliged Victor.

    That should definitely help me out.
  7. Replies
    3
    Views
    12,988

    Autorun.inf for MAC?

    Hi all,

    I would like to create a platform independent CD (actually only MAC OS and Windows) that will automatically start a html file when it is inserted in the CD drive...assuming the flag in the...
  8. Replies
    7
    Views
    1,779

    LPSYSTEMTIME lpSystemTime = NULL; ...

    LPSYSTEMTIME lpSystemTime = NULL;
    if(!SetCurrentDirectory(szDir))
    {
    sprintf(g_szErrorString, "Invalid trail file directory name %s - ", szDir);
    return -1;
    }
    ...
  9. Replies
    6
    Views
    1,880

    strsException

    strsException << "Could not get version information (Windows error: " << ::GetLastError() >> ")";

    I think there was a typing error there,

    strsException << "Could not get version information...
  10. Thread: Memory...

    by Tamerocyte
    Replies
    10
    Views
    1,471

    Sorry, after a few more tests I found out it was...

    Sorry, after a few more tests I found out it was more like

    Debug 6MB
    Release 4MB

    still cool though!
    :)
  11. Thread: Memory...

    by Tamerocyte
    Replies
    10
    Views
    1,471

    I measured the memory usage using my debug...

    I measured the memory usage using my debug version, after reading your comments I measured it using the release version:
    Debug: 6MB and at peak more
    Release: 3MB at peak!!!!
    Cool stuff
    reg
  12. Replies
    6
    Views
    1,880

    Thank you You reply is very useful :wave:

    Thank you
    You reply is very useful

    :wave:
  13. Replies
    6
    Views
    1,880

    How do I get my App's version info

    Hi all,

    I have developed an application with MS VC++ 6.0
    I have set the version resource and want to know how to acquire this version info in my application so I can display it in a dialog. Is...
  14. Thread: Memory...

    by Tamerocyte
    Replies
    10
    Views
    1,471

    Memory...

    Hi all,

    I was testing out my application and realised that it uses around 6.0 MB of memory. Is this not a lot???

    I could reduce the memory required, but this will only reduce the speed of the...
  15. Thread: VB vs VC++

    by Tamerocyte
    Replies
    5
    Views
    1,100

    if that is the case, then it makes sense Its...

    if that is the case, then it makes sense

    Its the only logical explanation

    Cheers
  16. Thread: VB vs VC++

    by Tamerocyte
    Replies
    5
    Views
    1,100

    I am comparing performance The performance of...

    I am comparing performance

    The performance of the VB version i far better.

    I don't understand it at all
  17. It works fine for me, u can additionally include...

    It works fine for me, u can additionally include subject etc...

    thank
  18. Thread: VB vs VC++

    by Tamerocyte
    Replies
    5
    Views
    1,100

    VB vs VC++

    Hi all,

    C++ is more efficient and faster than VB, right?

    well as I was developing an app, I learned that VB can do things a lot faster than VC++, like Ms word Automation!!!

    I wrote an app...
  19. Thread: Parsing

    by Tamerocyte
    Replies
    13
    Views
    1,990

    There is no problem with strstr. The trick is...

    There is no problem with strstr.

    The trick is to actually get the character position from return
    here from msdn:


    printf( "String to be searched:\n %s\n", string );
    printf( " %s\n ...
  20. Replies
    2
    Views
    767

    That results in two square symbols :cry: but...

    That results in two square symbols :cry:

    but i found a solution :cool:

    I used the vertical scroll character from the ASCII chart, it works!
  21. Replies
    2
    Views
    767

    New line character in MS Word

    Hi all

    I am trying to populate a word document from VC++
    Problem is for my CRLF (carriage return lin feed) i get squares. How do I introduce a new line character instead? :confused:

    Any...
  22. Replies
    2
    Views
    812

    Well, I am not using any control. I am reading a...

    Well, I am not using any control. I am reading a massive ASCII text file and detecting loads of email addresses and their respective messages. All are in plain text.
  23. Replies
    2
    Views
    812

    Delivery notification with SMTP

    I am struggling getting my SMTP server to send me back the emails that are not delivered to the specified address. Does anyone know how this may be achieved?

    Also, I am trying to set the text sent...
  24. Replies
    7
    Views
    1,052

    Would you like me to post my code?

    Would you like me to post my code?
  25. Replies
    15
    Views
    2,058

    The optimal solution I found for this case was...

    The optimal solution I found for this case was Idle processing.

    All I did is create a short function which I call from my long loops every now and then. Problem was solved, thanks for all those...
Results 1 to 25 of 90
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured