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 wOOdy-Soft 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: MsMope
  • Content: Threads
  • Order by date
  1. MsMope

    What is wrong with this statment: a variable within a sql statment

    Hi, this is written in VBScript, but the query values are not working, I am still retrieving a years worth of data instead of just the data I am looking for. Query.AdditionalCriteria = "Date_Shipped >='" & dStartDate &"'" Query.AdditionalCriteria = "Date_Shipped <='" & dEndDate & "'"
  2. MsMope

    dynamic datagrid

    Good morning, I posted the following thread in the forms forum, but recieved no response, does anyone have suggestions? thread702-928194
  3. MsMope

    MultiLine display

    Good morning, How do I display a text field as multiline in a datagrid view on a form, such as I have a description field on a form, it can have 255 characters, but in the datagrid I want it to display to fit the grid, this also needs to carry over to the report.. any suggestions?
  4. MsMope

    Switch Focus between main form and Subform

    Good Afternoon, I have two forms, frmMain and frmAddChange. On my frmMain there is a button cmdOpenAddForm that when clicks opens the frmAddRecord Private Sub cmdOpenAddForm_Click() On Error GoTo Err_cmdOpenAddForm_Click Dim stDocName As String Dim stLinkCriteria As String...
  5. MsMope

    Inserting into a table using values from comboboxes

    Good Morning, I have 4 comboboxes on my form cboEmployees cboSystem cboReason cboType these are bound to the corresponding tables with select statments ex: SELECT Employees.EmployeeID, Employees.LastName FROM Employees; I have another table called ChangeDetails, this tables stores the ID...
  6. MsMope

    initial value set to option group,

    Please see thread Default Value of Option Groups thread703-921823
  7. MsMope

    Dataset Reference for comboBox

    Good Morning, I have a form with 1 textbox, (NOT UPDATABLE, the value is pulled in via a module is_modGetCurrentID()) 3 comboboxes and one list box, here is what I want to do. I want to have the the values input from my table into the corresponding comboboxes for the existing records, here is...
  8. MsMope

    Default Value of Option Groups

    Good afternoon, I want to update my account table delivery value based on what is choosen in teh option group, but at load time I want the value to equal what is currently stored in the account table, how do I do this? I tried to set the default value of the frmDelivery =...
  9. MsMope

    Option Group- how to reference

    Good Morning, I have three option buttons on a form stored within a frame I want to reference them such as: If opt70 is chose then do commands else if opt140 is chose then do commands else do commands end if. This is how I currently have it, but the frmDelivery.Value is obviously not the right...
  10. MsMope

    Update Query: SUM Function

    Here is my query first off UPDATE api_tblTmpJobQuote INNER JOIN user_tblJobProp ON api_tblTmpJobQuote.[Job ID] = user_tblJobProp.ID SET user_tblJobProp.Delivery_Charge = Sum([api_tblTmpJobQuote]![TrussExtPrice]) group by api_tblTmpJobQuote.[Job ID],user_tblJobProp.ID ; What I want to do is...
  11. MsMope

    Asking for parameters on a report,the fields are deleted from report

    thread703-920938 I have not recieved any responses, I was hoping someone in here might be able to point me in the right direction
  12. MsMope

    Asking for parameters on a report,the fields are deleted from report

    Good Morning/Afternoon, I have a report [api_rptJobQuote] that I have made some modifications to, this report is generated from a query, I have removed fields from the report, however at run-time I am asked for the parameters of these two non-existant table fields, I have checked the vba code...
  13. MsMope

    SQL statement w/in VBA

    Good Morning, The following is a transcript from the Access Forum I am hoping someone in this forum will be able to pinpoint the problem with the statement. The SQL statment is not updating the field. MsMope (IS/IT--Manageme) Sep 16, 2004 Alright, here is the last mod to this, I found a...
  14. MsMope

    Referencing a variable in a SQL statement

    Good Morning, I have a variable jobID which is set to a value within a recordset. Set JobID = rs.Fields("Parent_ID") Later on in the code I want to reference the value stored in the variable in a SQL statement such as: strSQL = "UPDATE user_tblJobProp" & _ "SET...
  15. MsMope

    SQL call to specific record, return ID field

    Good Afternoon, I need to update a record in a table (user_tblJobProp)based on a selection in an option group on a form, however I need to know how to store the current records ID or call the current record ID into a variable, Any ideas? Private Sub frmDelivery_AfterUpdate() Dim strSQL As...
  16. MsMope

    If &quot;status&quot; = condition then update date [sadeyes]

    hello, I am reviewing the attached code and trying to add an additional job status condition, "on hold" If this is the chosen condition I want to input the system date into ctldate_changed. However, when I attempt to do this I recieve error " | is not found", or ctldate_changed, must have...
  17. MsMope

    relative recording a macro

    Does anyone know how to relatively record a macro in excel 2003?
  18. MsMope

    MultiSheet Macro- sum from one display in another

    Location: Posts: 1 MultiSheet macro, to sum based on condition I have a three sheet workbook, one sheet is a summary sheet, the second is a data sheet and the third contains the constants. I need to sum information from sheet2 and display in sheet1, sound simple enough. I am summing the...
  19. MsMope

    Enumeration

    Good Morning, I have an enumerations declared in a common class written in C# (company.common) I want to dispaly the members of this enumeration in my comboBox(cboCategories). Any Ideas? Private mBuilderNote As New WausauHomes.BuilderProfile.whws.wausauhomes.com.builderservices.NoteTypes
  20. MsMope

    combobox to label connection

    Good Afternoon, I have a combobox on my form (cboBuilderName) that I am filling with an array: Private mBuilderCompany() As Builder = mBuilder.GetBuilders("") Dim pintCount As Integer For pintCount = 0 To mBuilderCompany. _...

Part and Inventory Search

Back
Top