 |
|
|
|
| Author |
Message |
dyankovich
Joined: 08 Feb 2008 Posts: 9
|
Posted: Fri Feb 08, 2008 5:40 am Post subject: SimWriteMessage issue |
|
|
Hi,
There are many exclamations that SimWriteMessage doesn't work at all.
My own experience shows me that it's still not operational in Windows
Mobile 6.0
Is there anyone who successfully used that method?
Br,
Dmitry
Archived from group: microsoft>public>pocketpc>developer |
|
| Back to top |
|
 |
Peter Foot
Joined: 01 Sep 2007 Posts: 56
|
Posted: Fri Feb 08, 2008 4:02 pm Post subject: Re: SimWriteMessage issue |
|
|
I've not seen that it doesn't work. What are you trying to do?
Peter
--
Peter Foot
Microsoft Device Application Development MVP
www.peterfoot.net | www.inthehand.com
In The Hand Ltd - .NET Solutions for Mobility
wrote in message @v67g2000hse.googlegroups.com...
> Hi,
>
> There are many exclamations that SimWriteMessage doesn't work at all.
> My own experience shows me that it's still not operational in Windows
> Mobile 6.0
> Is there anyone who successfully used that method?
>
> Br,
> Dmitry |
|
| Back to top |
|
 |
dyankovich
Joined: 08 Feb 2008 Posts: 9
|
Posted: Fri Feb 08, 2008 8:46 am Post subject: Re: SimWriteMessage issue |
|
|
Please see the code snippet below:
I've always get 0x80070057(E_INVALIDARG) as a result of calling
SimWriteMessage.
The previous part (reading and deletion of message in the specified
cell) is optional. I've tried to debug without that code but still
without any success.
JFYI: SimReadMessage and SimDeleteMessage work without any troubles.
void StartTest()
{
HSIM hSim = NULL;
HRESULT hr = S_OK;
do
{
hr = ::SimInitialize(0, 0, 0, &hSim);
if (FAILED(hr))
{
break;
}
DWORD smsUsed = 0;
DWORD smsTotal = 0;
hr = ::SimGetSmsStorageStatus(hSim, SIM_SMSSTORAGE_SIM, &smsUsed,
&smsTotal);
if (FAILED(hr))
{
break;
}
SIMMESSAGE simMsg;
memset(&simMsg, 0, sizeof(SIMMESSAGE));
simMsg.cbSize = sizeof(simMsg);
DWORD dwIndex = 9;
hr = ::SimReadMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex, &simMsg);
if (SUCCEEDED(hr))
{
::SimDeleteMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex);
}
memset(&simMsg, 0, sizeof(SIMMESSAGE));
simMsg.cbSize = sizeof(simMsg);
simMsg.dwAddressType = SIM_ADDRTYPE_ALPHANUM;
simMsg.dwNumPlan = SIM_NUMPLAN_TELEPHONE;
simMsg.dwParams = SIM_PARAM_MSG_ADDRESS | SIM_PARAM_MSG_MESSAGE |
SIM_PARAM_MSG_ADDRESS_TYPE | SIM_PARAM_MSG_NUMPLAN;
lstrcpy(simMsg.lpszAddress, L"Address");
lstrcpy(simMsg.lpszMessage, L"Message");
hr = ::SimWriteMessage (hSim, SIM_SMSSTORAGE_SIM, &dwIndex,
&simMsg);
if (FAILED(hr))
{
break;
}
} while(0);
if (FAILED(hr))
{
...
}
if (hSim)
{
::SimDeinitialize(hSim);
}
}
Peter Foot:
> I've not seen that it doesn't work. What are you trying to do?
>
> Peter
>
> --
> Peter Foot
> Microsoft Device Application Development MVP
> www.peterfoot.net | www.inthehand.com
> In The Hand Ltd - .NET Solutions for Mobility
>
> wrote in message
> @v67g2000hse.googlegroups.com...
> > Hi,
> >
> > There are many exclamations that SimWriteMessage doesn't work at all.
> > My own experience shows me that it's still not operational in Windows
> > Mobile 6.0
> > Is there anyone who successfully used that method?
> >
> > Br,
> > Dmitry |
|
| Back to top |
|
 |
