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

Search:

Type: Posts; User: Akademos

Page 1 of 11 1 2 3 4

Search: Search took 0.18 seconds.

  1. Strange Behaviour: Application Pseudofreezes

    Hello out there,
    recently I started to observe a strange behaviour in an application of mine:

    The Programm is running without problem but if it is minimized to the taskbar or isn't in foreground...
  2. Replies
    1
    Views
    6,950

    Strange behaviour with MultiByteToWideChar

    Hello,
    we've got an application which runs on Windows CE 6. Basically hte application is doing HTTP-Request and displaying the result.

    When the response of a request is received it will be but in...
  3. Replies
    0
    Views
    4,467

    CE 6.0 IHTMLDocument2 don't execute scripts

    Hello,
    I've got a program written in C++. It was working fine on former versions of Windows CE but now I've got a probleam that the the browser windows I'm using inside that application didn't...
  4. Replies
    2
    Views
    5,221

    Re: Link 2019 Error and __ftol2_sse

    Thx, now it compiles, links and works.
  5. Replies
    2
    Views
    5,221

    Link 2019 Error and __ftol2_sse

    Hi,
    after years programming in ABAP I've coming back to c++.
    I've got a task to convert a c++-project from Code::Blocks to
    a Visual Studio Project. For that i've downloaded the latest Visual...
  6. Replies
    0
    Views
    2,858

    Strange behavior with Linq

    Hi,
    I've got following XML:



    <?xml version="1.0" encoding="utf-8"?>
    <root>
    <Map livescore="Arka Gdynia" betfair=" Arka Gdynia" />
    <Map livescore="Wisla Krakow" betfair="Wisla Krakow "...
  7. Replies
    3
    Views
    1,082

    Strange expection with invalid Cast

    Hello there,
    I've wrote a programm. While the program is started plugins are loaded.
    That worked well. Now I added a new plugin and recompiled all.
    Yet I got a exception during the loading of a...
  8. Replies
    3
    Views
    738

    Re: classes and interface

    And a book about Object Oriented Design(OOD) or Design Patterns.
  9. Replies
    6
    Views
    909

    Re: run without debug

    You could also use the functionality out of the System.Diagnostic.Trace class.
    It has a similar functionallity as the System.Diagnostic.Debug class. The advantage or disadvantage of the Trace class...
  10. Replies
    2
    Views
    859

    Re: My UserControl is only displayed once.

    Sorry for late reply, but I was on a buisness trip.
    In the attachment there is my project. It is a #develop-project but it should also be easy to create a VS.NET-project from the files. Perhaps some...
  11. Replies
    2
    Views
    859

    My UserControl is only displayed once.

    Hi, I've got a simple UserControl:


    public class CtlStandardPlace : System.Windows.Forms.UserControl
    {
    private SimuObject m_place;
    public SimuObject Place
    {
    get
    {
  12. Thread: Unions in C#?

    by Akademos
    Replies
    0
    Views
    1,011

    Unions in C#?

    Hi,
    I've got in an old C++ program a struct in which a integer was stored. The integer was some encoded way for storing a time value. For that the struct was build up as a union:


    struct...
  13. Parts of Programm didn't work after deployment

    Hi,
    I've got following strange problem. My working computer is part of a domain. Our development server with the source codes is also part of the same domain. I've got "Full Trust" to my code. One...
  14. Change docking order in VS.NET 2003 Designer

    Hi,
    I've got following problem:
    In VS.NET 2003 I've got a form with 2 elements. 1 with docking bottom and 1 with docking fill. Now I want to add a new control e.g. a splitter and give it also the...
  15. mhm, strange thing. When you save your report do...

    mhm, strange thing. When you save your report do you set the option "Save report with data" to true or to false?
  16. Replies
    0
    Views
    3,696

    c#, DTS and Threads

    Hi,
    I've got a c#-winforms application. One task of that application is to execute a SQL-Server DTS package. I imported DTS into .NET like Microsoft descriped it. In my first attempt I executed the...
  17. Replies
    2
    Views
    1,591

    Resize Columns after Scrollbar appears

    In a C# Programm of mine I'm using a ListView. The ListVieew owns columns. In an iniatialisation phase i'm setting the width of the columns. At a later point of time listview items can be added by...
  18. I normally do it this way: private bool...

    I normally do it this way:



    private bool ConnectDB( )
    {
    Database crDatabase;
    Tables crTables;
    ...
  19. Replies
    0
    Views
    513

    Get all availible Paper sizes of printer

    Hi,
    How can i enumerate all predifined paper sizes (like Din A4, DIN A3 ) a given printer is able to use without MFC?

    Thanks in Advance

    Akademos
  20. I added it into a dialog-resource via the "Insert...

    I added it into a dialog-resource via the "Insert ActiveX-Control" Context-menu in the resource designer. So I've got a CExplorer1 class derived from CWindow.
  21. deactivate contextmenu in Webbrowser control under MFC

    Hi,
    I've got a MFC-programm in which i included the Microsoft Webbrowser control. Now I want to deactivate that the contextmenu is shown when the user rightclicks on the control. But I've got no...
  22. changing printing to landscape first recognized the second time

    Hi, I'm doing some printing issues with MFC in VS.NET 2003.
    I want to change the format of printing to landscape. For that case I added these lines of code my OnBeginPrinting function:



    //...
  23. Getting System.ArgumentException with DataSet and XML

    Hi,
    I've got following XML-XSD:


    xs:schema id="trace" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    xs:element name="trace"...
  24. Replies
    0
    Views
    609

    Asp.net project on a remote server

    Hi,
    I've got an asp.net-project with codebehind. First I created it locally in
    my Inetpub-directory. It worked well. Now the structure at my workingplace
    is that we've got a development server on...
  25. You're right, what a stupidy of mine. This is...

    You're right, what a stupidy of mine.
    This is the correct code:


    [ DllImport( "..\\mydll.dll", CharSet=CharSet.Unicode ) ]
    internal static extern bool GetDatabaseInfo( uint uiBuffCnt,
    ...
Results 1 to 25 of 264
Page 1 of 11 1 2 3 4





Click Here to Expand Forum to Full Width

Featured