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: *

  • Users: ironj32
  • Content: Threads
  • Order by date
  1. ironj32

    linking Excel to Access

    hi everyone, here's what i have...i am going to be receiving a couple thousand seperate workbooks over the next few months. all of the workbooks have one sheet all formated the same. i would like to set something up to put the data into my access database. i do have a table in access with all...
  2. ironj32

    combining duplicate entry's

    this is probably easy but i cannot figure this out for some reason. i have a table (tblDescription) with two fields: "barcode" & "additional description" there are some duplicate records that have the same "barcode", but different "additional description". is there a way to combine the two...
  3. ironj32

    attach two files using SendObject?

    Is it possible to attach two files using the DoCmd.SendObject function? I would like to send a report as a RTF and also as an XLS. I have it so that it puts them into two seperate emails, but would like them in the same email. Thanks.
  4. ironj32

    File, Get External Data, Import

    I need code that will go to: "File", "Get External Data", "Import". Private Sub cmdGetTable_click() ? End sub Thanks!
  5. ironj32

    attaching rtf report in email is converting to .xls???

    I have a form that has a command button that opens up lotus notes and attaches a report as an .rtf. this works on all of our pc's, but for some reason it attaches as an .xls file one persons computer. any thoughts as to why this is happening? Private Sub cmdSendReport_Click() Dim Subject...
  6. ironj32

    option button group

    Tried posting this in the VBA for Microsoft forum but no luck. In an excel userform that i have a group of option buttons with the GroupName of "SelectOne". It contains 4 optbuttons: optNewContract optRenewContract optUpdatedContract optReplaceVendor I also have a...
  7. ironj32

    selecting optButton value into worksheet

    I've got a UserForm that is connected to another worksheet. I am having a problem figuring out the code for selecting the value of a option Button group the GroupName is "SelectOne". this is probably really easy. thanks! Private Sub cmdSave_Click() Dim irow As Long Dim ws As Worksheet Set ws...
  8. ironj32

    excel survey...activeX or UserForm

    I am creating a survey that is going to be emailed out to many people and am wondering if i should be using ActiveX controls or UserForm controls. The survey is going to consist of many input text boxes, options buttons, and check boxes. I would like some text boxes enabled/required/locked based...
  9. ironj32

    if then statement in excel

    I have a set of check boxes in excel one of them being "chkOther". when this is true i want the cursor to go to a text boxt "txtVendorPerfOther" and I want to make it required. If it's not true then i would like for txtVendorPerfOther to be locked. here is what i have so far... Private Sub...
  10. ironj32

    query to find records that don't contain any numbers

    I need to run a query that returns records that do not contain any numbers. I'm not sure what the criteria would be? Also it would be nice to do the opposite, return a query that returns records that do not have any letters. thanks!
  11. ironj32

    1st, 1st Floor, 1 ....update them all into 1st

    I have a field, [_COMPLETE DATABASE].Floor, where i have multiple different formats... 1st, 1st floor, 2nd floor, 1, 2, etc... i would like to format all of the entries to equal 1st, 2nd, 3rd, 4th, 5th, etc... i know i will need to run an update query but am not sure what the SQL should be...
  12. ironj32

    control txtBox vs. form txtBox in Excel

    Just curious what the benefits/differences are between using a control txtBox and a form txtBox in Excel. Also, how come it won't let me use a form txtBox?
  13. ironj32

    multiple front ends

    ok i know there has already been numerous post on splitting databases. i appologize, but i am not really finding what i need. we have a which is shared on a network drive. how ever i believe that everyone is using the same front end...so when i have a form or something open in design view...
  14. ironj32

    emailing a survey: Excel or Access?

    I want to create a "New Account" form and am wondering if i should use excel or access? I need to email the form/questionaire to different Property Managers. I already have an Access Database set up for my needs of storing and keeping track of the information. I would like to take the...
  15. ironj32

    ProperCase for the entire form

    I have this for a txtBank, and it works fine Private Sub bank_LostFocus() Bank = StrConv(Bank, vbProperCase) End Sub is there a way to set this for every txtBox in the form with out having to write the Private Sub procedure for each control? maybe... Private Sub Form(not sure...
  16. ironj32

    convert existing data in a table with vbProperCase

    I've been looking through strConv threads, but can't seem to find an answer. Can I convert the existing data in a table to Proper Case? Guessing I probably have to use a query or something?
  17. ironj32

    attaching report to email

    The following code works perfect to send emails, but I am having a problem attaching a report (rptAccountVerification) to it. Your input would be greatly appreciated! Function SendNotesMail(varTo As Variant, strSubject As String, strBody As String, strFilename As String, ParamArray...
  18. ironj32

    attaching a report in email

    I am using the following code to send emails, but am having a problem attaching a report (rptAccountVerification) to it. I am thinking that I need to declare FirstFile as something? Function SendNotesMail(varTo As Variant, strSubject As String, strBody As String, strFilename As String...
  19. ironj32

    setting a parameter as a default value

    I have a parameter query: SELECT [Account Information].AccountNbr, [Account Information].VendorID FROM [Account Information] WHERE ((([Account Information].AccountNbr) Like '*-' &...
  20. ironj32

    Link to a query

    I have the following query set up: SELECT [Account Information].AccountNbr FROM tblVendorID INNER JOIN [Account Information] ON tblVendorID.VendorID = [Account Information].VendorID WHERE (((tblVendorID.VendorID)=[Forms]![frmNewAcctSearch]![VendorID])); I have an AccountNbr i.e...

Part and Inventory Search

Back
Top