dyankovich
Joined: 08 Feb 2008 Posts: 9
|
Posted: Fri Feb 08, 2008 9:35 am Post subject: Re: SimWriteMessage issue |
|
|
And I've tried to make the following changes recommended by Chani
Johnson (Software Development Engineer Microsoft Corp.):
"
....
Apparently it doesn't like it if SIM_PARAM_MSG_HEADER_LENGTH isn't
set.
So essentially what you are looking for is
dwParams = SIM_PARAM_MSG_ALL & ~SIM_PARAM_MSG_HEADER;
....
"
Still have no success. |
|
| Back to top |
|
 |
Peter Foot
Joined: 01 Sep 2007 Posts: 56
|
Posted: Fri Feb 08, 2008 8:08 pm Post subject: Re: SimWriteMessage issue |
|
|
Are you really writing "Address" into the address field or is this just for
the purposes of the code snippet. This needs to be a valid number matching
the address type and number plan you have specified - Normally you would
specify International or National address types.
Peter
--
Peter Foot
Microsoft Device Application Development MVP
www.peterfoot.net | www.inthehand.com
In The Hand Ltd - .NET Solutions for Mobility
wrote in message @y5g2000hsf.googlegroups.com...
> Please see the code snippet below:
>
> I've always get 0x80070057(E_INVALIDARG) as a result of calling
> SimWriteMessage.
> The previous part (reading and deletion of message in the specified
> cell) is optional. I've tried to debug without that code but still
> without any success.
>
> JFYI: SimReadMessage and SimDeleteMessage work without any troubles.
>
> void StartTest()
> {
> HSIM hSim = NULL;
> HRESULT hr = S_OK;
>
> do
> {
> hr = ::SimInitialize(0, 0, 0, &hSim);
> if (FAILED(hr))
> {
> break;
> }
>
> DWORD smsUsed = 0;
> DWORD smsTotal = 0;
>
> hr = ::SimGetSmsStorageStatus(hSim, SIM_SMSSTORAGE_SIM, &smsUsed,
> &smsTotal);
> if (FAILED(hr))
> {
> break;
> }
>
> SIMMESSAGE simMsg;
> memset(&simMsg, 0, sizeof(SIMMESSAGE));
>
> simMsg.cbSize = sizeof(simMsg);
>
> DWORD dwIndex = 9;
>
> hr = ::SimReadMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex, &simMsg);
> if (SUCCEEDED(hr))
> {
> ::SimDeleteMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex);
> }
>
> memset(&simMsg, 0, sizeof(SIMMESSAGE));
> simMsg.cbSize = sizeof(simMsg);
>
> simMsg.dwAddressType = SIM_ADDRTYPE_ALPHANUM;
> simMsg.dwNumPlan = SIM_NUMPLAN_TELEPHONE;
> simMsg.dwParams = SIM_PARAM_MSG_ADDRESS | SIM_PARAM_MSG_MESSAGE |
> SIM_PARAM_MSG_ADDRESS_TYPE | SIM_PARAM_MSG_NUMPLAN;
>
> lstrcpy(simMsg.lpszAddress, L"Address");
> lstrcpy(simMsg.lpszMessage, L"Message");
>
>
> hr = ::SimWriteMessage (hSim, SIM_SMSSTORAGE_SIM, &dwIndex,
> &simMsg);
> if (FAILED(hr))
> {
> break;
> }
> } while(0);
>
> if (FAILED(hr))
> {
> ...
> }
>
> if (hSim)
> {
> ::SimDeinitialize(hSim);
> }
> }
>
> Peter Foot:
>> I've not seen that it doesn't work. What are you trying to do?
>>
>> Peter
>>
>> --
>> Peter Foot
>> Microsoft Device Application Development MVP
>> www.peterfoot.net | www.inthehand.com
>> In The Hand Ltd - .NET Solutions for Mobility
>>
>> wrote in message
>> @v67g2000hse.googlegroups.com...
>> > Hi,
>> >
>> > There are many exclamations that SimWriteMessage doesn't work at all.
>> > My own experience shows me that it's still not operational in Windows
>> > Mobile 6.0
>> > Is there anyone who successfully used that method?
>> >
>> > Br,
>> > Dmitry |
|
| Back to top |
|
 |
