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 bkrike 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
  • Content: Threads
  • 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

    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...
  6. 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()...
  7. OOzy

    Query Based on Last Friday

    Guys/Gals, I need to find all records that were entered in the database since last Friday.
  8. 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.
  9. 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
  10. 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.
  11. 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...
  12. 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...
  13. OOzy

    Best way to do <a> 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">...
  14. 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...
  15. OOzy

    Clean space in TD Tag using CSS

    Dears, I am really having a problem with <td> leaving spaces around an image. I am css to style my tables. I have following very simple table. Just to put in the picture, I did the following: I made web layout in photoshop, the I sliced it. Next, I cleaned the html file from all none xhtml...
  16. OOzy

    Real estate images

    Dears I need some real estate images (icon) i.e. an image/icon for a Villa, Duplex, home, land (blueprint), apt, etc. Can any one help?
  17. OOzy

    Force Browser to Encode in utf-8

    Dears, My html templates are encoded using utf-8. When the browser reads the files as .html it encodes it fine and my characters looks fine. However, when php reads the files and sends them to the browser the files looks ugly and unreadable. How can I force the broswer to encode the pages in utf-8.
  18. OOzy

    No Margin Around Images

    Dears, I have a table that has two columns. Each column has an image. I would like the images to exactly fits the <TD> i.e. no margin around the image. I tried to margin:0%; no help; padding:0% Note: My code is Xhtml HTML-TABLE <table id="hdr" > <tbody> <tr> <td...
  19. OOzy

    AutoCAD or ArchiCAD

    Dears, I am in the process to design my new home. I have 750sq meter land that I want to sketch my Duplex. I would like to make a 3D version that shows a prototype of what is in my mind. I am confused of which should I use: AutoCAD or ArchiCAD. Can any one help?
  20. OOzy

    Chen Vs Crow's Foot ERD

    Dears When I was at school I took a course about database design, specifically ER Diagrams. The school used the Chen ERD. I am using Sybase PowerDesigner that uses Crow’s Foot diagram. Is there any good comprehensive tutorial to show me how to use crow’s foot techniques or how to switch from...

Part and Inventory Search

Back
Top