Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Ahmad99

@Ahmad99
About
Posts
37
Topics
23
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to access a remote machine from a local machine and perform basic function like execute and close the remote machine's application.
    A Ahmad99

    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.

    C / C++ / MFC c++ tutorial question

  • How to orient text in a web page
    A Ahmad99

    How 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.

    ASP.NET question csharp asp-net cryptography tutorial

  • How to orient text in a web page
    A Ahmad99

    I want to write a text at certain angle at a web page. What is the way ? I am using C~(HASH) and asp.net.

    ASP.NET question csharp asp-net cryptography tutorial

  • How to orient text in a web page
    A Ahmad99

    Waiting for reply.........

    ASP.NET question csharp asp-net cryptography tutorial

  • How to orient text in a web page
    A Ahmad99

    I want to write a text at certain angle in a web page. What is the way ? I am using C~(HASH) and asp.net.

    ASP.NET question csharp asp-net cryptography tutorial

  • How to apply check in XSL sheet
    A Ahmad99

    Time 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?

    XML / XSL xml tutorial question

  • Remote Access
    A Ahmad99

    I want to make an application. What technology would be involved in make tool like PCAnyWhere

    C / C++ / MFC

  • Remote Access
    A Ahmad99

    I 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.

    C / C++ / MFC

  • TAPI. Is it possible?
    A Ahmad99

    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

    C / C++ / MFC question

  • TAPI. Is it possible
    A Ahmad99

    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

    C / C++ / MFC

  • How to develop Search Engine like google.
    A Ahmad99

    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.

    C / C++ / MFC tutorial question

  • CPen
    A Ahmad99

    how I change? tell me....

    C / C++ / MFC

  • CPen
    A Ahmad99

    I 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

    C / C++ / MFC

  • View Back Ground Color
    A Ahmad99

    No 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!..

    C / C++ / MFC help question

  • View Back Ground Color
    A Ahmad99

    I 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?

    C / C++ / MFC help question

  • ADO Control ?
    A Ahmad99

    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

    C / C++ / MFC tutorial question

  • Toolbar BackGround Color
    A Ahmad99

    How we can change the background color of toolbar? Thanks for the helper.:mad::eek:

    C / C++ / MFC question

  • CBitmap (LoadBitmap is not working)
    A Ahmad99

    now it works according to my expectation. thanks a lot....

    C / C++ / MFC graphics question

  • BCG Menu....Right to Left Layout
    A Ahmad99

    I 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.

    C / C++ / MFC help

  • looking for panacea....how invoke method of Server in a Container
    A Ahmad99

    About 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".

    C / C++ / MFC question sysadmin docker testing tools
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups