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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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?
  16. masterlodi

    Installation on Win Server 2003

    Yes I did! I have now removed it all and did a fresh install using the CGI mode. It now works!
  17. masterlodi

    Installation on Win Server 2003

    I'm trying to install php 5.1.1 on Windows Server 2003. I've installed it as an ASAPI module. Whenever I visit a php page on my server, I get [HTTP Error 401.3 - Unauthorized: Access is denied due to an ACL set on the requested resource.] I've enabled anonymous access and granted correct...
  18. masterlodi

    SSH

    Thanks for youe help drew1701d, How do I enable port 22 forwarding on my firewall?
  19. masterlodi

    SSH

    How do I enable SSH on Windows Server 2003?
  20. masterlodi

    FTP listing denied

    I've just got a Windows 2003 Server. I have opened the FTP ports. I can connect succesfully with MSDOS FTP command. If I use any kind of Windows program such as FileZilla or CuteFTP, then I can log in but it dies at the "LIST" command. What's wrong?

Part and Inventory Search

Back
Top