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 strongm 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. hvytas

    Why Microsoft VC++ 8 compiller is slow?..

    Thank's for quick answer. Hmmm very interesting, I used Wizard to create console project no CLR, maybe using wizard CLR activated automaticly, if no why so slow.
  2. hvytas

    Why Microsoft VC++ 8 compiller is slow?..

    Hello, I trying understand why Microsoft Visual C++ 8.0 (from VS 2005) works very slow, 2 times slower then previuos version 7.1, this I found when done studies works and write simple matrix and vector camputations with and without inline ASM, results was very strange. VC++ 8.0 code runs 2...
  3. hvytas

    It's possible to send to client encoded HTML file using ISAPI?

    Hello, I trying to send to client encoded html and others files that run user from web, that user can see normall website, but source was encoded, any ideas to do this?
  4. hvytas

    How to get ASP code from ISAPI filter using READ_RAW_DATA?

    Hello, I tryed to get ASP data or other html data from ISAPI filter but I don't find how, maybe any examples on that? P.S. Maybe possible only get from file then I know a file link.
  5. hvytas

    How to use with XP themes not system buttons?

    Thank's for answer.
  6. hvytas

    How to use with XP themes not system buttons?

    Hello, I trying to use not system buttons with XP themes, becouse this not displayed icon's in buttons, so the problem is how to display icons like done in properties FlatStyle using Standart button, I can't find the way, maybe somebody know how to do - without creating new control?
  7. hvytas

    Creating Silent Installer

    The MSI created with VS.NET is very poor, If you want to add more power to installer so use InnoSetup, it's freeware and the best installer for Win-32 and Win-64 (working) OS.
  8. hvytas

    Problem installing VB.NET std on WIN XP Home

    If you can't install VB.NET or other VS.NET on WinXP Home OS so you can try to download manualy .NET Framework SDK it's about 100MB and install it, becouse then I see I don't find on VS.NET 2003 DVD that this included for manually installing... After that if successfully installed .NET...
  9. hvytas

    Microsoft Debugger starts running, but I don't want that

    IF I understand the question, the problem you can solve in VS.NET meniu "Build>Configuration Manager" set configuration for Release and not run Debugger in Debug mode.
  10. hvytas

    Mid(), Left(), InStr() and other functions like in VB?

    Fine, this is std edition:] If somebody know how to write shorter add to this thread. int CGlobal::InStrRev(string str, string what) { // int InStrRev(start-1, str, what) return str.find_last_of(what) + 1; } int CGlobal::InStr(string str, string what, int pos) { // int InStr(start-1...
  11. hvytas

    How to Exit Function in C++?

    Thank's for all, Other way is only possible to use in C++ goto like in VB Goto, so other ways I don't know. If I use this example that I write before, in C++: int demo() { int i; int iTmp; i=1; if (i==0) { iTmp = 0; goto Exit; } iTmp = i; ...<more code here>...
  12. hvytas

    Mid(), Left(), InStr() and other functions like in VB?

    Hello for all C++ programmers, I think we write the fastest and smallest code requare for manipulating with strings like done in VB (Visual Basic). If somebody know how to write other functions that work faster (like with ASM or C++) and use less code, add to this thread. string Mid(string&...
  13. hvytas

    Registry

    Somethimes Admins rights not protected Kernel32.dll for Guest users on Windows, and other way is to use registry by other .dll's but it's more harder to create, I tested some years before it's work for me on WinXP with Guest user if I not protected registry by using it from other system .dll's...
  14. hvytas

    How to Exit Function in C++?

    So if I use return where I want and return different information do the same like do in VB Exit Function? Becouse like in VB for example: Function demo() as Integer Dim i as Integer i=1 If i=0 then demo=0:Exit Function demo=i End Function In C++: int demo() { int i; i=1; if...
  15. hvytas

    How to Exit Function in C++?

    I want exit from any place of function like doing in Visual Basic (VB), for example in VB: Exit Function
  16. hvytas

    How to Exit Function in C++?

    Hello, I want to exit from any place of function that return somthing and I don't want to use If.. for that, any ideas? For example: int demo() { string test; ... <something doing here and exit from function> ... <something doing here and exit from function> ... etc...
  17. hvytas

    How to convert char* or CString to fixed char[] using VC++

    I find this way, but I want to add not like text like string from other place, how to solve this problem, any ideas? This Example work, but I want add string from other way: LPCTSTR lpsz; DWORD dwBytesWritten; lpsz=TEXT("DEMO"); dwBytesWritten = lstrlen (lpsz); pfc->WriteClient (pfc, (PVOID)...
  18. hvytas

    How to write in VB.NET or VC#.NET &quot;please wait..&quot;?

    Hello, I have a problem for creating in VB.NET or VC#.NET waiting dialog window, the problem is that not well working in retail version then I compiled all project and using waiting window, ho know how to solve this problem? I using more data and created simple waiting window in .NET for...
  19. hvytas

    How can I protect Access .mdb file..?

    Hello for all, I want to ask somebody maybe help me: How to protect Access .mdb file for more security? Like for can't open .mdb only from software. (It's better if somebody put examples and would be in VB6, VB.NET or VC#.NET and using MS Access 2000 or 2002-2003 format's) Thank's P.S. I...

Part and Inventory Search

Back
Top