Posts
 
Reputation
Joined
Last Seen
Ranked #961
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
80% Quality Score
Upvotes Received
6
Posts with Upvotes
6
Upvoting Members
5
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
1
2 Commented Posts
~13.6K People Reached
Favorite Forums
Favorite Tags
Member Avatar for os.hacker64
Member Avatar for florisvd

first you should set the internal pull up resistors for the pins you're attaching the buttons to: [CODE] PORTB = 0b11100000; [/CODE] then you can check if button1 is pressed: [CODE] #define button1_pressed !(PINB & 0b10000000) if (button1_pressed) { //do something } [/CODE] for button2 and 3: [CODE] #define button2_pressed …

Member Avatar for florisvd
0
140
Member Avatar for phfilly

[url]http://projecteuler.net/index.php?section=problems[/url] they are kinda tough though :)

Member Avatar for phfilly
0
180
Member Avatar for Federer

[CODE] .data? x dd ? y dd ? z dd ? w dd ? .code start: mov eax, x mul y div z add eax, 14 mov w, eax end start [/CODE]

Member Avatar for low_coder
0
59
Member Avatar for low_coder

hey guys, i need to pass 'this' as the template function parameter.. any help will be appreciated.

Member Avatar for low_coder
0
138
Member Avatar for Lightslei
Member Avatar for low_coder
0
81
Member Avatar for Joey_Brown

if you divide the number by 10, then the remainder will be the last digit from your number. so you can make a loop (till the number becomes 0), in which you will get the last digit using the method above, and then to remove the last digit from the …

Member Avatar for low_coder
0
109
Member Avatar for Kingcoder210

store an integer (number of times opened) somewhere, for example in the registry and at every program startup check if that stored value is less than the total number of times the program is allowed to run. if the value is less, then increment it and run the program, or …

Member Avatar for low_coder
0
230
Member Avatar for networkZombie

for me it works fine, but u have to replace '>' by '>=' in all the while loops so like if u have the change = 100, it will increase hundreds by one..

Member Avatar for networkZombie
0
202
Member Avatar for malayasthana
Member Avatar for notmasteryet

you are inputting the column into a char, and then using it to address the seat! thats wrong.. so u should compare the column input with 'a', 'b', 'c', and 'd'.. if its 'a' then column = 0; if its 'b' then column = 1; // and so on.. [CODE] …

Member Avatar for low_coder
0
267
Member Avatar for low_coder

Hey everyone! I'm writing some program and im using a vector tp hold pointers to objects.. i will create new instances of the objects and my code should automatically destroy each object present in the vector. theres three types of classes stored in the vector : BaseClass, ChildClass1(inherited from BaseClass) …

Member Avatar for low_coder
0
118
Member Avatar for dorien

if i understood you correct then this is the code: [CODE] int x = 300; char out[4]; memcpy(out, &x, sizeof(int)); [/CODE] and then if you want to check if 'out' has the correct data you can do the following check: [CODE] printf("%d\n", MAKELONG(MAKEWORD(out[0], out[1]), MAKEWORD(out[2], out[3]))); [/CODE]

Member Avatar for dorien
0
4K
Member Avatar for y2kshane

hey, you can play mp3 files in your program like this: [CODE] HWND m_Video = MCIWndCreate(hWnd, GetModuleHandle(NULL), WS_CHILD | WS_VISIBLE | MCIWNDF_NOPLAYBAR | MCIWNDF_NOMENU, _T("C:\\123.mp3")); MCIWndPlay(m_Video); [/CODE] and then you should destroy the handle by using MCIWndDestroy: [CODE] MCIWndDestroy(m_Video); [/CODE]

Member Avatar for Stefano Mtangoo
0
152
Member Avatar for low_coder

hey, im making a database program using standard c functions (fopen, fclose...) and i need to read and write data to files quite frequently, so is it better to open (fopen) and close (fclose) the files before and after each operation or open the files at the beginning of the …

