Search:

Type: Posts; User: Deviance

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    3,643

    I've done so. I was able to type it but the...

    I've done so. I was able to type it but the program still didn't print anything. I'm telling you there is a different problem. But i don't want to upset anybody. I'll see what i can do myself.
  2. Replies
    12
    Views
    3,643

    I can't! I can't type nor paste "Ş" in the editor...

    I can't! I can't type nor paste "Ş" in the editor window (Dev-c++4). It pastes "S," :confused: So what now? p.s. i am not using base eight numbers. should i? :confused:
  3. Replies
    12
    Views
    3,643

    I doesn't work. What i'm trying to do is print...

    I doesn't work. What i'm trying to do is print "Ş" (which is 350 in windows character map) on the screen. So what must i write? :confused: (i noticed that wprintf(L"%lc",350) doesn't work.)
  4. Replies
    12
    Views
    3,643

    i've noticed this: wprintf(L"This is not...

    i've noticed this:

    wprintf(L"This is not working: ->%lc<- ",301);
    wprintf(L"This is working: ->%lc<- ",201);
    The not working wprintf prints: "This is not working: ->", but not the 301...
  5. Replies
    12
    Views
    3,643

    Hmm :D I seem to have figured it: ...

    Hmm :D I seem to have figured it:

    wprintf(L"%ls",c);

    wprintf(L"%ls",mystring);
  6. Replies
    12
    Views
    3,643

    It still doesn't work. But i've just come across...

    It still doesn't work. But i've just come across #include <wchar.h>
    in win32sdk helpfile. This code seems to work:


    #define _UNICODE
    #include <wchar.h>
    #include <tchar.h>

    int main() {...
  7. Replies
    12
    Views
    3,643

    Simple unicode example not working

    If i try to execute this code:


    #define _UNICODE
    #include <tchar.h>
    #include <stdlib.h>


    int main() {
  8. Success

    Thank you, thank you , thank you. It does work :D
  9. I'm still having trouble. I've modified the code...

    I'm still having trouble. I've modified the code above a little , because it was giving compiler errors. I read in WIN32SDK.HLP that Playsound is "related" to winmm.dll and mmsystem.h so i included...
  10. Thank you for your help. For the moment i am...

    Thank you for your help. For the moment i am using the C-free IDE. Can you tell me more precisely how to link with the dll; where do i type -lwinmm? By the way, is C-free good in your opinion? Should...
  11. How to handle a wav files in C? (not C++ or other)

    :rolleyes: Hello. I am fairly new to windows programing. I only have basic knowledge in C programming. I want to make an aplication that uses sounds (wav files to be more exact).I would like to know...
Results 1 to 11 of 11