dyankovich
Joined: 08 Feb 2008 Posts: 9
|
Posted: Fri Feb 08, 2008 3:25 pm Post subject: Re: SimWriteMessage issue |
|
|
Hi Peter,
Yep, I really use "Address" for the related filed.
And I'm disagree with you when you say that it should be exactly the
number in lpszAddress field . I'm pretty sure that when
SIM_ADDRTYPE_ALPHANUM is specified, any text can be used (no longer
than 11 characters). Anyway, I've tried with the national and
international flags and numbers too. Still failed.
Can anyone form Microsoft post the code snippet (or link) where this
functionality will work correctly?
Or at least confirm that there are troubles with this method...
Also I've tried to write the message in a loop (from 1 to total number
of locations available on SIM storage) with the same result.
Br,
Dmitry
Peter Foot:
> Are you really writing "Address" into the address field or is this just for
> the purposes of the code snippet. This needs to be a valid number matching
> the address type and number plan you have specified - Normally you would
> specify International or National address types.
>
> Peter
>
> --
> Peter Foot
> Microsoft Device Application Development MVP
> www.peterfoot.net | www.inthehand.com
> In The Hand Ltd - .NET Solutions for Mobility
>
> wrote in message
> @y5g2000hsf.googlegroups.com...
> > Please see the code snippet below:
> >
> > I've always get 0x80070057(E_INVALIDARG) as a result of calling
> > SimWriteMessage.
> > The previous part (reading and deletion of message in the specified
> > cell) is optional. I've tried to debug without that code but still
> > without any success.
> >
> > JFYI: SimReadMessage and SimDeleteMessage work without any troubles.
> >
> > void StartTest()
> > {
> > HSIM hSim = NULL;
> > HRESULT hr = S_OK;
> >
> > do
> > {
> > hr = ::SimInitialize(0, 0, 0, &hSim);
> > if (FAILED(hr))
> > {
> > break;
> > }
> >
> > DWORD smsUsed = 0;
> > DWORD smsTotal = 0;
> >
> > hr = ::SimGetSmsStorageStatus(hSim, SIM_SMSSTORAGE_SIM, &smsUsed,
> > &smsTotal);
> > if (FAILED(hr))
> > {
> > break;
> > }
> >
> > SIMMESSAGE simMsg;
> > memset(&simMsg, 0, sizeof(SIMMESSAGE));
> >
> > simMsg.cbSize = sizeof(simMsg);
> >
> > DWORD dwIndex = 9;
> >
> > hr = ::SimReadMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex, &simMsg);
> > if (SUCCEEDED(hr))
> > {
> > ::SimDeleteMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex);
> > }
> >
> > memset(&simMsg, 0, sizeof(SIMMESSAGE));
> > simMsg.cbSize = sizeof(simMsg);
> >
> > simMsg.dwAddressType = SIM_ADDRTYPE_ALPHANUM;
> > simMsg.dwNumPlan = SIM_NUMPLAN_TELEPHONE;
> > simMsg.dwParams = SIM_PARAM_MSG_ADDRESS | SIM_PARAM_MSG_MESSAGE |
> > SIM_PARAM_MSG_ADDRESS_TYPE | SIM_PARAM_MSG_NUMPLAN;
> >
> > lstrcpy(simMsg.lpszAddress, L"Address");
> > lstrcpy(simMsg.lpszMessage, L"Message");
> >
> >
> > hr = ::SimWriteMessage (hSim, SIM_SMSSTORAGE_SIM, &dwIndex,
> > &simMsg);
> > if (FAILED(hr))
> > {
> > break;
> > }
> > } while(0);
> >
> > if (FAILED(hr))
> > {
> > ...
> > }
> >
> > if (hSim)
> > {
> > ::SimDeinitialize(hSim);
> > }
> > }
> >
> > Peter Foot:
> >> I've not seen that it doesn't work. What are you trying to do?
> >>
> >> Peter
> >>
> >> --
> >> Peter Foot
> >> Microsoft Device Application Development MVP
> >> www.peterfoot.net | www.inthehand.com
> >> In The Hand Ltd - .NET Solutions for Mobility
> >>
> >> wrote in message
> >> @v67g2000hse.googlegroups.com...
> >> > Hi,
> >> >
> >> > There are many exclamations that SimWriteMessage doesn't work at all.
> >> > My own experience shows me that it's still not operational in Windows
> >> > Mobile 6.0
> >> > Is there anyone who successfully used that method?
> >> >
> >> > Br,
> >> > Dmitry |
|
| Back to top |
|
 |
