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

Search:

Type: Posts; User: RIC_V

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    8
    Views
    1,688

    Didn't find a way to call the "default Handler"...

    Didn't find a way to call the "default Handler" which i assumed was the handler in the CDocument Class (protected). What I did was to change the ID for the "Save button", add a handler for it (where...
  2. Replies
    8
    Views
    1,688

    I called CDocument::OnSaveDocument() from my view...

    I called CDocument::OnSaveDocument() from my view as suggested. I endup having to implement the dialog for getting user file name/directory myself (if I didn't miss something here).

    Since I would...
  3. Replies
    8
    Views
    1,688

    I'm using the form to get user data, just that....

    I'm using the form to get user data, just that. However I do some sort of processing (very simple) before saving data to disk and my intention was to have this processing under the serialize function...
  4. Replies
    8
    Views
    1,688

    Ok. Let's say I have the OnFileSave handler (for...

    Ok. Let's say I have the OnFileSave handler (for the toolbar "save" button) inside my cview class. I write my code so that the variables in the Cdocument are updated. How can I keep calling the...
  5. Replies
    8
    Views
    1,688

    Updating CDocument data from view

    Hi,

    I'm writing a SDI app. which has edit/combobox/list controls on the CFormView based dialog. All the controls have a variable (CString most of them) on the CDocument class waiting to receive...
  6. Replies
    1
    Views
    554

    The only solution I found was to delete the...

    The only solution I found was to delete the values added in the combobox edition and insert them at runtime (before dialog start)

    :(

    Ric
  7. Replies
    1
    Views
    554

    Loading Template Initial Values

    I'm trying to change the font of the main dialog window (at run time) using the code below (found in the forum).

    int CInitialDlg::DoModal()
    {
    // TODO: Add your specialized code here and/or...
  8. Replies
    2
    Views
    958

    Thanks!

    Thanks alan_doh

    That was an old project I was working on. At that time I ended up given up and forget about the thumbnail thing.

    I'll try andlet you know!!

    Thanks again,

    Ric
  9. Thread: Crystal Report

    by RIC_V
    Replies
    579
    Views
    637,667

    Dear NasirAbbas, I was facing the same problem...

    Dear NasirAbbas,

    I was facing the same problem with my VB6 and CR9 app.

    LogoffServer worked fine for me. Everytime I close my viewer window I Logoffserver.

    cReport.Database.LogOffServer...
  10. Replies
    0
    Views
    649

    Crystal Report Chart - Logarithm

    Hi people!

    I included a chart (bar type) in a report where the data fields are in completely different rage, for example;

    field 1 = 0,820
    filed 2 = 53.000,000

    I´m trying to use the...
  11. Thread: Crystal Report

    by RIC_V
    Replies
    579
    Views
    637,667

    CR9 VB6 Database location

    Hi People,

    How can I set the database location at runtime from my vb app? When i was using an old version of Crystal report i was allowed to set "same as report".

    Thanks in advance.

    Ricardo
  12. Thread: Crystal Report

    by RIC_V
    Replies
    579
    Views
    637,667

    Inserting a Graph

    Hi!,

    I´m trying to insert a Graph (vertical bars) on my report without success. There are three AccessDB fields that need to be shown in the graph (as a bar each).

    I created a summary for...
  13. Thread: Thread advice

    by RIC_V
    Replies
    2
    Views
    547

    Thanks alot ReorX. That´s exactly what I had on...

    Thanks alot ReorX. That´s exactly what I had on mind (allthough I´ll have do some research from now on to implement it...no problem!!!).

    Anymore tips from experts will be very welcomed.
    ...
  14. Thread: Thread advice

    by RIC_V
    Replies
    2
    Views
    547

    Thread advice

    Hi,

    I'm developing a Dialog based app which has a form for user input and is supposed to be always available while the program is running . At the same time I need to monitor the serial port and...
  15. Thread: Dynamic Text Box

    by RIC_V
    Replies
    3
    Views
    842

    Exactly solarflare!! Sorry about the way I...

    Exactly solarflare!!

    Sorry about the way I wrote. The point is...I don´t want just to update it...i need to keep all the previous info. displayed and then automatically scroll as new info....
  16. Thread: Dynamic Text Box

    by RIC_V
    Replies
    3
    Views
    842

    Dynamic Text Box

    I´m writing an app where I need to show the info. I get from serial port (after processing it) in a Text box.

    My intention is to have an small box where the info. are presented just like "Movie...
  17. Replies
    1
    Views
    478

    OLE container in a Dialg Based

    I am not able to include a class derived from a COleClientItem base class in my dialog based app.

    Could some body give some info. on that? I´m looking on the MSDN for that and, apparently, I...
  18. Thread: OLE Control

    by RIC_V
    Replies
    1
    Views
    586

    OLE Control

    I need to include a OLE control in my app. Since I´m new on that any help will be appreciated.

    I´m trying to include the "Microsoft PowerPoint Slide" object in my dialog app. I´ve done that on...
  19. Replies
    4
    Views
    815

    That´s it guys!! Your info. were very useful as...

    That´s it guys!! Your info. were very useful as usual!!

    I decided to read line by line instead of loading all the file on the memory and it´s been working fine so far. I´m not sure about the...
  20. Replies
    4
    Views
    815

    Fiding a string in a text file

    What´s the fastest way to find a string in a text file (among hundreds of words)? I´m developing a app that needs to filter some "Text Messages" using the words stored in a text file.

    Any help...
  21. Replies
    2
    Views
    958

    PowerPoint Thumbail

    Does anyone know how to show the slides of a power point presentation as a Thumbnail on a Dialog app? Is that possible?

    Thanks in advance.
  22. Replies
    2
    Views
    1,199

    That´s it Jeff!! Thank you very much again. ...

    That´s it Jeff!!

    Thank you very much again.

    Ric.

    P.S. As you noticed I´m pretty new on the Visual Studio tools!!
  23. Replies
    2
    Views
    1,199

    PowerPoint Automation

    I´m trying to do an app for PowerPoint automation. Since I am really knew on this I was woundering:

    How could I know what are the possible values that I could use for the methods I´ve found.
    ...
  24. Replies
    3
    Views
    604

    Thanks again guys!!!!

    Thanks again guys!!!!
  25. Replies
    3
    Views
    604

    Variables in a Dialog app

    I need to access the main window variables in a Dialog base app, from a child dialog. Can I access them directly or i need to create another variable and transfer its content?

    Anyone could help...
Results 1 to 25 of 30
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured