- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello, I have updated to Intel Fortran Compiler Integration for Microsoft Visual Studio 2005, Version 9.1.3192.2005. I ambuilding aQuickWin application. I have got two trivial questions: (1) is there a very simple way to append a single html file to my program,which would be accessible from theapplication'shelp menu- it would include manual to the program users; (2) will the release version work on any windows computer or is it necessary to distribute some supporting files?
Thank you very much for your response.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2) The release version will work on any Windows computer if it's built with "Static" (non-dll) run-time libraries. I think it's the default -- the setting is located in Project/Properties/Fortran/Libraries/Run-time library. Otherwise, you have to redistribute IVF run-time dll, libifcorert.dll.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much for your response. With regards to 1)
dummy = ShellExecute(NULL,NULL, "http://www.microsoft.com", NULL, NULL, SW_SHOWNORMAL)
works fine. I need to replace the webpage with theactualpath tothe htmlfile in the directory on user's computer. I use:
dir = file$curdrive
fname = TRIM(dir)//'/manual.html'
dummy = ShellExecute(NULL,NULL, fname, NULL, NULL, SW_SHOWNORMAL)
which does not work, the function returns a value 2.Thanks for any suggestion, Milan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
fname = TRIM(dir)//'/manual.html'C

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page