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.
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...
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?
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.
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?
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.
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...
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.
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...
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>...
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&...
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...
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...
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...
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)...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.