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 strongm 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. mmarseil

    Problem Summing Info On Joined Tables

    Hsitz, thanks for the reply!! Sorry my fault very bad example, I tried to simplify the problem and I screwed up the reason my query is struggling!! Here is the way my data is set up: TableA: MYID RandFld 1 A 2 B 3 A 4 B 5 D TableB: MYID Amount 2...
  2. mmarseil

    Summing a field in a Joined Table

    Sorry my fault very bad example!! Here is my the way my data is set up: TableA: MYID RandFld 1 A 2 B 3 A 4 C 5 D TableB: MYID Amount 2 10 2 20 3 10 TableC: MYID Amount 1 50 2 20 3 60 So, this is...
  3. mmarseil

    Summing a field in a Joined Table

    Hi there, What I want is to obtain summary information only on data in Table A, regardless of any joins with other tables. Normally if you say for example SELECT Sum(TableA.Amount), Sum(TableB.Amount) FROM TableA LEFT JOIN TableB ON TableA.ID = TableB.LinkID, you will get NOT the sum the...
  4. mmarseil

    Problem Summing Info On Joined Tables

    I actually tried your solution, however I need to sum the whole Amount column, so Group By TableA.ID doesn't work for me!! Any other thoughts?!!!
  5. mmarseil

    Problem Summing Info On Joined Tables

    Hi there, What I want is to obtain summary information only on data in Table A, regardless of any joins with other tables. Normally if you say for example SELECT Sum(TableA.Amount), Sum(TableB.Amount) FROM TableA LEFT JOIN TableB ON TableA.ID = TableB.LinkID, you will get NOT the sum the...
  6. mmarseil

    Find Record

    Instead of a command button calling an input box you can have a command button call the Find Dialog box (the one with the Binoculars as an icon). Your code would look something like this: Private Sub cmdSearchPart#_Click() Me.Controls("Part#").SetFocus SendKeys...
  7. mmarseil

    Is VSS Included In VB 6.0 Professional?

    Does anyone know if Visual SourceSafe is included in VB 6.0 Professional? I have a book published by Microsoft that states that it does, but I can't find it anywhere in the setup for the program and microsoft's site doesn't help much with installations. If anyone can tell me if I'm missing...
  8. mmarseil

    Set focus to the last character of a textbox

    Does anyone know how to set focus to the last character of a textbox in vbscript.  For example when a page loads a value will be set in a textbox. Take the word "sample", for instance.  I want to set focus to the textbox and the cursor should appear after the...
  9. mmarseil

    Set focus to the last character of a textbox

    Does anyone know how to set focus to the last character of a textbox in javascript.  For example when a page loads a value will be set in a textbox. Take the word "sample", for instance.  I want to set focus to the textbox and the cursor should appear after the...
  10. mmarseil

    Set focus to the last character of a textbox

    Does anyone know how to set focus to the last character of a textbox in javscript or vbscript.  For example when a page loads a value will be set in a textbox. Take the word "sample", for instance.  I want to set focus to the textbox and the cursor should appear...
  11. mmarseil

    (I get an error named "can't find project or library") Ummm how do

    Sorry to get your hopes up if you still haven't solved this problem, but I am having the exact same problem. Could you e-mail if you came across a solution for this!! I noticed it's been a couple of months since you submitted your problem!! My direct e-mail address is...
  12. mmarseil

    Internet Explorer OnPrint Command

    Hi everybody. I'm looking for some code if anybody knows of any that would run an Active X function when the Print button on the Internet Explorer Navigation Toolbar has been pressed. Sort of like an OnPrint function. I'm able to run the Active X control from a button on the page using...

Part and Inventory Search

Back
Top