CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Simon Pettman

Page 1 of 4 1 2 3 4

Search: Search took 0.53 seconds; generated 28 minute(s) ago.

  1. Replies
    3
    Views
    2,645

    Poll: ifx.h where can I find it?

    I have found the url a useful resource but ifx.h is included in almost all of the script files and I can't find it anywhere!

    So nothing works. Where will I find ifx.h?

    Simon Pettman
  2. Replies
    3
    Views
    2,645

    Poll: Install Shield

    I am trying to use Install sheild for the first time to distrubute an application.

    As part of the installation proccess I need to add some directories to the computer and put some registry keys in...
  3. How can you set the state of the Menu Items in a MFC App at run time.

    I need to disable or grey out the File, Edit, etc menu items when the Application launches untill a certian condition is met. Is there any way of doing this I know I can do it a at design time by...
  4. Saveing a bitmap file from an openGL Scene

    I have an application that uses a thirdparty openGL wrapper. I want to save the generated scene to a DIBitmap file *.bmp.

    I have found code on the guru site that achaieves this for jpg format...
  5. How to prevent more than one instance of MFC application.

    I have an MFC application that uses a third party .dll for a data aquistition card. The application crashes if a user trys to open two instances of the same application.

    Is there any way that...
  6. Progress bar that will change color at certain levels of progress

    I am looking for a control that behaves like a progress bar but with a visual aspect rather like the led arrays you get on a sterio tape deck that have a red zone at the end to indicate saturation.
    ...
  7. Re: Simple way of extracting the numbers from CString like " 12.34 13.2 10.2"

    Moving the include up a few lines did the trick.

    The strings are actual being read from a file on disk. Can I insert the whole file in the strStream, to save me doing it piecemeal with strings...
  8. Re: Simple way of extracting the numbers from CString like " 12.34 13.2 10.2"

    I like the look this method as it looks like the most applicable to my code. However when I #include <sstream> I get 7 errors even before I do anything else.

    The errors are:
    d:\program...
  9. Simple way of extracting the numbers from CString like " 12.34 13.2 10.2"

    What is the quickest way of getting the numbers from a long string containing numbers?

    For example if I had the string " 12.34 13.2 10.2" where the numbers are sepearted by spaces.
    ...
  10. Why wont DDX work for Radio Buttons on a dialog?

    I am creating a dialog it contains some radio buttons and other controls. When I use class wizard to link member variables to the controls nothing comes up for the Radio buttons. How are you supposed...
  11. Setting Up a default path for saving and Opening files in the MFC Framework

    I have an MFC SDI application. I have stored a Key in the Registry that contains the default directory that is used for storing files created and read from the application. I have no problems...
  12. Lost Class View information in MFC Project.

    On loading the project I am getting the message

    "Cannot access the ClassView information file. ClassView information will not be available."

    Subsequently the class view pane in the project...
  13. Capturing an Event? from a CComboBox

    I want to handle an event hopefully generated when the CComboBox has its selection changed.

    Does is generate any events or messages? If so any chance of some code?

    Much Obliged.

    Simon...
  14. Re: Source Code to HTML Format converter

    Thanks for your reply. Subsequent to posting my message I found a perfect contribution on the CodeGuru site at URL "http://www.codeguru.com/devstudio_macros/HtmlOut.shtml" contributed by Scott Davis....
  15. Source Code to HTML Format converter

    Im looking for a simple app that will convert my source code files to HTML fomated files for documentation purposes.

    Very similar to what happens to the formatting of code when I submit posts...
  16. Compatibility Issues with IE version 6.0

    We have developed quite a complicated web enabled app. Most of the development has been done on IE 5.5 (the available platform at the time of development.)

    Testing the app on version 6.0 has...
  17. Office aps running in IE frame are not showing there toolbars or menubars.

    When you run MSWord for instance in IE it negotiates with the menubar to provide suitable menus for MSWord. This does not occur when running MSWord in a frame within IE ( for reasons that are...
  18. Automating Office documents running inside a frame within IExplorer

    I am hoping to get hints/tip/suggestions on how I can do some of the following:-

    · Have say a word document displayed in a frame of the browser (IE5.5), where there are multiple frames (only one...
  19. Automating Office documents running inside a frame within IExplorer

    I am hoping to get hints/tip/suggestions on how I can do some of the following:-

    · Have say a word document displayed in a frame of the browser (IE5.5), where there are multiple frames (only one...
  20. Automating Office documents running inside a frame within IExplorer

    I am hoping to get hints/tip/suggestions on how I can do some of the following:-

    · Have say a Word document displayed in a frame of the browser (IE5.5), where there are multiple frames (only one...
  21. Re: How to set the Global Printer object, using the Common Dialog without modifying the system defau

    Hi John

    Firstly I dont think there is a way round the 31 charater DeviceName limit as it is a constant in the DevMode Struct.

    I have made some changes to the code you sent me shown here:-

    ...
  22. Re: How to set the Global Printer object, using the Common Dialog without modifying the system defau

    This piece of code has one drawback if the the path and device name of the printer you are trying to select is > 31 characters it fails.

    If you substitute the line

    If...
  23. How to set the Global Printer object, using the Common Dialog without modifying the system default p

    I am trying to set the global printer object to point to a network printer using the following code.


    private Sub Form_Click()

    Printer.TrackDefault = true
    DefaultPrinter = Printer.DeviceName...
  24. CPU hungry functions & the message pump. Problem with WM_CLOSE.

    In my application I some fucntions that wait for data from a data aquistion card. They therefore block the thread. In order to aleviate the problem I have used a message pump.


    MSG message;...
  25. SDI with two views: Second view GetDocument() fails.

    I am using the following function in CMainFrame to alow switching of the views.

    void CMainFrame::SwitchToView(eView nView)
    {
    CView* pOldActiveView = GetActiveView();
    CView* pNewActiveView =...
Results 1 to 25 of 93
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured