Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ora06
  • Order by date
  1. ora06

    Highlight multy row & col in MSHFlexGrid ?

    another question, with MonthView and Calendar Control how can i get the number of day of the specified month ? Ex. the Feb 2005 has 28 day Jul 2005 has 31 days
  2. ora06

    Highlight multy row & col in MSHFlexGrid ?

    Hi, I got 1 FlexGrid that Col = 31 day in month Row = 24h in day I want highlight and disable all the row that col < the day currently I.E : today 04 Jul so i want all row in every col < 4 are disabled, changed their color and no event on them Thx alots
  3. ora06

    Call VC++ functions and Procedures from FormBuiler6.0?

    Plzz show me more clear Do u have any example code ? Thanks alots
  4. ora06

    How to display multil records from database

    For one person can have 10 fingers So i want display all 10 finger_id when i enter 1 card_id I want display them by data_grid I use recordset->GetRecordCount() but when i debug it return = -1 ( no detection ) when infact there are more than 3 record Plzz help me !
  5. ora06

    How Formbuilder call VC++ function ?

    I am Using FormBuilder 6.0 to manipulate database Oracle I want to call some functions,procedures written in visual C++6.0 and then pass some parametters to insert , update into database First , i run in Client/Server mode My hardware is not good enough for Web running , but i can try in...
  6. ora06

    Call VC++ functions and Procedures from FormBuiler6.0?

    First , i run in Client/Server mode My hardware is not good enough for Web running , but i can try in school With FormBuilder i can manipulate data And i develloped some VC++ function checking data before insert , update. So i want to call them from Formbuilder in runtime
  7. ora06

    Call VC++ functions and Procedures from FormBuiler6.0?

    I am Using FormBuilder 6.0 to manipulate database Oracle I want to call some functions,procedures written in visual C++6.0 and then pass some parametters to insert , update into database Help me how to handle it ? Thanks in advance
  8. ora06

    How to display multil records from database

    I work with oracle and VC++ , ADO I use this to manipulate data sSQL.Format("SELECT finger_id FROM other_info WHERE card_id = 20000"); recordset->Open(_variant_t(sSQL),connection.GetInterfacePtr(),adOpenForward Only,adLockReadOnly,adCmdText); there are more than 2 records in this...
  9. ora06

    Create more columns from datagrid Control 6.0 ???

    Thanks Ion I found it , Update the Service pack 5 for visual studio from microsoft.com -> OK I thinks this control has errors...
  10. ora06

    Create more columns from datagrid Control 6.0 ???

    Hic I cant do it I cant add the column , this is my problem I also open the property of the datagrid and the CDataGrid but i find nothing I want to post the image but imposible Pls , help me more clear
  11. ora06

    Create more columns from datagrid Control 6.0 ???

    Thanks I write the SQL statement in ADODC Source then i use this for the datagrid's datarrecord source . But in the tab column of datagrid's property , only 2 cols : Col1 and col2, and i manupulate more than 2 fields from table. How can i update it ???
  12. ora06

    Create more columns from datagrid Control 6.0 ???

    Hi , I work with C++ for my final test , I use DataGrid Control 6.0 (OLEDB) to store the data , but the default column properties is only 2 , i can create more i use the ADODB to manipulate the database ( a table is more than 2 cols) so i cant view all fields from the table. I try from...
  13. ora06

    Use SQL statement with ADODB.Recordset ????

    Thanks all It well done How can i vote for all of you to OBISLAVU : Can you give me an ex of stored procedure
  14. ora06

    Use SQL statement with ADODB.Recordset ????

    Thanks alot Diego and Obislavu I have done it but it has error CString sSQL; sSQL.Format(&quot;INSERT INTO employe(name) VALUES ('%s')&quot;, m_name); recordset->Open(sSQL,connection.GetInterfacePtr(),adOpenForwardOnly,adLockReadOnly,adCmdText); error C2664: 'Open' : cannot convert...
  15. ora06

    Use SQL statement with ADODB.Recordset ????

    Hi everybody I am a newcomer in VC++ developement I work VC with Oracle database I want to manipulate the database with ADODB After connected , i do as follow: ------------------------ recordset->Open(&quot;INSERT INTO other_info(card_id) VALUES...

Part and Inventory Search

Back
Top