Peter Foot
Joined: 01 Sep 2007 Posts: 56
|
Posted: Sun Feb 10, 2008 4:11 pm Post subject: Re: SimWriteMessage issue |
|
|
If you are inserting a new record you should pass -1 for the index. It will
be replaced with the actual index when written. If you specify an actual
index which does not exist you'll get an error.
Peter
--
Peter Foot
Microsoft Device Application Development MVP
www.peterfoot.net | www.inthehand.com
In The Hand Ltd - .NET Solutions for Mobility
wrote in message @l16g2000hsh.googlegroups.com...
> Hi Peter,
>
> Yep, I really use "Address" for the related filed.
> And I'm disagree with you when you say that it should be exactly the
> number in lpszAddress field . I'm pretty sure that when
> SIM_ADDRTYPE_ALPHANUM is specified, any text can be used (no longer
> than 11 characters). Anyway, I've tried with the national and
> international flags and numbers too. Still failed.
>
> Can anyone form Microsoft post the code snippet (or link) where this
> functionality will work correctly?
> Or at least confirm that there are troubles with this method...
>
> Also I've tried to write the message in a loop (from 1 to total number
> of locations available on SIM storage) with the same result.
>
> Br,
> Dmitry
>
> Peter Foot:
>> Are you really writing "Address" into the address field or is this just
>> for
>> the purposes of the code snippet. This needs to be a valid number
>> matching
>> the address type and number plan you have specified - Normally you would
>> specify International or National address types.
>>
>> Peter
>>
>> --
>> Peter Foot
>> Microsoft Device Application Development MVP
>> www.peterfoot.net | www.inthehand.com
>> In The Hand Ltd - .NET Solutions for Mobility
>>
>> wrote in message
>> @y5g2000hsf.googlegroups.com...
>> > Please see the code snippet below:
>> >
>> > I've always get 0x80070057(E_INVALIDARG) as a result of calling
>> > SimWriteMessage.
>> > The previous part (reading and deletion of message in the specified
>> > cell) is optional. I've tried to debug without that code but still
>> > without any success.
>> >
>> > JFYI: SimReadMessage and SimDeleteMessage work without any troubles.
>> >
>> > void StartTest()
>> > {
>> > HSIM hSim = NULL;
>> > HRESULT hr = S_OK;
>> >
>> > do
>> > {
>> > hr = ::SimInitialize(0, 0, 0, &hSim);
>> > if (FAILED(hr))
>> > {
>> > break;
>> > }
>> >
>> > DWORD smsUsed = 0;
>> > DWORD smsTotal = 0;
>> >
>> > hr = ::SimGetSmsStorageStatus(hSim, SIM_SMSSTORAGE_SIM, &smsUsed,
>> > &smsTotal);
>> > if (FAILED(hr))
>> > {
>> > break;
>> > }
>> >
>> > SIMMESSAGE simMsg;
>> > memset(&simMsg, 0, sizeof(SIMMESSAGE));
>> >
>> > simMsg.cbSize = sizeof(simMsg);
>> >
>> > DWORD dwIndex = 9;
>> >
>> > hr = ::SimReadMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex, &simMsg);
>> > if (SUCCEEDED(hr))
>> > {
>> > ::SimDeleteMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex);
>> > }
>> >
>> > memset(&simMsg, 0, sizeof(SIMMESSAGE));
>> > simMsg.cbSize = sizeof(simMsg);
>> >
>> > simMsg.dwAddressType = SIM_ADDRTYPE_ALPHANUM;
>> > simMsg.dwNumPlan = SIM_NUMPLAN_TELEPHONE;
>> > simMsg.dwParams = SIM_PARAM_MSG_ADDRESS | SIM_PARAM_MSG_MESSAGE |
>> > SIM_PARAM_MSG_ADDRESS_TYPE | SIM_PARAM_MSG_NUMPLAN;
>> >
>> > lstrcpy(simMsg.lpszAddress, L"Address");
>> > lstrcpy(simMsg.lpszMessage, L"Message");
>> >
>> >
>> > hr = ::SimWriteMessage (hSim, SIM_SMSSTORAGE_SIM, &dwIndex,
>> > &simMsg);
>> > if (FAILED(hr))
>> > {
>> > break;
>> > }
>> > } while(0);
>> >
>> > if (FAILED(hr))
>> > {
>> > ...
>> > }
>> >
>> > if (hSim)
>> > {
>> > ::SimDeinitialize(hSim);
>> > }
>> > }
>> >
>> > Peter Foot:
>> >> I've not seen that it doesn't work. What are you trying to do?
>> >>
>> >> Peter
>> >>
>> >> --
>> >> Peter Foot
>> >> Microsoft Device Application Development MVP
>> >> www.peterfoot.net | www.inthehand.com
>> >> In The Hand Ltd - .NET Solutions for Mobility
>> >>
>> >> wrote in message
>> >> @v67g2000hse.googlegroups.com...
>> >> > Hi,
>> >> >
>> >> > There are many exclamations that SimWriteMessage doesn't work at
>> >> > all.
>> >> > My own experience shows me that it's still not operational in
>> >> > Windows
>> >> > Mobile 6.0
>> >> > Is there anyone who successfully used that method?
>> >> >
>> >> > Br,
>> >> > Dmitry |
|
| Back to top |
|
 |
