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

    Why does the same code from Word97 run slowly in WordXp?

    Help; I've written VBA program in Word97 that translates the formatting of a document into a custom formatted text string. It works great in Word97 but it runs significantly slower in WordXP. Why, Oh Why? The basic functional outline of the program is that it examines the FONT object of a...
  2. chell

    Looking for help with DeviceIOControl

    Hello; I would to find to get ahold of the DDK header file which defines IOCTL_CDROM_GET_CONFIGURATION and assorted other constants so that I can call DeviceIOControl with IOCTL_CDROM_GET_CONFIGURATION. According to MS it is defined in ntddcdrm.h but I can't find it for download anywhere. Michelle
  3. chell

    Distinquishing between DVD and CD drives

    Hello Rob; Thankyou for your reply. Unfortunately, when I tried it on machine (win2k) it would only return CD-ROM and not CD-R or CD-RW. Sigh... Thanks again; Michelle
  4. chell

    Distinquishing between DVD and CD drives

    Hello; I'm trying to identify from visual basic all of the drives install on my system. While GetDriveTypes will identify some drives, it fails to distinquish between DVD and Cd drives and between the various flavors of CD/dvd (CD CDR CDRW) drives. It also does not see Zip drives at all. Any...
  5. chell

    Can I get a list of files opened given the Process ID?

    Hello Everyone; I was wondering if it would be possible to get a list of files that a program has open if I have the process ID. I'm looking for source that I could include in my program and not a seperate utility. The program would be one that I started via Visual Basic, if that makes a...
  6. chell

    Sending exit code to calling program

    Hello; Interesting discussion but I'm concerned about using ExitProcess() as Microsoft says that "If a Visual Basic application makes a direct call to the ExitProcess() API, the process may not properly exit." While the complete text is available at...
  7. chell

    Sending exit code to calling program

    Hello; I think I'm looking for the same answer except in my case I'm trying to get a command-line utility (console app?) to return exit codes so that I can use it in a batch file. Unforturnately, the outlook is not looking too good for VB 5.0 since I ran across this from microsoft...
  8. chell

    Setting a program's icon when there is no form.

    Hello; I'm writing a console app in visual basic 5 and I want to specify the icon for the program. If this was a standard project, I'd have a form where I could specify an icon for the form and then I could goto the properties for the project and chose from a list. Without a form, I do not...
  9. chell

    Create an array that resides at a given address in memory

    Hello Everyone; I've created a program with an arbitrary resource (a resource but not an icon) included in the exe file and the API functions return a long which is the address to the data. I would like to access this data by using a variable that is an array of bytes. So far my idea is to...
  10. chell

    Shutting down IE 5.5 From VBA

    Hello; How can one shut down Internet Explorer 5.5 from VBA-access if one can not use the InternetExplorer control. In other words, if I start IE with the shell command (or one of the API variants), how can get at the program and shut it down? I tried using the InstanceID to get a Hwnd handle...
  11. chell

    Using Webbrowser Control in Access97 with IE5.5

    Hello Everyone; I'm trying to get a web page to display on an Access97 form and so far I'm finding nothing but gotchas. Office 97 (or is it part IE3.0) comes with the WebBrowser control but it fails with my system which has IE5.5. Apprently the file in question (shdocvw.dll) is replaced by...
  12. chell

    MSword spell checker on a ThinkPad

    Hello; My friend is having a problem with MSWord 95 when she tries to use spell check. The checker seems to work fine thru most of the document (1 page, about 10 to 20 typos) but hangs (or seems to) towards the end of the PROCESS. The word process was deliberate - if she starts at the beginning...
  13. chell

    MSWord: Blank tab pages in the Options/Tools dialog

    Hello Dreamboat; Your solution fixed the problem... Thanks much, Chell
  14. chell

    MSWord: Blank tab pages in the Options/Tools dialog

    Hello Everyone; Can someone tell me why some of the tabs in the Options/Tools dialog box are blank - for example the EDIT tab. Is a virus the culprit? Help! Please... Chell
  15. chell

    Verifying the existence of a directory

    Hello; I'm writing an app in Access VBA and I need to verify the existence of a directory as supplied by the user. The DIR function works fine except that it won't work with something like "\\Server1\ADirectory". Does anybody have any ideas? Thanks For The Help... Chell
  16. chell

    Verifying the existence of a directory

    Hello; I'm writing an app in Access VBA and I need to verify the existence of a directory as supplied by the user. The DIR function works fine except that it won't work with something like "\\Server1\ADirectory". Does anybody have any ideas? Thanks For The Help... Chell
  17. chell

    Need to incorporate Browse into VBA application

    Hello; When I've tried any of the ActiveX controls mentioned so far, I keep running into the license wall. I'm curious as to whether people who have used these controls found a way around this problem or have received a license from some other source. For example, at work I use MSCOMCTL.ocx in...
  18. chell

    Cannot pass arguments when calling macro in excel

    Hello Kevin; I assume that you are running Excel 95 or Excel 97 and that the macro is not an Excel 4 macro but a VBA function. If so, this ought to work for you: Set objXL = CreateObject("Excel.Application") With objXL.Application .Visible = True .ScreenUpdating =...
  19. chell

    Compacting Dbases

    Hello Durkin; I've copied your code into access97 so as try it out but Access reports that ADODB is an unknown data type and there is not any info under this word in the help system. Can you show me what is wrong? Sincerely; Michelle
  20. chell

    Altering screen resolution

    Hello Martin; Some good sources of info on reaching the Win API are in these books: Access97 Developers Handbook by Paul Litwin, Ken Getz, Mike Gilbert Visual Basic 5.0, Programmers Guide To The Win32 API by Dan Appleman Good Luck! Chell

Part and Inventory Search

Back
Top