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 Mike Lewis 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. brlissab

    Pass a function value as string to a procedure

    Ok so it is the value inside the function that is used instead the function itselfs. Thanks! If i would call again the "inputbox" function to have another folder to write on another work book how could i do that without "quiting" the macro? Thank u for ure advises
  2. brlissab

    Pass a function value as string to a procedure

    Hello everyone. Trying to pass a string valut from a function to a routine but i don't understand why not my value is not accepted by the procedure Public Function UsrInput() As String UserInput = InputBox("Path:") End Function Sub TestListFilesInFolder() Workbooks.Add ' create a new...
  3. brlissab

    Merging files into another file depending on name file

    Yes the references to the drawings (who are the same) are in a particular colum. And the page (+1) where the drawings must be merged are on the same row, but on another colum. [/URL]
  4. brlissab

    Merging files into another file depending on name file

    Thank u for interest in my case. Actually on the main pdf, each page contains information, but the relevant information for me are the name of the other's pdf that i wanna merge. So actuallly i have the main pdf that contains for example a information for example, in page 1 45-16-97-00001 and i...
  5. brlissab

    Merging files into another file depending on name file

    Hi there! HI have a principal pdf file. That pdf file contains many pages, and on each page there's a reference number. That reference number points to another pdf file. The others pdfs file's name ARE the reference number on the principal number. So be more clear, u've got on the page 1 in the...
  6. brlissab

    Drop down list values into table

    Sure, I wiil check the paper. So, basically, my problem with the my combo boxes who won't fill data into the table is that i'm wrong with my database design? What would you change? Thank you for ure advices. Best regards
  7. brlissab

    Drop down list values into table

    Hello gurus. Quite new to acccess, would appreciate some assistance. So here's what i want acomplish. Have 2 pairs of dependent dropdown lists and i try to put the users choice's on another table. Here's my tables: Category ID > AutoNumber & PK CategoryName > Txt Task ID > AutoNumber & PK...
  8. brlissab

    Fill field with previous selection

    Easyyy! Thanks a lot tep tips forum for the detailed FAQ :=) Having just a little problem to insert the values from the combo boxes into the datbase... All the others field from my form goes into the Db but not these two values... Where must i check? A litlle assistance to a happy newbie? Best...
  9. brlissab

    Fill field with previous selection

    Is it possible? Maybe i'm not on the good section. Anyways, thank u a lot.
  10. brlissab

    Fill field with previous selection

    Hi. I'm trying to search information to fill another field with a previous selection. So to be more clear, i've got a table ElementsGroups and elements. These tables are linked one-to-many relationship. The Elementsgroups is linked to another table (overhauling tasks). So how to have in the...
  11. brlissab

    Many to many relationships

    indeed i was not very clear. To make me understand the overhauling tasks are subjected to periods (one month tasks have opid 1, 2, 3, 45, 87 etc etc. 3 months another overhauling tasks, etc etc). Also, these overhauling tasks have differents overhauling locations (workshop tasks have tasks 1, 4...
  12. brlissab

    Many to many relationships

    Tanks for your advice Duane :) I have evolueated the table, cause operations are also subjected to elements groups (hydraulic, pneumatic...), also these elements are subjected to frequency periods, and also to maintenance bodis (operator, technician, etc) and also overhauling places (workshop...
  13. brlissab

    Many to many relationships

    Hello everybody. Actually quite newbie with access, i'm a litlle confucious with many to many relationship. So in my case i have a table with various machines. These machines have many overhauling tasks. In the otherside, have the overhauling table table. These operations are (sometimes) the...
  14. brlissab

    newbie dummy question (DIV and mysql queries)

    tried this and have my columns displayed. <?php $connection = mysql_connect("localhost" , "user" , "pass") or die ("Can't connect to MySQL"); $db = mysql_select_db("db" , $connection) or die ("Can't select database."); $cols = 2; $size = (80/$cols) - 5; $result = mysql_query("SELECT * FROM...
  15. brlissab

    newbie dummy question (DIV and mysql queries)

    yes thank u! ive replaced the code between the DIV tag for <img src="<?php echo "a href='../images/{$rows['imagem_nome']}' border='0'> <img src='../images/{$rows['imagem_nome']}' border='0' width='100' height='80'></a>" ?> works, no error on...
  16. brlissab

    newbie dummy question (DIV and mysql queries)

    Hello friends after tried some tables to fix displayed queries, seems it is much more flexible with css. here some tries: <?php require_once ('mysqli_connect.php'); $q="SELECT * FROM imagens"; $result = @mysqli_query ($dbc, $q) or die("Error: ".mysqli_error($dbc)); while ($rows =...
  17. brlissab

    Hta:passing value from input to a ping funtion

    tried this multibox for choice one or more machines Sub RunScript For i = 0 to (MultiListbox.Options.Length - 1) If (MultilistBox.Options(i).Selected) Then strComputer = strComputer & MultilistBox.Options(i).Value & vbcrlf End If Next PingHost...
  18. brlissab

    Hta:passing value from input to a ping funtion

    Hello there everyone. Having some problems to pass value to a function. Take Microsoft sample to let choose user's a text file with computer names and then execute actions on these machines, on my sample a ping function. here is my code <html> <head> <title>Load Computers Sample</title>...

Part and Inventory Search

Back
Top