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

Search:

Type: Posts; User: straygrey

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    1,512

    Cross platform development

    I have heard a rumour that it is possible to create apps for smart phones using only HTML5, CSS3 & JavaScript.
    Up till now I have used PhoneGap to make my programs cross platform compatible, but I...
  2. Replies
    2
    Views
    67,443

    HTML & Ajax not working as expected

    Please tell me why the following html does not call the javascript submit_click() function.


    <!DOCTYPE html>
    <html>
    <head>
    <title>Page Title</title>
    <meta name="viewport"...
  3. Replies
    7
    Views
    2,698

    Re: A graphic odometer

    My mistake. I will be using .png but during development am using what I have, namely .gif
  4. Replies
    7
    Views
    2,698

    Re: A graphic odometer

    Have a look at http://www.k9t.za.net/odometer/ for a better idea.
  5. Replies
    7
    Views
    2,698

    Re: A graphic odometer

    I understand innerHTML instead of innerHtml, thanks.
    If I uncomment the alert after creating image value it displays exactly whats needed.
  6. Replies
    7
    Views
    2,698

    A graphic odometer

    I have the following code which works fine until I try and display graphics.
    Please tell me how I could/should display the odometer in graphics format rather than text.
    I have all the necessary...
  7. Replies
    1
    Views
    4,193

    magnetic stripe reader

    I need to produce a program that would process/read a magnetic stripe card within a windows kiosk environment and would prefer doing this in C or C++.
    Could someone suggest pointers/recommendations...
  8. Replies
    3
    Views
    1,215

    Re: Renaming file in C++ failing

    Name files as arrays not pointers.
  9. Replies
    3
    Views
    1,215

    Renaming file in C++ failing

    I have a C++ program running on Windows XP compiled with Visual C++ 6.0 containing the following code


    if (remove(NewName) != 0)
    {
    errmsg = strerror(errno);
    printf("Removal Error: %s\n",...
  10. Replies
    7
    Views
    1,315

    Need to add pause to existing C++ program

    I have been asked to add a pause to an existing C++ program.
    The user does not want to use the Windows builtin scheduler for reasons they won't share with me.
    Is the correct way of doing this...
  11. Replies
    4
    Views
    1,471

    Text to speech on Windows

    Would it be possible to write a C or C++ application that would call the Microsoft Speech application passing it a text string that the Speech application would convert to sound and "speak" that...
  12. Replies
    11
    Views
    2,840

    Re: C1004: unexpected end of file found

    Could either of adding support for CLR in the project properties or setting charset to myltibytes instead of unicode be the cause of my problem.
    If so please tell me how do I set them.
  13. Replies
    11
    Views
    2,840

    Re: C1004: unexpected end of file found

    As I said in my previous message I have cut my code down to


    int _tmain()
    {
    return EXIT_SUCCESS;
    }

    and I still get the same error message.
  14. Replies
    11
    Views
    2,840

    Re: C1004: unexpected end of file found

    The code now looks like


    #using <mscorlib.dll>
    using namespace System;
    int _tmain()
    {
    return EXIT_SUCCESS;
    }
  15. Replies
    11
    Views
    2,840

    Re: C1004: unexpected end of file found

    I deleted everything up to and including the last brace and then replaced said last brace and still get the same error message. I have also edited the source in both other editors in the Windows...
  16. Replies
    11
    Views
    2,840

    Re: C1004: unexpected end of file found

    Thanks for the suggestion, Moschops, but that did not change anything. I still get the C1004 error message.
  17. Replies
    11
    Views
    2,840

    C1004: unexpected end of file found

    I am attempting to get my old brain around Visual Studio .Net and have produced the following code but cannot get it to build. .Net returns C1004: unexpected end of file found.



    #include...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured