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 SkipVought 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: LKB6
  • Order by date
  1. LKB6

    Printing Flash code

    I have a job done in Flash and I would like to print the code or script for archival and reuse if necessary. Is there a way to print all the entire code without going to each button, actions, etc... Thanks
  2. LKB6

    Link Option button to table

    Thanks. Will do this
  3. LKB6

    Link Option button to table

    Can you explain "...content of another table (B),..."?' The list of the options is in anther table. Option1, 2, etc 10 total. Will this content vary based on the record values in table A? NO Are there always the same number of options? YES Are the values you want to store in table A numeric...
  4. LKB6

    Link Option button to table

    I have one form with an Option group. The form and data are linked to a table (A). I select one item, and need to choose one of the option button. In the Option group I would like to put a number of buttons representing the content of another table (B), as if it was a combobox. When user...
  5. LKB6

    Access Errors messages

    Sorry: on error 2, if I debug the line of code says: DoCmd.GoToControl "Rechnom" Again, all this used to work, so I think it is a probleme with a setup or missing add-in in Access, but I could be wrong.
  6. LKB6

    Access Errors messages

    Hi, I have an old VBA programmed Access database.This always worked before, but after a virus and after I reinstall all I am getting the following errors. The copy of the db is clean as it come from a backup on CD made way before the virus and reinstall. So the errors are: 1 - When I open the...
  7. LKB6

    Display page

    Hi, When I open more than one page in Dreamweaver CS5, i used to see all my pages names regrouped in one tab and I could click on the page I want to work with. Currently all my pages open cascaded and it is not practical. I need some help because I cannot find a way to reset this as it used to...
  8. LKB6

    Append some text to another table

    Thanks. Obviously when it is easy, I try to make it difficult.
  9. LKB6

    Append some text to another table

    I understand what you do, but actually I have to check on the ':' that is allways present because 'product' can be product or something else. So I will need to calculate first where is the ':' with an Instr of some sort, and take all the text after the ':' when I find where it is. If I can do...
  10. LKB6

    Append some text to another table

    Hi, I am using the query form to create an append query. I do not have any problem to setup this. My problem is to append to the other table just part of the text from a specific column. For example on one table the column product has 'products:part1' and I would like to only append the...
  11. LKB6

    Align Text and form text box

    Thanks for this reminder.
  12. LKB6

    Align Text and form text box

    I try without success to align txt and text box in the following form. Anything I tried doesn't seems to work. So the question is: how can I do this?? Thanks this this the code <table width="800" height="43" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="22%"...
  13. LKB6

    Image swaping

    I used the 'BillyRayPreachersSon ' solution. Therefore I didn't do much more that what he wrote. Just added id='largepict' in the img scr tag. and used the code he gave me. Very simple, and works perfectly. I have a javascript solution, but more code and not so easy to implement in my code...
  14. LKB6

    Image swaping

    Simple and it works like a charm without using Javascript. Thanks. Louis
  15. LKB6

    Image swaping

    I have a table where I inserted one large picture, and I also have 4 small thumbnails. I found a few codes that allow to swap the large picture using javascript, but is there any code that will allow me to only use a mouseover to change/swap the large picture when I go over the thumbnails. I...
  16. LKB6

    Send value of text in a form

    So easy when you know.. Thanks
  17. LKB6

    Send value of text in a form

    I have the following code: <form name="form1" method="post" action="process.asp?Search=XXXXX" > <table> <tr> <td><input type="text" name="textfield2"></td> <td><input type="submit" name="Submit" value="Submit"></td> </tr> </table> </form> Is there a...
  18. LKB6

    window.open from a picture

    Thank you all for those explanations.
  19. LKB6

    window.open from a picture

    I have a code for window.open that looks like: <a href="""" onclick=""window.open('POPWINDOW.asp?id=" & rsProduct("ProductID") & "', 'DDD', 'scrollbars,status,resizable,width=550,height=400,left=50,top=50'); return false"">Product Spec</a> This works, but instead of clicking on the...
  20. LKB6

    Copy sheet over another one - Excel

    Thank, But is there any code I could put in the VBA to do this automatically each time I start the spreadsheet. The reason is that I need to wipe out all previous calculations made on each sheets and refresh with a new template page.

Part and Inventory Search

Back
Top