Search Results

Showing results 1 to 23 of 23
Search took 0.01 seconds.
Search: Posts Made By: low_coder
Forum: C++ Dec 13th, 2008
Replies: 2
Views: 1,175
Posted By low_coder
; use windows sockets
http://msdn.microsoft.com/en-us/library/ms741394(VS.85).aspx
Forum: C++ Dec 12th, 2008
Replies: 1
Views: 472
Posted By low_coder
; get file size : GetFileSize
; get file creation, last access, last write time : GetFileTime
; set file creation, last access, last write time : SetFileTime
Forum: Assembly Dec 12th, 2008
Replies: 1
Views: 633
Posted By low_coder
; check out this link:
http://www.madwizard.org/programming/tutorials/mosaic/
Forum: C Dec 12th, 2008
Replies: 1
Views: 594
Posted By low_coder
; check out this link:
http://msdn.microsoft.com/en-us/library/aa389273(VS.85).aspx
Forum: C++ Dec 12th, 2008
Replies: 1
Views: 524
Posted By low_coder
; just launch "devmgmt.msc" by winexec or by CreateProcess
Forum: C Dec 12th, 2008
Replies: 9
Views: 670
Posted By low_coder
; I have written an example for you.
; try this:
; all files are in attachement


#include <windows.h>
#include <winioctl.h>

struct Record
{
Forum: Assembly Dec 10th, 2008
Replies: 1
Views: 366
Posted By low_coder
; 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...
Forum: C Dec 10th, 2008
Replies: 9
Views: 670
Posted By low_coder
; 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...
Forum: Assembly Dec 9th, 2008
Replies: 5
Views: 724
Posted By low_coder
; here is a simple encrypting/decrypting app.:
; on encryption it will just inc hex values represented byeach char
; on decryption dec
.386
.model flat,stdcall
option casemap:none
include...
Forum: Assembly Dec 9th, 2008
Replies: 7
Views: 740
Posted By low_coder
then you have to "inc si" and "jmp orderab" before "finish"
Forum: C++ Dec 9th, 2008
Replies: 5
Views: 293
Posted By low_coder
; 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;...
Forum: Assembly Dec 9th, 2008
Replies: 4
Views: 1,050
Posted By low_coder
; you have to allocate enough memory for the string in the ".data?" ; section:
.data?
szBuff db 256 dup(?)
; then when you call StdIn it will write user input into szBuff


.386
.model...
Forum: Assembly Dec 9th, 2008
Replies: 4
Views: 1,050
Posted By low_coder
; 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...
Forum: Assembly Dec 9th, 2008
Replies: 5
Views: 724
Posted By low_coder
; do you want later to decrypt it back or no?
Forum: Assembly Dec 8th, 2008
Replies: 6
Views: 994
Posted By low_coder
INCLUDE Irvine32.inc
maxInt proto xVal:DWORD, yVal:DWORD
;.....................
push 2 ; yVal
push 3 ; xVal
call maxInt
;.....................
maxInt proc xVal:DWORD, yVal:DWORD
mov eax,...
Forum: Assembly Dec 8th, 2008
Replies: 6
Views: 994
Posted By low_coder
INCLUDE Irvine32.inc
maxInt proto xVal:DWORD, yVal:DWORD
;.....................
push 2 ; yVal
push 3 ; xVal
call maxInt
;.....................
maxInt proc xVal:DWORD, yVal:DWORD
mov eax,...
Forum: Assembly Dec 8th, 2008
Replies: 7
Views: 740
Posted By low_coder
; 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]
Forum: Assembly Dec 7th, 2008
Replies: 1
Views: 3,510
Posted By low_coder
; hi.
; it will jump if eax is greater.
; "jg" is the opposite
Forum: Assembly Dec 4th, 2008
Replies: 1
Views: 451
Posted By low_coder
Yes I think so. If you want post your code here and we'll see.
Forum: Assembly Dec 4th, 2008
Replies: 6
Views: 994
Posted By low_coder
;Hi.
;Actually why did you compare eax with -9999 ?
cmp eax,-9999 ;?
----------------------------------------------------------------
;stdcall is pushing on the stack values in the opposite...
Forum: Assembly Dec 3rd, 2008
Replies: 5
Views: 3,724
Posted By low_coder
;try this one too - it takes two numbers in ascii, converts them to hex ;and adds them together, then it converts the result to ascii and ;displays it in MessageBox
Forum: Assembly Dec 3rd, 2008
Replies: 5
Views: 3,724
Posted By low_coder
Forum: Assembly Nov 26th, 2008
Replies: 3
Views: 1,608
Posted By low_coder
;Take a look at this one too:
str_cat proc strBase:DWORD, strAdd:DWORD
mov edi, strBase
mov al, 0
repne scasb
dec edi
mov esi, strAdd
@@:
mov al, [esi]
mov [edi],...
Showing results 1 to 23 of 23

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC