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

Managed C++/CLI

 
AnswerRe: Win32 .exe with out console. Pin
Richard MacCutchan19-Oct-10 23:28
mveRichard MacCutchan19-Oct-10 23:28 
GeneralRe: Win32 .exe with out console. Pin
Nish Nishant20-Oct-10 4:01
sitebuilderNish Nishant20-Oct-10 4:01 
GeneralRe: Win32 .exe with out console. Pin
Richard MacCutchan20-Oct-10 4:22
mveRichard MacCutchan20-Oct-10 4:22 
AnswerRe: Win32 .exe with out console. Pin
Nish Nishant20-Oct-10 4:02
sitebuilderNish Nishant20-Oct-10 4:02 
Questionsearching registry keys. Pin
birajendu19-Oct-10 20:18
birajendu19-Oct-10 20:18 
AnswerRe: searching registry keys. Pin
Richard MacCutchan19-Oct-10 23:25
mveRichard MacCutchan19-Oct-10 23:25 
AnswerRe: searching registry keys. Pin
Nish Nishant20-Oct-10 4:00
sitebuilderNish Nishant20-Oct-10 4:00 
Questionhow to read a file in C++ Pin
rezen8518-Oct-10 18:01
rezen8518-Oct-10 18:01 
hi,i am trying to use arrays to read text from a file on another location before sending it out byte by byte but i not very familiar with using arrays for my coding,so if you could do help me correct my coding.

C++
void loop()
{

  char Msg[]={"Hello"};
  char *start;
  int i=0;

  // Creating a connection to a device
  if(!BT.createConnection("0017E5F1CD3B","02"))//It creates a connection to the desired device which is operating on the service channel '02'
  {
    USB.println("");
    USB.print("--- CONNECTION -- MTU: ");
    USB.print(BT.connection_mtu[0],BYTE);//Stores the maximum amount of data that can be sent
    USB.print(BT.connection_mtu[1],BYTE);
    USB.println(BT.connection_mtu[2],BYTE);    
  }
  else USB.println("Connection failed");

  start=Msg;
  
  // Sending the data to the opened connection
  if(USB.println("Data sent OK");
  else USB.println("Error while sending data");
      
  // Removing the connection previously opened 
  if(!BT.removeConnection()) USB.println("Connection removed");
  else USB.println("Error while removing connection");  
  
  // Removing a trusted device
  if(!BT.removeTrustedDevice("0017E5F1CD3B")) USB.println("Trusted Device removed");//0017E5F1CD3B==MAC address of PDA

  else USB.println("Error while removing trusted device");

  // Powering Down BT
  BT.OFF();
}

AnswerRe: how to read a file in C++ Pin
Richard MacCutchan18-Oct-10 22:46
mveRichard MacCutchan18-Oct-10 22:46 
GeneralRe: how to read a file in C++ Pin
rezen8518-Oct-10 23:05
rezen8518-Oct-10 23:05 
GeneralRe: how to read a file in C++ Pin
Richard MacCutchan19-Oct-10 0:21
mveRichard MacCutchan19-Oct-10 0:21 
AnswerRe: how to read a file in C++ Pin
Nish Nishant19-Oct-10 1:59
sitebuilderNish Nishant19-Oct-10 1:59 
QuestionMessage Removed Pin
15-Oct-10 2:20
ptr_Electron15-Oct-10 2:20 
AnswerRe: MFC Serilization :mechanism for splitting the serialize( ) method into Load() and Save() Pin
Nish Nishant15-Oct-10 7:19
sitebuilderNish Nishant15-Oct-10 7:19 
QuestionApplication crashes at RichEditCtrl.StremOut(), It says attempt to read write protected memory. this ffetne an indication that the other memory is corrupt Pin
ptr_Electron15-Oct-10 1:06
ptr_Electron15-Oct-10 1:06 
AnswerRe: Application crashes at RichEditCtrl.StremOut(), It says attempt to read write protected memory. this ffetne an indication that the other memory is corrupt Pin
Richard MacCutchan15-Oct-10 2:16
mveRichard MacCutchan15-Oct-10 2:16 
GeneralRe: Application crashes at RichEditCtrl.StremOut(), It says attempt to read write protected memory. this ffetne an indication that the other memory is corrupt Pin
ptr_Electron15-Oct-10 2:44
ptr_Electron15-Oct-10 2:44 
GeneralRe: Application crashes at RichEditCtrl.StremOut(), It says attempt to read write protected memory. this ffetne an indication that the other memory is corrupt Pin
Richard MacCutchan15-Oct-10 5:53
mveRichard MacCutchan15-Oct-10 5:53 
AnswerRe: Application crashes at RichEditCtrl.StremOut(), It says attempt to read write protected memory. this ffetne an indication that the other memory is corrupt Pin
Nish Nishant15-Oct-10 7:20
sitebuilderNish Nishant15-Oct-10 7:20 
QuestionUsing Managed objects in Unmanaged class Pin
Anu_Bala12-Oct-10 19:43
Anu_Bala12-Oct-10 19:43 
AnswerRe: Using Managed objects in Unmanaged class Pin
Nish Nishant13-Oct-10 9:30
sitebuilderNish Nishant13-Oct-10 9:30 
GeneralRe: Using Managed objects in Unmanaged class Pin
Anu_Bala13-Oct-10 17:45
Anu_Bala13-Oct-10 17:45 
GeneralRe: Using Managed objects in Unmanaged class Pin
Nish Nishant14-Oct-10 4:23
sitebuilderNish Nishant14-Oct-10 4:23 
GeneralRe: Using Managed objects in Unmanaged class Pin
Anu_Bala14-Oct-10 17:21
Anu_Bala14-Oct-10 17:21 
GeneralRe: Using Managed objects in Unmanaged class Pin
Anu_Bala14-Oct-10 18:06
Anu_Bala14-Oct-10 18:06 

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.