hey do anyone know about sms messaging from a vc+ winsock application .
S
staunch
@staunch
Posts
-
sms messaging -
network programmingwhat is windows DDK, tell me exactly how do i use packet32 in my vc programs, do u have any experience in using them please tell me yaar
-
network programminghey do anyone know how to sniff outgoing packets in a system, and do anyone have dnsapi.lib . if so i would be pleased
-
assembly language in turbo C++this is code of gotoxy, i have made in c++ using assembly, but it is not working and giving an error of "invalid operand". plz help!!!! void _gotoxy(int row,int cols) { asm MOV AH,0x2 asm MOV DH,row// problem is here,if we use asm MOV DL,cols//constant here, it works asm MOV BH,0x0 asm INT 0x10 } void main() { clrscr(); _gotoxy(15,15); printf("x"); getch(); }