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 TouchToneTommy 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: *

  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

    the value of index "i" must be returned after the user will select an item from the combobox. Let's say i need the index of the item in a textbox or a label Thanks all for your replies
  4. philipad

    Combobox select index

    ok....so?
  5. 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...
  6. 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)...
  7. philipad

    Index to image array

    The program functions as follows: On Text1 I enter a number and then I press the Command1 button. The program takes the number and separate it to its digits. For example 23 will be 2 and 3. The second digit represents one of three images: Image3 for 1, Image4 for 2 and Image5 for 3. For the...
  8. philipad

    Index to image array

    is there a way to send you the program?
  9. philipad

    Index to image array

    Image control. It has the index (i) but it is difficult to use this index for my purpose, so I want it to have another index: Image5(i,j) i and j are each specified by different loops or functions. Is it possible to do that? how?
  10. philipad

    Index to image array

    Thanks for the reply. Sorry I didn't make it clear. Yes I have the index i but I want another index that is specified by another loop of function. The image can be two dimensional array but I don't know how to create it and declare it. Or I can have the image(i) been equal to a value so I can...
  11. 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...
  12. philipad

    save arrays

    Do I have to create the file x:\TableFile or it is created by the code you wrote?
  13. 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) =...
  14. 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?
  15. philipad

    text box

    what type of data is a value written in a text box?
  16. 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?
  17. 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
  18. 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...
  19. 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?

Part and Inventory Search

Back
Top