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

Managed C++/CLI

 
GeneralRe: Serial Port BytesToRead always 0 Pin
cibec75455@frnla.com21-May-21 1:47
cibec75455@frnla.com21-May-21 1:47 
QuestionHow to call System::Windows::Forms::Controls "invoke" method? Pin
Member 1515077819-May-21 19:48
Member 1515077819-May-21 19:48 
AnswerRe: How to call System::Windows::Forms::Controls "invoke" method? Pin
Victor Nijegorodov19-May-21 20:28
Victor Nijegorodov19-May-21 20:28 
GeneralRe: How to call System::Windows::Forms::Controls "invoke" method? Pin
Member 1515077819-May-21 20:35
Member 1515077819-May-21 20:35 
GeneralRe: How to call System::Windows::Forms::Controls "invoke" method? Pin
Richard MacCutchan19-May-21 21:09
mveRichard MacCutchan19-May-21 21:09 
GeneralRe: How to call System::Windows::Forms::Controls "invoke" method? Pin
Member 1515077819-May-21 21:20
Member 1515077819-May-21 21:20 
QuestionWhat is a preferable approach to develop a common class that handles multiple identical groupbox? Pin
Member 1515077818-May-21 0:41
Member 1515077818-May-21 0:41 
QuestionHow to convert array<System::Byte^>^ to array<unsigned char>^ Pin
Member 1515077812-May-21 18:19
Member 1515077812-May-21 18:19 
I have an pointer to an array of System::Byte pointers, and im trying to use the SerialPort.Write function that only accepts
array<unsigned char>^


It is necessary that I used System::Byte pointers because the value of byte array needs to be update from time to time during runtime.


heres my sample code
System::Void MyForm::button1_Click(System::Object^ sender, System::EventArgs^ e)
{

    array<System::Byte^>^ myArray = gcnew array<System::Byte^>(10U);
    myArray[0] = (System::Byte) 0x01;
    myArray[1] = (System::Byte) 0x02;
    myArray[2] = (System::Byte) 0x03;
    myArray[3] = (System::Byte) 0x04;
    myArray[4] = (System::Byte) 0x05;
    myArray[5] = (System::Byte) 0x06;
    myArray[6] = (System::Byte) 0x07;
    myArray[7] = (System::Byte) 0x08;
    myArray[8] = (System::Byte) 0x09;
    myArray[9] = (System::Byte) 0x10;
    SerialPort1->Write(myArray,0,10U);/*ERROR,E0304  no instance of overloaded function "System::IO::Ports::SerialPort::Write" matches the argument list; argument types are: (cli::array<System::Byte ^, 1> ^, int, unsigned int)*/
        object type is: System::IO::Ports::SerialPort ^

}


modified 13-May-21 0:27am.

QuestionRe: How to convert array<System::Byte^>^ to array<unsigned char>^ Pin
Richard MacCutchan12-May-21 21:05
mveRichard MacCutchan12-May-21 21:05 
AnswerRe: How to convert array<System::Byte^>^ to array<unsigned char>^ Pin
Member 1515077817-May-21 0:06
Member 1515077817-May-21 0:06 
QuestionHow to implement a global variable if C++/CLI doesn't support it at all? Pin
Member 1515077811-May-21 23:29
Member 1515077811-May-21 23:29 
AnswerRe: How to implement a global variable if C++/CLI doesn't support it at all? Pin
Richard MacCutchan11-May-21 23:47
mveRichard MacCutchan11-May-21 23:47 
GeneralRe: How to implement a global variable if C++/CLI doesn't support it at all? Pin
Member 1515077812-May-21 18:30
Member 1515077812-May-21 18:30 
Questioncpp Pin
likith adithya21-Feb-21 23:39
likith adithya21-Feb-21 23:39 
QuestionRe: cpp Pin
Richard MacCutchan21-Feb-21 23:40
mveRichard MacCutchan21-Feb-21 23:40 
AnswerRe: cpp Pin
Richard Deeming22-Feb-21 0:34
mveRichard Deeming22-Feb-21 0:34 
QuestionSee if print queue is empty Pin
Erich Ruth17-Feb-21 6:25
Erich Ruth17-Feb-21 6:25 
AnswerRe: See if print queue is empty Pin
Richard MacCutchan17-Feb-21 21:29
mveRichard MacCutchan17-Feb-21 21:29 
QuestionCompiling a shared library Pin
Member 1504770716-Jan-21 5:57
Member 1504770716-Jan-21 5:57 
AnswerRe: Compiling a shared library Pin
Gerry Schmitz17-Jan-21 3:09
mveGerry Schmitz17-Jan-21 3:09 
GeneralRe: Compiling a shared library Pin
Member 1504770718-Jan-21 3:52
Member 1504770718-Jan-21 3:52 
GeneralRe: Compiling a shared library Pin
Gerry Schmitz18-Jan-21 5:40
mveGerry Schmitz18-Jan-21 5:40 
Question.NET 5? Pin
John Schroedl5-Jan-21 4:13
professionalJohn Schroedl5-Jan-21 4:13 
AnswerRe: .NET 5? Pin
Richard Andrew x6418-Jan-21 12:03
professionalRichard Andrew x6418-Jan-21 12:03 
GeneralRe: .NET 5? Pin
John Schroedl19-Jan-21 2:39
professionalJohn Schroedl19-Jan-21 2:39 

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.