Member Avatar for low_coder
0
98
Member Avatar for pdk123

no its not safe it can be any value.. its better to initialize mem_ptr to 0 in the constructor of your class.

Member Avatar for wtf4096
0
145
Member Avatar for annitaz

you can check out this site [URL="http://www.novaroma.org/via_romana/numbers.html"]http://www.novaroma.org/via_romana/numbers.html[/URL] there is a converter on the right it lets you convert between roman and numbers. ypu can view the source of the page and get the algorithm.

Member Avatar for low_coder
0
934
Member Avatar for low_coder

this code was written by me for my projects. all it does is increments by 1 the string which is passed to the function. if you have any improvements to my code ill be glad to hear from you ;)

Member Avatar for low_coder
0
684
Member Avatar for AutoC

; use windows sockets [URL="http://msdn.microsoft.com/en-us/library/ms741394(VS.85).aspx"]http://msdn.microsoft.com/en-us/library/ms741394(VS.85).aspx[/URL]

Member Avatar for AHUazhu
0
196
Member Avatar for dmanw100

; get file size : GetFileSize ; get file creation, last access, last write time : GetFileTime ; set file creation, last access, last write time : SetFileTime

Member Avatar for low_coder
0
135
Member Avatar for SmokyMo

; check out this link: [URL="http://www.madwizard.org/programming/tutorials/mosaic/"]http://www.madwizard.org/programming/tutorials/mosaic/[/URL]

Member Avatar for low_coder
0
148
Member Avatar for sandiego_f

; check out this link: [URL="http://msdn.microsoft.com/en-us/library/aa389273(VS.85).aspx"]http://msdn.microsoft.com/en-us/library/aa389273(VS.85).aspx[/URL]

Member Avatar for low_coder
0
97
Member Avatar for kinger29
Member Avatar for low_coder
0
90
Member Avatar for dharma30

; yes you can separate data in the text or any other extension file ;with some characters (e.g: "<Name>Max</Name>" and so on) or ;you can separate data with e.g.: 0A4h or some other non-letter or ;number character. ; then your program must search for occurrence of those characters ;and fill …

Member Avatar for low_coder
0
2K
Member Avatar for windany

; because "cmp" instruction doesnt accept two memory operands ; CMP r , r/i ; CMP m , r/i ; instead of "cmp add1[si],add1[si+2]" ; try: mov dx, add1[si] cmp dx, add1[si + 2]

Member Avatar for jt_murphree
0
146
Member Avatar for raseel

[QUOTE]encryption any text of alphapets and numbers into a random characters[/QUOTE] ; do you want later to decrypt it back or no?

Member Avatar for raseel
0
181
Member Avatar for Kikoro

; i'm not sure if u can do that in "PE explorer" ; but in e.g.: OllyDBG you can edit the disassembled code of a ;program and then copy it to the .exe file "selection"->"copy to ;executable" ; and you can download it for free

Member Avatar for low_coder
0
72
Member Avatar for sfrider0

; you mean storing it even after program close? ; then : In Registry (RegOpenKeyEx, RegQueryValueEx, RegSetValueEx ...) , In a File ( CreateFile, WriteFile, ReadFile ...), In .ini File ( you can easily do that by special API funcs (e.g: GetPrivateProfileString, WritePrivateProfileString ...))

Member Avatar for sfrider0
0
159
Member Avatar for Awebb999

; it will print out "76" ; do means an action will happen and then it will check if the while ;statement is true, if so again it will go to do or else it will exit from ;do while loop I = I + 25; // it will add …

Member Avatar for Ancient Dragon
-1
408
Member Avatar for sfrider0

;Hi. ;Actually why did you compare eax with -9999 ? cmp eax,-9999 ;? ---------------------------------------------------------------- ;stdcall is pushing on the stack values in the opposite order: push val2 push val1 call myfunc

Member Avatar for low_coder
0
212