dyankovich
Joined: 08 Feb 2008 Posts: 9
|
Posted: Mon Feb 11, 2008 5:32 am Post subject: Re: SimWriteMessage issue |
|
|
Hi Peter,
Thanks for advising to use -1 as index. Unfortunatelly it doesn't
wiork. Also I don't think that it's fully correct to use negative
value for DWORD parameter. And by the way, the MSDN say nothing how to
do that. There is very poor specification for SIM functionality.
So I think that my previous opinion that SimWriteMessage doesn't work
at all is fully correct.
Is there at least anyone who used that functionality successfully?
Br,
Dmitry Yankovich
Peter Foot:
> If you are inserting a new record you should pass -1 for the index. It will
> be replaced with the actual index when written. If you specify an actual
> index which does not exist you'll get an error.
>
> Peter
>
> --
> Peter Foot
> Microsoft Device Application Development MVP
> www.peterfoot.net | www.inthehand.com
> In The Hand Ltd - .NET Solutions for Mobility
>
> wrote in message
> @l16g2000hsh.googlegroups.com...
> > Hi Peter,
> >
> > Yep, I really use "Address" for the related filed.
> > And I'm disagree with you when you say that it should be exactly the
> > number in lpszAddress field . I'm pretty sure that when
> > SIM_ADDRTYPE_ALPHANUM is specified, any text can be used (no longer
> > than 11 characters). Anyway, I've tried with the national and
> > international flags and numbers too. Still failed.
> >
> > Can anyone form Microsoft post the code snippet (or link) where this
> > functionality will work correctly?
> > Or at least confirm that there are troubles with this method...
> >
> > Also I've tried to write the message in a loop (from 1 to total number
> > of locations available on SIM storage) with the same result.
> >
> > Br,
> > Dmitry
> >
> > Peter Foot:
> >> Are you really writing "Address" into the address field or is this just
> >> for
> >> the purposes of the code snippet. This needs to be a valid number
> >> matching
> >> the address type and number plan you have specified - Normally you would
> >> specify International or National address types.
> >>
> >> Peter
> >>
> >> --
> >> Peter Foot
> >> Microsoft Device Application Development MVP
> >> www.peterfoot.net | www.inthehand.com
> >> In The Hand Ltd - .NET Solutions for Mobility
> >>
> >> wrote in message
> >> @y5g2000hsf.googlegroups.com...
> >> > Please see the code snippet below:
> >> >
> >> > I've always get 0x80070057(E_INVALIDARG) as a result of calling
> >> > SimWriteMessage.
> >> > The previous part (reading and deletion of message in the specified
> >> > cell) is optional. I've tried to debug without that code but still
> >> > without any success.
> >> >
> >> > JFYI: SimReadMessage and SimDeleteMessage work without any troubles.
> >> >
> >> > void StartTest()
> >> > {
> >> > HSIM hSim = NULL;
> >> > HRESULT hr = S_OK;
> >> >
> >> > do
> >> > {
> >> > hr = ::SimInitialize(0, 0, 0, &hSim);
> >> > if (FAILED(hr))
> >> > {
> >> > break;
> >> > }
> >> >
> >> > DWORD smsUsed = 0;
> >> > DWORD smsTotal = 0;
> >> >
> >> > hr = ::SimGetSmsStorageStatus(hSim, SIM_SMSSTORAGE_SIM, &smsUsed,
> >> > &smsTotal);
> >> > if (FAILED(hr))
> >> > {
> >> > break;
> >> > }
> >> >
> >> > SIMMESSAGE simMsg;
> >> > memset(&simMsg, 0, sizeof(SIMMESSAGE));
> >> >
> >> > simMsg.cbSize = sizeof(simMsg);
> >> >
> >> > DWORD dwIndex = 9;
> >> >
> >> > hr = ::SimReadMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex, &simMsg);
> >> > if (SUCCEEDED(hr))
> >> > {
> >> > ::SimDeleteMessage(hSim, SIM_SMSSTORAGE_SIM, dwIndex);
> >> > }
> >> >
> >> > memset(&simMsg, 0, sizeof(SIMMESSAGE));
> >> > simMsg.cbSize = sizeof(simMsg);
> >> >
> >> > simMsg.dwAddressType = SIM_ADDRTYPE_ALPHANUM;
> >> > simMsg.dwNumPlan = SIM_NUMPLAN_TELEPHONE;
> >> > simMsg.dwParams = SIM_PARAM_MSG_ADDRESS | SIM_PARAM_MSG_MESSAGE |
> >> > SIM_PARAM_MSG_ADDRESS_TYPE | SIM_PARAM_MSG_NUMPLAN;
> >> >
> >> > lstrcpy(simMsg.lpszAddress, L"Address");
> >> > lstrcpy(simMsg.lpszMessage, L"Message");
> >> >
> >> >
> >> > hr = ::SimWriteMessage (hSim, SIM_SMSSTORAGE_SIM, &dwIndex,
> >> > &simMsg);
> >> > if (FAILED(hr))
> >> > {
> >> > break;
> >> > }
> >> > } while(0);
> >> >
> >> > if (FAILED(hr))
> >> > {
> >> > ...
> >> > }
> >> >
> >> > if (hSim)
> >> > {
> >> > ::SimDeinitialize(hSim);
> >> > }
> >> > }
> >> >
> >> > Peter Foot:
> >> >> I've not seen that it doesn't work. What are you trying to do?
> >> >>
> >> >> Peter
> >> >>
> >> >> --
> >> >> Peter Foot
> >> >> Microsoft Device Application Development MVP
> >> >> www.peterfoot.net | www.inthehand.com
> >> >> In The Hand Ltd - .NET Solutions for Mobility
> >> >>
> >> >> wrote in message
> >> >> @v67g2000hse.googlegroups.com...
> >> >> > Hi,
> >> >> >
> >> >> > There are many exclamations that SimWriteMessage doesn't work at
> >> >> > all.
> >> >> > My own experience shows me that it's still not operational in
> >> >> > Windows
> >> >> > Mobile 6.0
> >> >> > Is there anyone who successfully used that method?
> >> >> >
> >> >> > Br,
> >> >> > Dmitry |
|
| Back to top |
|
 |
