Click here to Skip to main content
15,867,835 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: c++ forms 2022 code Pin
Richard MacCutchan17-Jun-22 3:56
mveRichard MacCutchan17-Jun-22 3:56 
QuestionI want to write a C++/CLI wrapper class library which can be utilized in both C++ and C# applications. Pin
Member 121624009-Jun-22 21:45
Member 121624009-Jun-22 21:45 
Questionsimplifying code Pin
hshan_15-Mar-22 6:30
hshan_15-Mar-22 6:30 
AnswerRe: simplifying code Pin
Victor Nijegorodov15-Mar-22 9:22
Victor Nijegorodov15-Mar-22 9:22 
GeneralRe: simplifying code Pin
Ghazi Warrior22-Mar-22 19:46
Ghazi Warrior22-Mar-22 19:46 
GeneralRe: simplifying code Pin
hshan_19-Apr-22 3:35
hshan_19-Apr-22 3:35 
AnswerRe: simplifying code Pin
Craig Robbins15-Mar-22 9:25
Craig Robbins15-Mar-22 9:25 
QuestionConvert From C# To Visual C++ 2015 Pin
Paramu197313-Dec-21 20:21
Paramu197313-Dec-21 20:21 
Hi,
I need to generate the following XML codes. And Iam using VS2015.
<TALLYMESSAGE xmlns:UDF="TallyUDF">
  <VOUCHER VCHTYPE="Sales" ACTION="Create">
     <VOUCHERTYPENAME>Sales</VOUCHERTYPENAME>
     <ALLLEDGERENTRIES.LIST>
        <REMOVEZEROENTRIES>No</REMOVEZEROENTRIES>
        <ISDEEMEDPOSITIVE>Yes</ISDEEMEDPOSITIVE>
        <LEDGERFROMITEM>No</LEDGERFROMITEM>
        <LEDGERNAME>Customer 1</LEDGERNAME>
        <AMOUNT>-5000</AMOUNT>
     </ALLLEDGERENTRIES.LIST>
  </VOUCHER>
</TALLYMESSAGE>
For That from our website quick answers, I received the following codes in C#.
[XmlRoot(ElementName="ALLLEDGERENTRIES.LIST")]
public class ALLLEDGERENTRIESLIST { 

    [XmlElement(ElementName="REMOVEZEROENTRIES")] 
    public string REMOVEZEROENTRIES { get; set; } 

    [XmlElement(ElementName="ISDEEMEDPOSITIVE")] 
    public string ISDEEMEDPOSITIVE { get; set; } 

    [XmlElement(ElementName="LEDGERFROMITEM")] 
    public string LEDGERFROMITEM { get; set; } 

    [XmlElement(ElementName="LEDGERNAME")] 
    public string LEDGERNAME { get; set; } 

    [XmlElement(ElementName="AMOUNT")] 
    public int AMOUNT { get; set; } 
}
[XmlRoot(ElementName="VOUCHER")]
public class VOUCHER { 

    [XmlElement(ElementName="VOUCHERTYPENAME")] 
    public string VOUCHERTYPENAME { get; set; } 

    [XmlElement(ElementName="ALLLEDGERENTRIES.LIST")] 
    public ALLLEDGERENTRIESLIST ALLLEDGERENTRIESLIST { get; set; } 

    [XmlAttribute(AttributeName="VCHTYPE")] 
    public string VCHTYPE { get; set; } 

    [XmlAttribute(AttributeName="ACTION")] 
    public string ACTION { get; set; } 

    [XmlText] 
    public string Text { get; set; } 
}
[XmlRoot(ElementName="TALLYMESSAGE")]
public class TALLYMESSAGE { 

    [XmlElement(ElementName="VOUCHER")] 
    public VOUCHER VOUCHER { get; set; } 

    [XmlAttribute(AttributeName="UDF")] 
    public string UDF { get; set; } 

    [XmlText] 
    public string Text { get; set; } 
}
Is It possible to convert this From C# to Visual C++ 2015.

My heartiest thanks for all helps
Always Thank To Richard & Victor & Other Superiors, those who are having kind hearts.
Thank Again
Rant[REPOST] Convert From C# To Visual C++ 2015 Pin
Richard Deeming13-Dec-21 21:56
mveRichard Deeming13-Dec-21 21:56 
GeneralRe: [REPOST] Convert From C# To Visual C++ 2015 Pin
Paramu197316-Dec-21 21:14
Paramu197316-Dec-21 21:14 
AnswerRe: Convert From C# To Visual C++ 2015 Pin
Richard MacCutchan13-Dec-21 21:58
mveRichard MacCutchan13-Dec-21 21:58 
GeneralRe: Convert From C# To Visual C++ 2015 Pin
Paramu197316-Dec-21 21:35
Paramu197316-Dec-21 21:35 
AnswerRe: Convert From C# To Visual C++ 2015 Pin
Dave Kreskowiak14-Dec-21 5:05
mveDave Kreskowiak14-Dec-21 5:05 
QuestionopenFileDialog - AccessViolationException was unhandled Pin
Paramu19734-Oct-21 12:28
Paramu19734-Oct-21 12:28 
AnswerRe: openFileDialog - AccessViolationException was unhandled Pin
Victor Nijegorodov5-Oct-21 21:26
Victor Nijegorodov5-Oct-21 21:26 
GeneralRe: openFileDialog - AccessViolationException was unhandled Pin
Paramu19736-Oct-21 3:17
Paramu19736-Oct-21 3:17 
QuestionConvert/cast System::Array class to List Pin
yehiga146710-Jun-21 17:51
yehiga146710-Jun-21 17:51 
AnswerRe: Convert/cast System::Array class to List Pin
Victor Nijegorodov10-Jun-21 20:27
Victor Nijegorodov10-Jun-21 20:27 
AnswerRe: Convert/cast System::Array class to List Pin
Richard Andrew x6427-Jun-21 6:52
professionalRichard Andrew x6427-Jun-21 6:52 
QuestionC# and c++/cli problem on x86 OS Pin
Duc Axenn30-May-21 10:25
Duc Axenn30-May-21 10:25 
AnswerRe: C# and c++/cli problem on x86 OS Pin
Dave Kreskowiak10-Jun-21 18:51
mveDave Kreskowiak10-Jun-21 18:51 
QuestionManaged c++ how to memcpy a handle reference Pin
yehiga146727-May-21 23:25
yehiga146727-May-21 23:25 
AnswerRe: Managed c++ how to memcpy a handle reference Pin
Victor Nijegorodov28-May-21 0:25
Victor Nijegorodov28-May-21 0:25 
GeneralRe: Managed c++ how to memcpy a handle reference Pin
yehiga146728-May-21 0:55
yehiga146728-May-21 0:55 
GeneralRe: Managed c++ how to memcpy a handle reference Pin
Victor Nijegorodov28-May-21 1:45
Victor Nijegorodov28-May-21 1:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.