Thanks Madhu.
gopalraja
Posts
-
Showing "Passord" Text image -
Showing "Passord" Text imageIn my system I have installed windows Vista os. When I entered into Vista, In the Login dialog, User Name and Password textboxes are there. When the Password text box is empty, it is showing "Password" text image. When we entered some character, that Password image had gone and the text which entered is dispalying as *. Here my question is when the Password fields is empty it showing the "Password" text image, whethere it is image or text, how do i get this feature in VC++ 6.0. Awaiting for your reply.
-
Dll addressI have exported dll functions using one dllexp utility. When I was seeing that, there are two address were given, One is Address and Relative Address. What is these address? Kindly provide me the information.
-
MFC dll creationI have created one dialog based application with MySQL database. In that database, 9 tables are used. In my dialog there are 3 butons name allocation, de-allocation and ChangeNew and each button has it own specific functions. Now I want to create a Dll for 3 functions (Allocation, De-Allocation and ChangeNew). First I tried with MFC Extension DLL and it was working fine but it could used only any MFC based application. But I want to used in non MFC based application. But I dont know how to write DLL with the classes which can be used in Non MFC based applicaion. Kinldy help me.
-
Resetting the DMM by transmitting *RST command through MSComm control errorHi, Actually I want to Communicate the DMM through the computer Comport. So I have created one MSComm control and did following setting and code. Private Sub Form_Load() MSComm1.Settings="9600,N,8,1" MSComm1.CommPort=2 MSComm1.InputLen=0 MSComm1.PortOpen=True MSComm1.Rthreshold =1 End Sub I have send the *RST command to reset the DMM by the following code Private Sub CmdSend_Click() MSComm1.Output = "*RST"+Chr$(13) End Sub When I run this program, The DMM showing errors as -101, -102, -103. All these error are related to characters. But, When I was running in Hyper terminal mode, DMM communication was perfect. Moreover, the DMM RS-232 setting (Baudrate and all) same as our computer setting. Still I could not communicating with DMM. Pls help me to found out solution.
-
Splitter window with RichEditViewHi, I have created SDI application from CView base class, Now I want to type charactors on the client area. But it was derived from CView so i couldn't get control. So I have created one CRichEditView class object. But i dont know to create the RichEditView for the currently active window. Pls help me
-
Ctoolbar button problemI have a created a SDI Application and 4 toolbar buttons are there, in that one button is PAUSE/RESUME button(Like a Toggle button). So when clikced PAUSE button means I have to change to RESUME image and Vice-versa. I have done it by using CImagList::Replace(index, IC_PASUSE). Now i have created the modeless dialog and it contains one CButton. Her my aim to change the image of the Toolbar PAUSE/RESUEME button when i cliked that CButton in the Modeless dialog. For that I wrote same code that is CImageList::Replace(), But when i cliked that CButton in the modeless dialog , the image is not changing in the Toolbar PAUSE/RESUME button, but when i moves the mouse on the ToolBar PASU/RESUME button, that image is replacing perfectly. provide me the solution.
-
Relacing the image in CImageList contlThanks That problem is solved with the follosing code. hIcon = AfxGetApp()->LoadIcon(IDI_ICON1); m_wndToolBar.GetToolBarCtrl().GetImageList()->Replace(8,hIcon);
-
Relacing the image in CImageList contlThank you
-
Relacing the image in CImageList contlI will explain my problem sir, I have three buttons in the toolbar with associated bitmapgreen, Red, Blue. Now When I clicked the Red button, that button color has to changed to Yellow color. Give me example
-
Relacing the image in CImageList contlPls give a example for replacing the image in the Image list using Replace method. the 3 parmateter of the Replace method saying some mask. that i couldn't udersttod. Example pls
-
Relacing the image in CImageList contlI want to change replace old image with new image in the Imagelist at 9 index. So I have used the Relace function, In that the 3 parameter saying the Bitmap mask. that i couldn't understood. Pls provide me the example for replace a image in the image list. My actual aim is to change the toolbar button image, when i cliked that toolbar button. Provide me solution
-
Changing the Image on the Toolbar button.I want to change the image of the toolbar button, that is, When I cilcked one tool bar button then I want to change the image of the button. So I have used the following code, but it saying some runtime error. CToolBarCtrl &ctrl = m_wndToolBar.GetToolBarCtrl(); ctrl.AddBitmap(3,IDB_BITMAP3); Pls provide me some solution,