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: philipad
  • Content: Threads
  • Order by date
  1. philipad

    Set AP Div height

    Hi all, I am new in Dreamweaver/CSS and I would like some information about AP Divs What I am looking for is how you set the height of the AP Div to depend on the position of a child AP Div, in order for the child to remain within its parent. I think it has to do with...
  2. philipad

    Find next available excel cell

    Hi all, I am writing a program which will enter some values in an excel worksheet in column A. This file will already have some values entered in the first cells. I want the VB program to check in which cell is the last value entered, so ti will write to the next available cell. How can I do...
  3. philipad

    Combobox select index

    Hi all, The code below opens an Excel file and it fills a Combobox with values from a column. To do that I use a for-to-next function with an index "i". I need the program to return the corresponding value of the index, for the item which will be selected in the combobox, in order to use it for...
  4. philipad

    Show AP Div

    Hi all, I want a hidden AP Div to be shown when you click on it. For example on a picture showing a car, an AP Div with text will be shown to explain how the engine works when you click on the engine. To do that I follow the steps below: On the ApDiv1 (text) properties I set visibility (Vis)...
  5. philipad

    Index to image array

    Hi I am using an array of images and I want each image to have an index number or any other way to find it and use it.To make it more clear: Image(i).left=500 Image(i).top=600 Like I can find that image searching which image has top position 600, is there another way to assign a number...
  6. philipad

    save arrays

    hi I have this programs that saves two arrays, tabletop(100) and tableleft(100). How can I save these arrays to be used by another program? Dim tableLeft(100) As Integer Dim tabletop(100) As Integer Private Sub Command1_Click() i = Val(Text3.Text) tableLeft(i) = Val(Text1.Text) tabletop(i) =...
  7. philipad

    Arrays for use by another prgram

    Hi, I want to use a program to give values to an array.After that I want this array to be used by another program. The array must be saved so if the second program closes I want the array to be used when the program is re-opened. Anyone can help?
  8. philipad

    text box

    what type of data is a value written in a text box?
  9. philipad

    image appearance

    HI I have an image control, and in execution of an event I want an other image to appear in front of it.The problem is that the second image appear behind it and is not visble.. anyone can help me?
  10. philipad

    Isolate part of a number

    hi all If I have a set of numbers for example 2504, 8903, 5602 is there a way to get the last two digits so I get 04,03,02? thanks
  11. philipad

    Capture Top-Left position

    Hi all... In Visual Basic 6 every point in the form has a top-left position that is shown in the standard toolbar. What I want to do is to write a program which captures the top-left position and store it in an array. For example if I have a map of UK when someone press the point where the...
  12. philipad

    image appear many times

    HI all I want to place an image in more than one places in the form of a program. For example to place the image to one position of the form I use this in then code... img1.Left = 100 img1.Right= 200 Now I want to place this image in other place using the same image file. Anyone can help me?
  13. philipad

    Ranfom txt file

    hi all... I have an image that is to be moved to a position according to some values stored on a text file. The latter has the following form var left top 1 280 540 2 320 260 3 . . 4 ...

Part and Inventory Search

Back
Top