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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by OOzy

  1. OOzy

    Return multidim string array

    Dears I have this class which reads a file and should return multidim array. How can I return the array hb_field and be able to use in main() class class HBSeqFile { public: HBSeqFile(); string HBReadFile(); private: int counter1; int counter2; int strln; int lpos...
  2. OOzy

    Linked List 2

    Gentelmen, The code below is extracted from one of the famous C++ books. This code creates a linked list for integers. How can I modify this code so I can enter a struct such as: struct node{ char fname[25]; string type; int size; bool nul; bool index...
  3. OOzy

    Linked List

    Can anyone help me? I am new to C++ and I need to do the following: create struct create text file open text file read a string (; separated) slice into array create linked list put the read data into the list I started with the struct as follows: struct HB_field{ char...
  4. OOzy

    Open a directory in Windows Explorer from MS Access

    Guys/Gals, I have A="C:\MyDIR\Shop\Car" How can I open this directory from with Access Form when a button is pushed.
  5. OOzy

    Format Report Caption

    Guys/Gals oharab code worked fine. BTW, I could not find Reference in Tools->Reference Thank you.
  6. OOzy

    Format Report Caption

    Roy, I am still getting the same error. I have moved my question to the report forum. Thx
  7. OOzy

    Format Report Caption

    I am trying to format the report caption to look like 20051109 - Action Items YYYYMMDD - Action Items using the code below but I am getting a compile error:can't find project or library. Also the word Format gets highlighted Please help! Private Sub Report_Open(Cancel As Integer) Dim RC As...
  8. OOzy

    Format Report Caption

    I am trying to format the report caption to look like 20051109 - Action Items YYYYMMDD - Action Items using the code below but I am getting a compile error:can't find project or library. Please help! Private Sub Report_Open(Cancel As Integer) Dim RC As Variant RC = Format(Now()...
  9. OOzy

    Query Based on Last Friday

    Yes, I have a database that has action items for my team. Each week I print this action item list showing closed and open actions. But, I don't like the closed items to show every week. I would like the closed items to show for only on week. Thank you
  10. OOzy

    Query Based on Last Friday

    Guys/Gals, I need to find all records that were entered in the database since last Friday.
  11. OOzy

    Height of a textbox after it is grown with "CAN GROW"

    Hmmm, I need the size of the text box after it is grown.
  12. OOzy

    Height of a textbox after it is grown with "CAN GROW"

    Dears, I have a textbox in report with "Can Grow" is set to "YES". How can i find its height.
  13. OOzy

    Strikethrough in Details (Text Box)

    Dears, How can I show a text box struck-through. I used the Line Hide Show method but this does not work if I used the CAN GROW feature. Also, I could not find a Struck-through font. Is there any other way? Thx
  14. OOzy

    Web Dev Process

    Can anyone point me to a good web development process. I am starting a new company with a two other partners and we would like to adopt a process to start with.
  15. OOzy

    Calculate extra and lost time (negative time)

    Guys/Gals, Thank you for your help here is what I did: cell E (which is the diff btw the 2 dates) has =((D3-C3)*24)-8 Cell F has =IF(E3<0,TEXT(ABS(E3/24),"-" & "[hh]:mm"),TEXT(ABS(E3/24), "[hh]:mm")) Thank you

Part and Inventory Search

Back
Top