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

Search:

Type: Posts; User: Dj_Saturn

Search: Search took 0.16 seconds.

  1. Replies
    0
    Views
    421

    need a lib, for musical tones/octaves

    does any one know of a library that can compare line in input or even a .wav or etc
    and give a tone

    like if i were to strum a guitar and then the result could be "E" or any pitch accordingly.
    ...
  2. Replies
    0
    Views
    573

    looking for a library

    I need a library that can compare Musical Scales from a line in, or at least from a .wav or etc...

    or if anyone has any suggestions to get around this let me know

    thanks.
  3. Replies
    6
    Views
    2,352

    Re: Customize Font Dialog

    im not sure if you could customize it in that way, however,

    check out the ColorDialog Properties MSDN and you can see exactly how it works...
    ...
  4. Replies
    6
    Views
    2,352

    Re: Customize Font Dialog

    fontDialog->ShowEffects = false;
    fontDialog->ShowHelp = false;

    try that

    *oh and replace the name of fontdialog with the name of your actual font dialog.
    = )
  5. Re: no bugs but cannot compile linkedstack please help fixed Thanks

    in addition to what everyone else says,

    make sure you program isnt already running.

    would also cause errors when compiling.
  6. Replies
    2
    Views
    1,263

    Re: pop up a tooltip

    unless you want me to put an html placeholder box in my program, that would not work.

    c++ please =)
  7. Replies
    2
    Views
    1,263

    pop up a tooltip

    Theres No compiler Errors,

    what I want to do is when the mouse is hovered over a disabled trackbar is to pop up a certain tooltip.

    heres the code i have.



    private: System::Void...
  8. Replies
    4
    Views
    7,951

    Re: manipulate system::string / string^

    That definitely helped


    status->Text = OpenedFileName->Substring(OpenedFileName->LastIndexOf('\\')+1);

    this is how it was implemented.

    Thanks!!!
  9. Replies
    4
    Views
    7,951

    manipulate system::string / string^ [resolved]

    Ok,

    i get the path of a file from an openfiledialog and assign it to string^ path.

    so the string may contain for example...: c:/folder/example.mp3

    from my knowledge you cannot manipulate a...
  10. Replies
    2
    Views
    1,655

    Re: managed+unmanaged visual c++

    well id say i started making windows apps with visual C++ 2005 then moved on to 2008 all my apps were net 2.0 and higher
  11. Replies
    2
    Views
    1,655

    managed+unmanaged visual c++

    well ive been practicing with mostly un-managed variable types in a managed form windows type project application and its very challenging, well for me at least. Theres always a new problem around...
  12. Replies
    3
    Views
    5,859

    Re: string^ to char *please help to convert

    Success thank you.
  13. Replies
    3
    Views
    5,859

    string^ to char *please help to convert [Resolved]

    basically i need to convert a string^ type to a char * type ive been searching and have not really found a way,

    if anyone point me in the right direction it would be most appreciated.
  14. Replies
    3
    Views
    1,295

    program only works on my own computer...

    Ok i posted up version one of my program for testing on a website and i have gotten comments back that it didnt work. Ive tested it out on 3 of my computers at home and it only works on the one with...
  15. Replies
    2
    Views
    1,337

    Re: possible linker error with pwr mngment?

    i put it in a seperate header like this!

    "SleepHead.h"


    #pragma once
    #include <windows.h>
    #include <Powrprof.h>
    using namespace System::Windows;
  16. Replies
    2
    Views
    770

    Re: possible linker error with pwr mngment?

    roger that.

    if i could only delete my thread.
  17. Replies
    2
    Views
    1,337

    possible linker error with pwr mngment? [resolved]

    well heres the short version of my problem.

    This...


    BOOLEAN WINAPI SetSuspendState(
    __in BOOLEAN Hibernate,
    __in BOOLEAN ForceCritical,
    __in BOOLEAN DisableWakeEvent
    );
  18. Replies
    3
    Views
    1,279

    Re: how to close console screen

    If you dont send anything to the console then it shouldnt show up enough time for you to notice it.

    so dont use any cout's or system("pause") 's

    alternatively,

    start a windows forms project...
  19. Replies
    2
    Views
    770

    possible linker error with pwr mngment?

    well heres the short version of my problem.

    This...


    BOOLEAN WINAPI SetSuspendState(
    __in BOOLEAN Hibernate,
    __in BOOLEAN ForceCritical,
    __in BOOLEAN DisableWakeEvent
    );
Results 1 to 19 of 19





Click Here to Expand Forum to Full Width

Featured