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

    File name & directory

    Hello all, I am really new to vb and do not know where to start for this. What I am trying to do is have a user set a default path for an exe one time, and save the path to be used when a user clicks on a command button to launch the exe. Is there a control I can user to open a file path...
  2. redsand

    Mapi issue sending emails. winmail with a twist!!!

    I have a visual basic program that loops through an email table and sends out emails using MAPI. The problem is an age old one that I can not seem to figure out. Some of the users that I am sending to are getting a winmail.dat file instead of excel attachments. I have outlook 2000 and have...
  3. redsand

    Refresh query that is a sub form in a tab control

    That was it!! JR - I needed to update data between the tabs without going back to the combo box. Private Sub Form_AfterUpdate() Forms![frmedit]![frmTooling].Form.Requery Thanks to both for the quick responses. Thanks again
  4. redsand

    Refresh query that is a sub form in a tab control

    I should have been more clear. I have one tab called tooldata(main) and another called partusage. The tooldata main tab has a form called frmtooling & the partusage tab has a form called frmpartusage. Both forms are based on queries. I pull the desired record using a drop down. All tabs are...
  5. redsand

    Refresh query that is a sub form in a tab control

    I have a tab control with several tabs. What I am trying to acomplish is this. When a user changes a usage field in one tab, I need to update another tab that has a form based on a query. I have tried the recalc and requery, it does not seem to work. The only thing that will update the tab is if...
  6. redsand

    Compile cdonts exe

    I have a cdonts program working on my machine using vb. I also have personal web server running. It is using my c:\inetpub\mailroot\queue. It works great. The question I have is how can I compile this and put it on another machine? I have attempted to install and I get an active x error...
  7. redsand

    Problem with CDONTS (Is there a size limit?)

    I have 5 files in each directory, I use the directory name to link to an access db to get email address. I want to be able to attach the multiple files to an email and send out. It seems like something is filling up and I either get a disk full error or this error. Run time error...
  8. redsand

    Problem with CDONTS (Is there a size limit?)

    I am having an issue with a vb app that uses CDONTS to send attachments. The app first goes and gets the directory name, grabs the files in the directory using objNewMail.AttachFile nochange, File1.List(ii), I then open a access database to associate an email address to the folder name...
  9. redsand

    Possible to e-mail worksheets instead of the whole workbook

    Is it possible to use a macro in excel to e-mail specific sheets of a workbook? I am using the outlook 9.0 object library and here is what I have so far ActiveWorkbook.SendMail Recipients:="test@test.com" Because the worksheets are sensitive and are tailored to each e-mail account, I...
  10. redsand

    This page accesses data on another domain??

    Sorry, I was thinking you were trying to use Access, Data Access Pages. For the life of me I can not remember what I did to fix this. I think it was something in the IIS security accessing the FPDB directory on IIS. If I can remember I will e-mail you.
  11. redsand

    This page accesses data on another domain??

    I gave up using data access and went to ASP
  12. redsand

    Response.redirect with frames

    That is correct a new page authenticates them. After authentication I want to go back to the index page and update the left frame with options after authentication. Initially, the left frame of the index page is blank, after authentication, the left frame shows different options of data entry...
  13. redsand

    Response.redirect with frames

    I have an asp page with 3 frames called index.asp. In consists of a top frame, body frame, and left frame. When click a link on the top frame it updates the left frame. What I am trying to do is when they click on a particular link on the top frame a new authentication page comes up that...
  14. redsand

    VB with Access 2000

    That did the trick thanks guys!!
  15. redsand

    VB with Access 2000

    I have vb app that is using an access database. I have coverted the db to 2000 and am getting unrecognized database format when opening the vb app. I am running mdac2.6. Dim rs As Recordset Dim db as Database strAppDir = App.Path strDBName = strAppDir & "\VenRate.mdb" Set db =...
  16. redsand

    String Syntax finding the first " "

    I am pulling data and need to parse out the first name part of a employee name field to be used in a mail merge. Example : Scott Smith. I need to pull the Scott. Any help would be greatly appreciated. Thanks
  17. redsand

    Asp and Sql syntax

    I tried both ways, I am still getting invalid character for Case 061. In Sql I have the field defined as nvarchar. I tried to use a different field(Cell) and changed the 061 to "Small Cell" to select data and received the same error. Any ideas suggestions
  18. redsand

    Asp and Sql syntax

    I take that back, I am still getting an invalid character for case 66
  19. redsand

    Asp and Sql syntax

    Never Mind, I had a syntax error with the rs - rsOP. Thanks for all of your help!!!!

Part and Inventory Search

Back
Top