Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ceodav

  1. ceodav

    OCX in Visual C#

    Hi, i want to write an OCX using Visual C# 2005. I'm new to C# but i know well the C++. I started a new project and choosen Window Control Library. Ok i need to display data contained in a structure passed by a memeber function son in C++. But i'm stucked on three problems. 1)how to import...
  2. ceodav

    XML and visual C++ (2005)

    another thing, do you know where i can found free xml class for reading and saving information from/to an xml file? thanks
  3. ceodav

    XML and visual C++ (2005)

    thanks i will try it!
  4. ceodav

    XML and visual C++ (2005)

    Hi all, is it possible to read an xml file from a VC++ project in VS2005? or i need to find some library somewhere? into MSDN i found the possibility to do it from VB and VC# but not from VC++. thanks Davide
  5. ceodav

    export function name for DLL

    ok solved, if i use a class the name exported are strange, if i use extern "C" and the functions outside the class it is ok. i wonder why, anyway bye Davide
  6. ceodav

    export function name for DLL

    Hello, i started a DLL project (my first) in VC++8. Visual studio added autoamtically a class whose publi methods should have been exported. Actually that is true i can see the exported function using dumpbin but they have very strange name like ?Setup@CTG_ACQ@@QAEK. I know this is the name...
  7. ceodav

    mouse enter and leave

    I found the solution... in mouse move event i check if the mouse is inside my picture control with PtInRect function something like this RECT rcL; CWnd *wL=GetDlgItem(IDC_PICTURE_LEFT); ::GetWindowRect(wL->m_hWnd, &rcL); if(PtInRect(&rcL,pt)) {...
  8. ceodav

    mouse enter and leave

    Hi all i have two picture controls in my application and i want to know when the mouse pass over one or the other, using the mouse move function? any suggestion will be very appreciated thanks Davide
  9. ceodav

    multilanguage menu

    hi all in a multilanguage application (visualc++ 6) how it is possble to change the menu language without restart it? when i select a different language i can change everything in the dialog without restarting it but not for the menu. And inside the menu i change the submenu but i'm not able...
  10. ceodav

    3 state button

    in fact i found in the radio button the property push-like. thanks bye
  11. ceodav

    unicode

    thanks, but sizeof (str)/sizeof (str[0]) it's only for char variable right? or even for structure which contains TCHAR? during fwrite for example Davide
  12. ceodav

    unicode

    hi, i started to convert an application toward a multilanguage application by using string tables. i insert some different languages and it works fine, but i don't know how to deal the char variables inside the code. 1) is it right to change all the char definistions into TCHAR? 2) is it right...
  13. ceodav

    3 state button

    Hi, i need ad advice... i'm building a dialog which contains 3 buttons (with an icon), i want to use these as radio button, when i click on the first it stays pressed and the other two are in normal position, when i click on the second, it stay pressed and the first and third stay up, exactly...
  14. ceodav

    Tab Control

    thanks but i found this interesting tutorial that matchs exactly what i was looking for. www.codersource.net/mfc_ctabctrl.html i hope could help someone else. bye
  15. ceodav

    Tab Control

    Hi, i want to use in a dialog (VC++ 6) a Tab Control eith 3 tabs. Each of these must incluse a lot of CEdit to set the parameters...but i've never used the tab control and i don't know where starting. I found examples in internet but most of them have property classes writtne by the authors...

Part and Inventory Search

Back
Top