Click here to Skip to main content
15,906,455 members
Home / Discussions / C#
   

C#

 
GeneralRe: week numbers Pin
robmays16-Apr-04 19:33
robmays16-Apr-04 19:33 
GeneralRe: week numbers Pin
Heath Stewart19-Apr-04 2:06
protectorHeath Stewart19-Apr-04 2:06 
Generalan error with tabpage Pin
robmays19-Apr-04 3:57
robmays19-Apr-04 3:57 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 3:58
protectorHeath Stewart19-Apr-04 3:58 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 4:06
robmays19-Apr-04 4:06 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 4:21
protectorHeath Stewart19-Apr-04 4:21 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:14
robmays19-Apr-04 6:14 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 6:27
protectorHeath Stewart19-Apr-04 6:27 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:32
robmays19-Apr-04 6:32 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 8:26
robmays19-Apr-04 8:26 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:38
robmays19-Apr-04 6:38 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 8:42
protectorHeath Stewart19-Apr-04 8:42 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 4:13
robmays19-Apr-04 4:13 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 4:17
protectorHeath Stewart19-Apr-04 4:17 
Generalignore my last comment Pin
robmays16-Apr-04 21:53
robmays16-Apr-04 21:53 
GeneralPassing data between forms Pin
Chintan Vaishya15-Apr-04 23:57
Chintan Vaishya15-Apr-04 23:57 
GeneralRe: Passing data between forms Pin
Colin Angus Mackay16-Apr-04 2:14
Colin Angus Mackay16-Apr-04 2:14 
GeneralReflection Pin
Braulio Dez15-Apr-04 23:36
Braulio Dez15-Apr-04 23:36 
GeneralRe: Reflection Pin
Heath Stewart19-Apr-04 4:32
protectorHeath Stewart19-Apr-04 4:32 
GeneralUsing ActiveX In a windows service Pin
Big Trev15-Apr-04 22:42
Big Trev15-Apr-04 22:42 
GeneralRe: Using ActiveX In a windows service Pin
Heath Stewart19-Apr-04 4:37
protectorHeath Stewart19-Apr-04 4:37 
Generalpassing strings between ATL and c# Pin
rana7415-Apr-04 16:25
rana7415-Apr-04 16:25 
We have a strange problem in equating string and BSTR between a ATL server and c# client.
I have given a similar sample below.
What am i doing wrong?

c# client
=====

AirlineInfoObjClass _aobj=new AirlineInfoObjClass();
string _time=_aobj.GetAirlineTiming("IC5678");
Console.WriteLine("The timing is {0}", _time);


ATL DLL
=====
STDMETHODIMP CAirlineInfoObj::GetAirlineTiming(BSTR bstrAirline, BSTR *pbstrDetails)
{
// TODO: Add your implementation code here
USES_CONVERSION;
BSTR m_Airline=SysAllocString(L"IC5678");



if(m_Airline == bstrAirline)
{
*pbstrDetails = SysAllocString (L"16:45:00 - Will arrive at Terminal 3");

}
else
{
// Return the Airline name if not found
*pbstrDetails = bstrAirline;

}
return S_OK;

}

The above always returns me the airline name,while theoretically it should return the "16:45:00........" message.Can someone help?

GeneralRe: passing strings between ATL and c# Pin
Mike Dimmick16-Apr-04 1:01
Mike Dimmick16-Apr-04 1:01 
GeneralRe: passing strings between ATL and c# Pin
RNEELY16-Apr-04 7:03
RNEELY16-Apr-04 7:03 
Generalerror progation from ATL to c# Pin
rana7415-Apr-04 16:24
rana7415-Apr-04 16:24 

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.