Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~2K People Reached

6 Posted Topics

Member Avatar for hqt

It's because you never store any values so they don't have locations in the memory. Assign a value to each of the integers and then you should be able to get their address locations. Also, you should post the error it hits on line 14, is it an access violation …

Member Avatar for hqt
0
641
Member Avatar for sergent

CentOS is probably the most common actually. [I](For servers)[/I] It's basically a free version of RedHat Enterprise Linux. [I](Meaning you'll have to learn to use a RHEL distro)[/I]

Member Avatar for blackcathacker
0
165
Member Avatar for Jennifer84

Do this: If you insist on using C [CODE] char* result; int num = 24; sprintf( result, "%d", num ); std::string str(result); [/CODE] Do this if you want to use C++ [CODE]int someint = 24; std::stringstream strm; std::string num; strm << someint; strm >> num;[/CODE] And avoid ever using itoa. …

Member Avatar for Nowayz
0
650
Member Avatar for lochnessmonster

@sundip int1 All I can think of is knowing which order they occur in the code and removing one and setting another in the exception handler.

Member Avatar for Nowayz
0
124
Member Avatar for sfp

If you select your box in the Design mode, it will bring up a list of properties on the left side of your screen. Scroll through this list and find a value called Text, this will change the default value of that textbox.

Member Avatar for FlamingClaw
0
91
Member Avatar for Nowayz

Was recently asked to convert some code, but I have a minimalistic ammount of knowledge of delphi and I wasn't able to convert this code. If you could help me out it would be great. [code=c++] void TypeStr(char *lpszString) { char cChar; while((cChar=*lpszString++)) // loops through chars { short vk=VkKeyScan(cChar); …

Member Avatar for Duoas
0
221

The End.