dyankovich
Joined: 08 Feb 2008 Posts: 9
|
Posted: Wed Feb 13, 2008 8:07 am Post subject: Re: SimWriteMessage issue |
|
|
Hi guys,
Is there any chance that at least one person at Microsoft knows how to
use SimWriteMessage or anyone who successfully used that
functionality?
Br,
Dmitry |
|
| Back to top |
|
 |
NeilH
Joined: 15 Aug 2007 Posts: 23
|
Posted: Wed Feb 13, 2008 4:33 pm Post subject: Re: SimWriteMessage issue |
|
|
Why not ask Microsoft then?
wrote in message@v17g2000hsa.googlegroups.com...
> Hi guys,
>
> Is there any chance that at least one person at Microsoft knows how to
> use SimWriteMessage or anyone who successfully used that
> functionality?
>
> Br,
> Dmitry |
|
| Back to top |
|
 |
dyankovich
Joined: 08 Feb 2008 Posts: 9
|
Posted: Wed Feb 20, 2008 7:39 am Post subject: Re: SimWriteMessage issue |
|
|
I think that it has already been asked on Micrisoft forum.
See http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1009272&SiteID=1
I see no useful reply there too.
Br,
Dmitry
On 13 ΖΕΧ, 13:33, "NeilH" wrote:
> Why not ask Microsoft then?
>
> wrote in message
>
> @v17g2000hsa.googlegroups.com...
>
> > Hi guys,
>
> > Is there any chance that at least one person at Microsoft knows how to
> > use SimWriteMessage or anyone who successfully used that
> > functionality?
>
> > Br,
> > Dmitry
|
|
| Back to top |
|
 |
