Workflow in short: - create the procedure in vc++ - remember to export the procedure explicitly using DLLEXPORT - build the dll - place it in oracle_home/bin folder - connect to oracle - create a library XYZ pointing dll using CREATE LIBRARY statement - create PL/SQL front end using CREATE FUNCTION and defining EXTERNAL LIBRARY XYZ For more information refer to Oracle Database Platform Guide Hope this helps, Mika
Neeraj Sinha wrote:
Can you please suggest me a way to find out the ID of Back,Finish and Next buttons on the property pages...
How about Spy++?
"A good athlete is the result of a good and worthy opponent." - David Crow
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
Place the text in string table. Load the string from string table. Set the text of the button using this text. Afterwards you can change the strings in string table and again build the project and therefore the changed text will be reflected on the buttons. Satellite DLLs can help in Localization.
Have you checked out if button->ShowWindow (TRUE) works? It would help if you post a bit of your code.
Greetings. -------- M.D.V. If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
There are standard ids for cancel , help,ok button(IDCANCEL,IDHELP,IDOK). About other buttons, you may need to take help of spy utility to find their ids.
Prasad MS MVP - VC++
Update the resource.h file by adding the old ids from the first application to the new one. If there are id conflicts you have to resolve that.
-- ====== Arman
Thanks for your reply I have tried with Owner-Drawn menu.The menu items font didn't change.Only the submenu items font got changed.I have used code from the CP itself: http://www.codeproject.com/menu/menuch.asp.
With Regards Neeraj Sinha Netstudio Pune
Neeraj Sinha wrote:
How to destroy the PropertySheet and hence finish the wizard by sending a PSN_WIZFINISH Notification from
Do this: pMySheet->PressButton (PSBTN_FINISH ); where pMySheet is pointer to the class that is derived from CPropertySheet..
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
In order to show all 3 of Back, Next, and Finish, you gotta move the buttons. Here's the Microsoft Knowledgebase page with sample code: http://support.microsoft.com/kb/q143210/[^]