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 wOOdy-Soft 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 masterlodi

  1. masterlodi

    AssemblyVersionAttribute returns String::Empty

    Why does the AssemblyTitleAttribute and AssemblyCopyrightAttribute return the correct values but AssemblyVersionAttribute always returns an empty string? I've specified the version in the assembly! Assembly^ assy; try { assy = Assembly::LoadFile(gcnew String(lpFilename)); } catch(...
  2. masterlodi

    _wcsicmp deprecated?

    I'm getting a warning that _wcsicmp is deprecated and to use __wcsicmp. __wcsicmp doesn't seem to defined ANYWHERE?
  3. masterlodi

    Lightweight Win32 applications in VS2K5

    What is the best way to create fast, lightweight applications in Visual Studio 2005. I meanm, are Windows Forms as slow as MFC? Are ATL/COM applications still the smallest and fastest?
  4. masterlodi

    DC and bitmaps

    I have a window that I wish to save as bitmap. How do I copy the contents of the DC into a bitmap?
  5. masterlodi

    Writing binary data

    I'm sorry there has been some confusion here - I am not not writing to a text file, I am writing integers as binary data. float fVal; UCHAR uFileImage[964]; memcpy(&fVal, uFileImage + fOffset, sizeof(float)); This code fragment solves my problem. Thanks everyone.
  6. masterlodi

    Writing binary data

    The file I am writing to as a binary file, not a text file.
  7. masterlodi

    Writing binary data

    I currently have a UCHAR array that I'm 'sprintf'ing too. I'm then writing the array to a newly created file!
  8. masterlodi

    Writing binary data

    Due to the nature of the program, I'm writing this to a buffer first and then using WriteFile, so I can't use this method. I'm using VS 2005.
  9. masterlodi

    Writing binary data

    I need to write data to a binary file. Integers and strings I'm fine with. But how can I write a float as binary data?
  10. masterlodi

    Greek in CEdit controls

    I am adding the content programatically. The text is being loaded from a unicode text file!
  11. masterlodi

    Greek in CEdit controls

    I need to display Greek and English characters in a different CEdits placed on a dialog. How can I do this?
  12. masterlodi

    D-LINK DSL-G624T and dynamic DNS

    I've turned on port forwarding for "Web Server".
  13. masterlodi

    D-LINK DSL-G624T and dynamic DNS

    I've got a D-LINK DSL-G624T. I've pointed my DDNS at my IP but when I go to my DDNS domain name, I am asked by the router for username/password and it leads to the admin page. How can I route the domain name to the correct place?
  14. masterlodi

    Layer visibilty hides background image

    I'm hiding layers with document.getElementById( id ).style.visibility="hidden"; but when I show them again using document.getElementById( id ).style.visibility="visible"; the background image for that layer has disappeared! The content remains apart from the background-image? This seems...
  15. masterlodi

    C only compiler

    Is it possible to set MS Visual Studio for C only. No C++, no libs. Just a pure C compiler?

Part and Inventory Search

Back
Top