2
votes
2answers
88 views
[C/C++] somehow register my classes in a list
Hi,
I would like to be able to register my classes within a std::map or a vector, don't think about duplicates and such for now.
but I don't want to register it within the class c …
0
votes
3answers
86 views
Linux assembly woes
Is there really no way to print an ascii string in assembly to standard output without using up all four general purpose registers?
3
votes
3answers
81 views
Fast in-register sort of bytes?
Given a register of 4 bytes (or 16 for SIMD), there has to be an efficient way to sort the bytes in-register with a few instructions.
Thanks in advance.
0
votes
3answers
54 views
How to show Confirm Dialog under Vista with C#?
I need to set a register key in vista but if I use the commands without running as Administrator it throws an exception. How do I show the confirmation dialog, then?
0
votes
1answer
93 views
Unable to register VB ocx components (err 0x80040201)
Hi,
I have a problem trying to register some ocx files.
When I execute regsvr32, it returns 0x80040201 error code. I'm using win xp SP3 and my user has administrator permissions. …
-1
votes
2answers
56 views
Is there an example of django register? [closed]
please show me a django register code include the template
thanks!
7
votes
6answers
392 views
Address of register variable
In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept …
0
votes
2answers
37 views
Register identical views with different services using Composite Application Library
I'm using the Composite Application Library with Silverlight, and I need to add three "zones" to my region. These "zones" all have essentially the same view and presentation model …
0
votes
0answers
34 views
Disable L1 instruction cache [closed]
Possible Duplicate:
Disable L2/L1 caches
Hi everybody,
I am looking for a way to disable the L1 instruction cache of my Core 2 Duo processor,
does anybody knows how/if i …
10
votes
5answers
488 views
Why are x86 registers named the way they are?
For example, the accumulator is named EAX and, while the instruction pointer is called IP. I also know that there are bytes called CL and DH. I know there must be a convention to …
4
votes
4answers
513 views
Hook a javascript event to page load
I have an aspx that has the following javascript function being ran during the onload event of the body.
<body onload="startClock();">
However, I'm setting the aspx up to …
1
vote
3answers
49 views
What is the best way to register existing Windows service in .NET?
I need to register an existing third-party executable (database engine) Windows service from a .NET application. Is there a better way than writing to the registry?
0
votes
5answers
869 views
batch file which asks for username/password + registration
I would like a batch file that can register a user into itself.
something like:
@echo off
echo Choose an option:
echo 1:Register
echo 2:Login
Set option=
set /p option=You …
-1
votes
3answers
337 views
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)
int main(int argc, char ** argv)
{
int i = 0;
i = i++ + ++i;
printf("%d\n", i); // 3
i = 1;
i = (i++);
printf("%d\n", i); // 2 Should be 1, no ?
volatile in …
0
votes
0answers
44 views
Registering org.gjt.mm.mysql.Driver
When I connect to mysql in my localhost, everything is OK.
but when i move the whole project to another computer in the intranet and set the correct IP.
the project can't connect t …