|
|
| Related Topics: | eVC++ 4.0 issue hey all, i was workin' on a project for school (writing a basic ftp client) for my wm2003 device. i used mfc and winsock to accomplish what i needed done, and everything worked fine on the emulator. demo day comes, and the same program i compiled for th
Issue with ceappmgr.exe Hi I create dynamically an .inf file, build the concerning cab, embed that cab in the resource of a dynamically compiled Setup.exe. When running the setup ..exe it writes the ceappmgr.exe inf file, extracts the cab and runs ceappmgr.exe to install the cab
DLL resource issue Hi, Can someone explain why this isn't working? Following DLL contains ICON resource IDI_ICON. CSomeClass { hInstance) { m_hInstance = hInstance; }; virtual HINSTANCE m_hInstance; HICON LoadIcon(UINT nID) { return (HI
about rotation issue I create a camera UI by VS.NET 2005 in PPC and the application type is single document. I wish that the screen will rotate as follow. If the default is 0 degree, then the screen will rotate in 270 degree when the camera run. In camera mode, if full-scree
cedebugx can't work issue Hi all I got a problem when using cedebugx to check a *.kdmp log I got after an exception. I had put the *.kdmp file in the release folder of my device's image and used cedump reader to open it. After loaded cedebugx.dll, there is an error message as belo |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|