No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
Re: I think it doesn't matter that which language you or your friends learn,the .dll file can help you.And if you want,it's even possible for you to call your friends' program(Just like "system(Command)" in C++ language).So,do as you want. | |
Re: I have a suggestion:if you want to analyse programs,you may study Assembly Language(asm),because that's the foundation of analysis. | |
| |
Re: If you use C/C++ language,you can use VC++ to make a GUI.And if you want to use a free IDE,you can use DEV C++(But you should make a lot of codes). And if you can use Object Pascal,maybe Lazarus can help you. | |
Re: I suggest you Lenovo Y460N.Since Lenovo purchased the IBM PC department,the Lenovo's laptops have improved a lot.Heat dissipation or other technics are advanced. | |
Re: Do you really believe that the server gives you the images at all time? The server only needs to give you the information of what in your "view" and where the are,and if you also calcute the bandwidth required in this solution,you may realize. | |
Re: I'm interested in Mobile Phone and robots.In fact,other IT products are OK. The more,the better. | |
Re: The OS you may choose OpenBSD or RedHat,and use Apache? | |
Re: But I have a suggestion:other password input program will use "*" in stead of the char which you input.And you can use the function "ReadKey"(in CRT unit) which gets a char from keyboard and doesn't show this char in screen. [CODE=Pascal] Uses CRT;{I only give you the UI codes and … | |
Re: Ah~Every procedure only has one sentence,so directly use(don't use in procedure) may quicker.And I think,Mouse.CursorPos may be quicker. And there is another way(perhaps quicker): [CODE=Pascal] Procedure GetMouse(Var s,x,y:Word); Var _s,_x,_y:Word; Begin Asm MOV ax,3 INT $33 MOV _s,bx MOV _x,cx MOV _y,dx End; s:=_s; x:=_x; y:=_y; End; Procedure SetMouse(x,y:Word); Begin … |