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 Mike Lewis 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. dabiri

    How to add/remove users in MS-Access 2015.

    sorry, it is ms-access 2013 we were using ms-access 2003 how can we get around this removal of user level security so that we can add new users, please? thanks.
  2. dabiri

    How to add/remove users in MS-Access 2015.

    Hi, we had an access database (ms-access 2005) which allowed dbas to define add/remove users' access to the database. The software team installed ms-access 2015 and now the tab where you defined/removed users, is gone. Is there any way to add/remove users' access in 2015? thanks.
  3. dabiri

    Can not open excel worksheet in vbscript.

    hi, I had a vbs application that used this with excel 2008 they installed excel 2013 on our machines and now the code below doesn't work: [code] Set objExcel = CreateObject("Excel.Application") msgbox "excel application started" objExcel.DisplayAlerts = 0 objExcel.Workbooks.open excelfile...
  4. dabiri

    How to search for a string in a folder.

    thank you all so much. if you want, you can rename the .exe file as .txt (will look harmless to email clients) and then send it. i'm not sure if I can post my email here. the admin should decide. can I post my email?
  5. dabiri

    How to search for a string in a folder.

    thanks. I do not see a "file content" button to push.
  6. dabiri

    How to search for a string in a folder.

    thanks. pressing ctrl+F while on the folder, opens a dialog box that's already on the top right corner. but the option for "add a search filter" is greyed out. the command findstr /s <string> produces no results.
  7. dabiri

    How to search for a string in a folder.

    Hi, I'm trying to find a problem in a website's content. It involves a page that sends email. I have the folder that contains all the pages/contents. My problem is finding the file/page that contains the string "email". windows 7 will not let me use a search such as the one in Windows XP. is...
  8. dabiri

    File dialog in classic asp.

    thanks much. was able to get it to work.
  9. dabiri

    File dialog in classic asp.

    thanks a bunch. I appreciate that.
  10. dabiri

    File dialog in classic asp.

    Hi, I have a classic asp page that has been working for a while. the user has requested that a file dialog be added so that they can view text files that are in the directory on the server where the asp page is. I have tried some ways in vbs and it works. but, i'm not sure how it's done in asp...
  11. dabiri

    need to open a file dialog box, select a file (text file) and display thecontent.

    thanks Guitarzan. here's the complete solution that works - tested: 'set the type of dialog box you want to use '1 = Open '2 = SaveAs '3 = File Picker '4 = Folder Picker Const msoFileDialogOpen = 1 msgbox "started" Set fso = CreateObject("Scripting.FileSystemObject") Set objWord =...
  12. dabiri

    need to open a file dialog box, select a file (text file) and display thecontent.

    it comes back with "no object selected - cancel selected
  13. dabiri

    need to open a file dialog box, select a file (text file) and display thecontent.

    Guitarzan, I used the code that you posted at the end of the other one. the variable "file" has null value - I displayed it before notepad, it's null. notepad opens empty.
  14. dabiri

    need to open a file dialog box, select a file (text file) and display thecontent.

    thanks so much. I will try it. best regards
  15. dabiri

    need to open a file dialog box, select a file (text file) and display thecontent.

    thanks guitarzan. my application is hta/vbs the file dialog comes up ok. when I click on the file name, nothing happens. I like the file to be opened and show the content, which is a text file. thanks.
  16. dabiri

    need to open a file dialog box, select a file (text file) and display thecontent.

    hi. I have an hta/vbs app that will present a screen. have user click a start button and it should present a dialog box of file in a specific folder. the user will select the file, click the dialog box ok button and it will display the content of the file. here's what I found in tek-tips vbs...
  17. dabiri

    Display Record Count

    * end if
  18. dabiri

    Display Record Count

    if not objRS.EOF then objRS.MoveFirst rec_count = objrs.Fields.Item(1) end of msgbox rec_count
  19. dabiri

    Errorr connecting to oracle 10g database.

    Thanks a bunch guitarzan. I got oracle to work as well. I had to tweak control-panel\admin_tools\odbc and specify oracle SID in the "add" tab. the tnsnames.ora file is properly set up, but it needed to be defined in the odbc properties. even though creating a bat file is an extra step, it...
  20. dabiri

    Problem connecting to oracle 10g database.

    thanks frederico. I got the access job to work as per guitarzan's suggestions. it worked. I also got oracle to work. the tnsnames.ora file is properly set up in the right directory. (sorry for cross-postings). I've been stumped by this issue for almost two weeks now. kudos to guitarzan. he...

Part and Inventory Search

Back
Top