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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by vangundy

  1. vangundy

    Mutiple include directives

    Please explain...
  2. vangundy

    Mutiple include directives

    I have left.asp, main.asp and right.asp I am having trouble having the right.asp appear on the right side of main.asp using <!--#include file="Right.asp"--> -------- ------- - L - - R - - E - Main.asp - I - - F -...
  3. vangundy

    Delete Duplicate Records fro two fields

    I am using a macro to import the csv file into my table... I do not have aunique key... when I try to move the data usinf distinct and into a new table I get a msg that this field is to small..... when using memo fields
  4. vangundy

    Delete Duplicate Records fro two fields

    Actually I do not have a unique... I am taking an extract from another system and the way there backend is created there is no unique key..... (!!!)
  5. vangundy

    Delete Duplicate Records fro two fields

    How can I delete records where the FName and LName are duplicate? Ex: LName FName Smith Joe Smith John Smith Joe Brown Dennis As you can see there is a duplicate for LName and FName. The final Outcome shoudl be: LName FName Smith...
  6. vangundy

    Display datediff results as Days Hrs and Mins

    the result using your expression is: 0 0 4 Where is the 15 minutes? Should be: 4 0 15
  7. vangundy

    Display datediff results as Days Hrs and Mins

    I am trying to use the datediff fucntion to obtain the diff between two dates and to display it as Days Hrs and Minutes The results show as: 4 97 5775 When it should show as: 4 0 15 Here is my data being used in my Access query: Date1 = 2005/06/27 19:45:00 Date2 = 2005/07/01 20:00:00...
  8. vangundy

    Best tool for creating GUI interfaces

    Hi I am new to java and would like to know what tool is the most common and best used for creating java gui (s)
  9. vangundy

    Unable to copy to the clipboard

    I am using VBA in my xls spreadsheet. I opening a third party app using the shell command. The app opens and I use sendkeys to tab 3 times on the app. This works great... the problem is when I try to send sendkeys "^c" the field which is highlighted on the app is not being copied using the...
  10. vangundy

    Selectbox - pass multiple selected values to a text box

    Awesome Resolved!! Thanks
  11. vangundy

    Prevent Multiple instances of the same web site

    I want to be able to prevent the end user from opening the same web site more than once. How can I do this using javascript?
  12. vangundy

    Selectbox - pass multiple selected values to a text box

    This is great! My actual listbox passes all selected items to another listbox. Is there a way to delete all the items in the second listbox??? Other than that the code or your sample is perfect!
  13. vangundy

    Selectbox - pass multiple selected values to a text box

    Is there a way to add the selected items (could be multiple) from alistbox to a text box sperated by ;?
  14. vangundy

    SQL query question

    Instead of ISBN lets say field PagesCnt as for the expression I entered it into the statement. I just wanted to add two fields to the query you posted.. SELECT Inventory.BookName, Max(Reservation.DateOut) AS Closest_To_Today, IIf([dateout]=Date(),"available","Reserved") AS Expr...

Part and Inventory Search

Back
Top