sorry for being rude.but I have gone through many links but couldn't find any useful link.can you suggest me some links or examples. :)
vr999999999
Posts
-
zero copy approach in windows and unix using C++ -
Remote Accessingyou should try to understand how mouse works on another remote desktop from your system.that may help.:thumbsup:
-
zero copy approach in windows and unix using C++i have already searched but couldn't find any example.If you don't know plz don't give me stupid answers.
-
zero copy approach in windows and unix using C++Hello Everyone, I need a function to implement zero copy approach.Can anyone provide me some examples or suggestions about this?
-
multi platform applicationsThanks max. I also searched a lot on this topic i think i have to develop my application on QT.
-
multi platform applicationsIs it possible to develop a multi platform applications in vc++. If yes then what i have to do for that.
-
.net web applicationthanks, now i ' m planning to write a separate web app.
-
.net web applicationthanks for the suggestion Dave .
-
.net web applicationActually i have devices(client) which communicate through tcp with server(C# desktop app).What i want is to access the server and control the devices(client) through web.
-
.net web applicationIs it possible to implement tcp server inside .net web application
-
Message sending in Lan C# win formyou can use any communication protocol UDP or TCP.
-
ReceivedBytesThresholdadd some id in packet header and define the id according to the size of the packet like '0' for small packet '1' for large packet.First parse the header and then according to the id allocate time.
-
.net Web applicationright now i'm having a c# tcp server that collect the data from different sites and insert it in to database and a web application that show data. What i want is to bind them in to one single web application.if it is possible please give me some ideas.
-
add labels to an image at different zoom levelsthanks for the suggestion i will try it...
-
add labels to an image at different zoom levelsright now I am using winForms. but i can switch if u suggest any other.....
-
add labels to an image at different zoom levelsI want to add labels to an image at different zoom levels like the one on google maps please give me some ideas.
-
how to find out the codes who eat up my memory?most of the time this problem is due to memory leak u check it again also check may be there is some large array defined in the code.like int arr[1024*1024][1024*1024].
-
Continuous listening of COM port for detecting MODEM??u can use timer .
-
need help pleaseproblem in this code is that 'i' is only defined for 'for loop ' to make it run u have to define i before for loop ex: int i = new int(); for (i = 0; i < 5; i++) { i = int.Parse(Console.ReadLine()); } Console.Write(i); Console.ReadKey(); it will not give any error but don't give u the result u want it should be like this.. static void Main(string[] args) { int i = new int(); int []arry=new int[5]; for (i = 0; i < 5; i++) { arry[i] = int.Parse(Console.ReadLine()); } for (i = 0; i < 5; i++) { Console.Write(arry[i]+"\n"); } Console.ReadKey(); }
-
string operationchar str[10]="hghghhj" int i; for(i=0;i<10;i++) printf("%c",str[i]);