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: OOzy
  • Order by date
  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
  16. OOzy

    Calculate extra and lost time (negative time)

    Dears I have three columns as follows: In Out losttime --- ----- -------- 8:04 15:10 7:11 14:00 The above is when someone report to work. As you all know we need to work 8 hours. Now I would like to do the following 8:00-(out-in) but this sometimes gives a negative time. How can I do...
  17. OOzy

    [Excel] Select higher date between two cols

    ----------------- MS Excel 2003 Dears I have three cols A B C Col A has dates i.e. 2-Mar-03, 3-Apr-4, etc Col B has also dates but different Col C is empty How can I make col C Compare Col A and B the takes the later date. For example, Assume the following: Col A=1-May-04 and col...
  18. OOzy

    Best way to do &lt;a&gt; in css

    I did it and it worked fine [thumbsup2]. How can someone serve without images?[ponder]
  19. OOzy

    Best way to do &lt;a&gt; in css

    Dears, I have simple <div> block and I would like to add three <a> with rollovers, what is the best way to do so. I did the following and I am not sure if this is the right thing to do HTML <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ""> <html xmlns="http://www.w3.org/1999/xhtml">...
  20. OOzy

    Spaces around tables in different browsers

    Dears, I am really having a problem making IE, Firefox and Opera to display my layout images with no spaces around them. To make the problem easy to display I made a sample layout. I would like to do the following: 1. Make the images show without spaces around them so the layout look nice and...

Part and Inventory Search

Back
Top