Hi, I am using VC++ . I want to access remote machine and then peroform functions like 1- View the applications of remote machines by clicking on the start of local machine 2- Select any application such as MS word of the remote machine by using mouse 3- Close the application by using mouse. I guess technically I have to access the remote machine explorer.exe at my local machine. How this stuff can be acomoplished in VC++? any idea I would appreciate the guidance.
Ahmad99
Posts
-
How to access a remote machine from a local machine and perform basic function like execute and close the remote machine's application. -
How to orient text in a web pageHow I can create image at run time, eg, I have text "Abhijit Jana is .net guru", I want to write this text at a billboard, (located any where at my web page). Now billboard surface is ANGULAR. How I may write text with italic, bold and 24 red font . Please provide detailed answer. Thanks for your early help.
-
How to orient text in a web pageI want to write a text at certain angle at a web page. What is the way ? I am using C~(HASH) and asp.net.
-
How to orient text in a web pageWaiting for reply.........
-
How to orient text in a web pageI want to write a text at certain angle in a web page. What is the way ? I am using C~(HASH) and asp.net.
-
How to apply check in XSL sheetTime Table
This code display the time table . Now I have to apply a check over it. CHECK: At one time (Time) there would be only one lecture (CourseTitle) in a room, If there are multilple, it should display a message of CLASH. Can any one tell me how I can embed this logic in XSL sheet?
-
Remote AccessI want to make an application. What technology would be involved in make tool like PCAnyWhere
-
Remote AccessI know the IP of my machine. The machine is in UK, and now I am in PAKISTAN. IS there any way that I can access my files in Pakistan.
-
TAPI. Is it possible?I have one telephone connection. I am using that connection for net. Now if some one ring me, It would get a busy beep. Is it possible that I make a utitlity that record the msg automatically without disconecting me from the net... thx
-
TAPI. Is it possibleI have one telephone connection. I am using that connection for net. Now if some one ring me, It would get a busy beep. Is it possible that I make a utitlity that record the msg automatically without disconecting me from the net... thx
-
How to develop Search Engine like google.Hi, Can any one give me idea, how to develop a search engine like google. I want to build a one like this. From where search engine get the matched string? Is there any table where Keywords are stored? From how I would know about URL. I m new in programming. So plz answer in detail. thx.
-
CPenhow I change? tell me....
-
CPenI want to write Bold data (28 points) on a Dialog...against a buutton click here is code snippet { CPen pen; pen.CreatePen(PS_SOLID,28,RGB(255,0,0)); CDC* pDC=GetDC(); pDC->SelectObject(&pen); pDC->TextOut("Computer is the killer of nature"); } it writes data but not bold and Selected color.. Can any one tell where I am doing wrong
-
View Back Ground ColorNo It not works It has a CDC pointer as a parametre. I created a brush of desired Color,,, and then i Select it pDC->SelectObject(&brush); But no Success!..
-
View Back Ground ColorI have an SDI application. I want to change the background of view.... I tried SetBkColor(RGB(255,0,255) in OnDraw(), OnPaint(), but no success... I tried OnCtColor(),,,, it also not works... Any Help?
-
ADO Control ?when u insert these controls in your project,a dialog appear. there is a button on that dialog named "More Info". click on it. u get the help
-
Toolbar BackGround ColorHow we can change the background color of toolbar? Thanks for the helper.:mad::eek:
-
CBitmap (LoadBitmap is not working)now it works according to my expectation. thanks a lot....
-
BCG Menu....Right to Left LayoutI used BCGMenuBar in an SDI application. I changed the layout of MenuBar by using m_wndMenuBar.ModifyStyleEx(0,WS_EX_LAYOUTRTL); where m_wndMenuBar is a pointer to CBCGMenuBar. PROBLEM ........ The "POP UP MENU" when i have a click on menu bar, does not consider the Right to Left layout. It pop up in the normal(left to right style). How i change the style of pop up menu.... I mean how i open it in the (Right to Left)fashion.
-
looking for panacea....how invoke method of Server in a ContainerAbout Server Application ......................... The server is a full server with automation support. Server Applcation name is "TestServer" About Container Application Container Application name is "CONTAIN" I am embedding server application in container by using following code CCONTAINCntrItem* pCntrItem; CCONTAINDoc* pDoc = GetDocument(); pCntrItem= new CCONTAINCntrItem(pDoc); CLSID clsid; CLSIDFromProgID(L"TestServer.document",&clsid); pCntrItem->CreateNewItem(clsid); pCntrItem->DoVerb(OLEIVERB_SHOW, this); It works well. Now What is the problem? ---------------- i want to provide some information to the "TestServer" before embedding. so how i provide this information from "CONTAIN" to "TestServer". One way is that "TestServer" should have a method like SendData(CString strData), but how i invoke this method in "CONTAIN".