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

Search:

Type: Posts; User: kakalake

Page 1 of 15 1 2 3 4

Search: Search took 0.14 seconds.

  1. Confusion about observable patterns in layered architecture

    Hello,

    I want to know the advantages and disavtantages of several decoupling/observable techinques like Singal-Slot-Pattern, Listener-/Observer-Pattern or simple interface injection.
    When you...
  2. Replies
    0
    Views
    635

    Delegate with instance method

    Hi,

    I want to call a instance method with a Action or Function delegate but it seems so that the delegates calls a static method



    private struct RoomPillar
    {
    ...
  3. Replies
    4
    Views
    1,231

    Re: DataContract: Extract/convert old values

    Hello,

    I know that I can change the mapping between the property name and the xml document element with the mentioned attribute or the DataMember attribute. But I am looking for a possiblity to...
  4. Replies
    4
    Views
    1,231

    DataContract: Extract/convert old values

    Hello,

    how can I extract values from a xml-file that cannot be deserialized? I changed the name in my code to WindowShoulder and the name in the xml-DB is WindowSize. Now all of the values can be...
  5. Replies
    0
    Views
    594

    XML XSD Problem

    Hello,

    is there a possibility to reference to a specified type dependent on the value of an element attribute.

    For example:


    <xs:complexType name="MConfiguration">
    <!-- MConfiguration...
  6. Replies
    15
    Views
    1,537

    Re: Some STL details

    If you want to see some more details about the implementations of stl classes you can search your source path for the stl files. Almost all of the stl classes uses templates, so you can have a look...
  7. Replies
    9
    Views
    961

    Re: Compiling mode of template function

    Hello,

    template declaration and definition have to be in the same file (header file). There is another possiblity to seperate the declaration and definition of templates (inc files) but this...
  8. Replies
    6
    Views
    2,392

    Re: Insert auto_increment

    Hello,

    first thanks for your reply...

    You are right with the tableA and tableB. Additional to that you are right with the setup of my DB. I am using a local sql compact express DB and in the...
  9. Replies
    6
    Views
    2,392

    Re: Insert auto_increment

    It is possible that I did somthing else wrong. I created 2 tables and added a relation between 2 columns of this tables. The relation requires that the id column of both tables have to be primary...
  10. Replies
    6
    Views
    2,392

    Re: Insert auto_increment

    Hello,

    I get the error: The column cannot contain null values

    The id value is a primary and unique key and if it is a primary key the value cannot be null.
  11. Replies
    6
    Views
    2,392

    Insert auto_increment

    Hello,

    I defined a id as primary key with a relation to another id of another table. Now I try to change the insert query so that the user have not to define the id (defined as auto increment,...
  12. Thread: Friend member

    by kakalake
    Replies
    1
    Views
    724

    Friend member

    Hello,

    I want to access the member of a class that is declared as protected from another class. Is there a equivalent to the C++ Friend keyword? I want to do the following thing:




    public...
  13. Replies
    3
    Views
    7,173

    Re: XML Schema for key-value pair dictionary

    First thanks for your reply....

    Can I do something like that?



    <TestElementSequence>
    <abc>123<abc/>
    <def>456<def/>
    </TestElementSequence>
  14. Replies
    3
    Views
    7,173

    XML Schema for key-value pair dictionary

    Hello,

    I am looking for a XML Schema that produces me a dictionary<string,string> code. The Key should be the Tag-Name and the value the value inside this tag:



    <TestSequence>
    ...
  15. Re: Combine Property classes in one propertygrid

    Thanks for your answer...

    Is there another possibility to solve my problem?
  16. Re: Combine Property classes in one propertygrid

    If I have two classes where I want to change the class attributes then I can only select one class at a time with the SelectObject Method. Now I am looking for a possibility to change the class...
  17. Combine Property classes in one propertygrid

    Hello,

    I want to combine/merge the properties of one or more classes into only one property grid. I tried the following approach:



    object [] props = new object[] { prop1Instance,...
  18. Replies
    4
    Views
    2,307

    Re: Weak assembly binding

    Hello,

    the runtime can find one of the assemblies located either in the directory 0.1 or 0.0. The search path for the runtime is specified by the probing privatePath tag in my application...
  19. Replies
    4
    Views
    2,307

    Re: Weak assembly binding

    Now I gave my assembly a strong name and tried to select the assembly by version but it doesn't work. I have the following application configuration file:



    <configuration>
    <runtime>
    ...
  20. Replies
    4
    Views
    2,307

    Weak assembly binding

    Hello,

    is there a possibility to put my assemblies with different version under the directory or subdirectory of my executing application and to tell the application which assembly versions to...
  21. Load assembly at runtime with specified version

    Hello,

    I have two assemblies with the same name but with different assembly version. The assemblies don't have a strong name. Each of the assemblies reside in two different directories.
    ...
  22. Replies
    1
    Views
    1,611

    Open Pipe to exisiting process

    Hello,

    I want to open a pipe to a already running process. How can I do this with C#. My application I want to pipe commands to is Gnuplot.....

    Thanks in advance
  23. Replies
    0
    Views
    926

    Graphic card shared memory mapping

    Hello,

    I want to know where graphic cards that uses shared memory maps their memory. In user/application or in system space? Does this type of graphic cards fragment the memory of an application?...
  24. Replies
    9
    Views
    1,545

    Re: form close issue

    Hi,

    first thanks a lot for all your resposes. I found my error. The form register a delegate to a singelton object. So the singleton object has the whole lifetime of the application a handle to...
  25. Replies
    9
    Views
    1,545

    Re: form close issue

    Hello,

    I found out that removing the statusItem leads to the behavior I am looking for. The GC collects the old disposed forms. But what is wrong with my statusItem? Why does this element (and a...
Results 1 to 25 of 369
Page 1 of 15 1 2 3 4





Click Here to Expand Forum to Full Width

Featured