PC Review


Reply
Thread Tools Rate Thread

Resource Editor for .net compact

 
 
Davide
Guest
Posts: n/a
 
      20th May 2005
Hi,
I need to create a resource where I can access most resources for the application everywhere.
So I need the resource editor, but I can't find the editor that can handle the .resx for .net
compact. Can you tell me where I can find an application that able me to edit a .resx for .net cf?

Thanks Davide
 
Reply With Quote
 
 
 
 
Jim Cooper
Guest
Posts: n/a
 
      20th May 2005

> Can you tell me where I can find an
> application that able me to edit a .resx for .net cf?


Visual Studio.


Cheers,
Jim Cooper

__________________________________________

Jim Cooper (E-Mail Removed)
Tabdee Ltd http://www.tabdee.ltd.uk

TurboSync - Connecting Delphi to your Palm
__________________________________________
 
Reply With Quote
 
Davide
Guest
Posts: n/a
 
      20th May 2005
How can I add an image to .resx with visual studio?



Jim Cooper wrote:
>
> > Can you tell me where I can find an

>
>> application that able me to edit a .resx for .net cf?

>
>

 
Reply With Quote
 
Sergey Bogdanov
Guest
Posts: n/a
 
      20th May 2005
Lutz Roeder has great resource editor:
http://www.aisto.com/roeder/dotnet/D...File=Resourcer

--
Sergey Bogdanov
http://www.sergeybogdanov.com


Jim Cooper wrote:
>
> > Can you tell me where I can find an

>
>> application that able me to edit a .resx for .net cf?

>
>
> Visual Studio.
>
>
> Cheers,
> Jim Cooper
>
> __________________________________________
>
> Jim Cooper (E-Mail Removed)
> Tabdee Ltd http://www.tabdee.ltd.uk
>
> TurboSync - Connecting Delphi to your Palm
> __________________________________________

 
Reply With Quote
 
Davide
Guest
Posts: n/a
 
      20th May 2005


This is (more or less)the response if I try to open the .resx of .net cf with resourcer of Lutz.

System.ArgumentException: not valid input .Resx. Impossible to find a valid tag "resheader" for the
types of read and write resX.

at System.Resources.ResXResourceReader.ParseXml(XmlReader reader)
at System.Resources.ResXResourceReader.EnsureData()
at System.Resources.ResXResourceReader.GetEnumerator()
at Resourcer.ResourceBrowser.Load(String fileName)

So, I think that this application is not able to open the resourcer of .net cf.


> Lutz Roeder has great resource editor:
> http://www.aisto.com/roeder/dotnet/D...File=Resourcer
>
> --
> Sergey Bogdanov
> http://www.sergeybogdanov.com
>
>
> Jim Cooper wrote:
>
>>
>> > Can you tell me where I can find an

>>
>>> application that able me to edit a .resx for .net cf?

>>
>>
>>
>> Visual Studio.
>>
>>
>> Cheers,
>> Jim Cooper
>>
>> __________________________________________
>>
>> Jim Cooper (E-Mail Removed)
>> Tabdee Ltd http://www.tabdee.ltd.uk
>>
>> TurboSync - Connecting Delphi to your Palm
>> __________________________________________

 
Reply With Quote
 
Sergey Bogdanov
Guest
Posts: n/a
 
      20th May 2005
Just try to replace temporary:

<resheader name="Reader">
<value>System.Windows.Forms.Design.CFResXResourceReader,
System.CF.Design, Version=7.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a</value>
</resheader>
<resheader name="Writer">
<value>System.Windows.Forms.Design.CFResXResourceWriter,
System.CF.Design, Version=7.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a</value>
</resheader>

with that:

<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>

When you complete editing, restore it again.

--
Sergey Bogdanov
http://www.sergeybogdanov.com


Davide wrote:
>
>
> This is (more or less)the response if I try to open the .resx of .net cf
> with resourcer of Lutz.
>
> System.ArgumentException: not valid input .Resx. Impossible to find a
> valid tag "resheader" for the types of read and write resX.
>
> at System.Resources.ResXResourceReader.ParseXml(XmlReader reader)
> at System.Resources.ResXResourceReader.EnsureData()
> at System.Resources.ResXResourceReader.GetEnumerator()
> at Resourcer.ResourceBrowser.Load(String fileName)
>
> So, I think that this application is not able to open the resourcer of
> .net cf.
>
>
>> Lutz Roeder has great resource editor:
>> http://www.aisto.com/roeder/dotnet/D...File=Resourcer
>>
>> --
>> Sergey Bogdanov
>> http://www.sergeybogdanov.com
>>
>>
>> Jim Cooper wrote:
>>
>>>
>>> > Can you tell me where I can find an
>>>
>>>> application that able me to edit a .resx for .net cf?
>>>
>>>
>>>
>>>
>>> Visual Studio.
>>>
>>>
>>> Cheers,
>>> Jim Cooper
>>>
>>> __________________________________________
>>>
>>> Jim Cooper (E-Mail Removed)
>>> Tabdee Ltd http://www.tabdee.ltd.uk
>>>
>>> TurboSync - Connecting Delphi to your Palm
>>> __________________________________________

 
Reply With Quote
 
Davide
Guest
Posts: n/a
 
      20th May 2005
Yes, I found also this solution now

But what I can find is that you must not edit the file with wordpad BUT ONLY with notepad.
If you edit with wordpad, visual studio give you an error when it re-parse the file.

Bye,

Davide


> Just try to replace temporary:
>
> <resheader name="Reader">
> <value>System.Windows.Forms.Design.CFResXResourceReader,
> System.CF.Design, Version=7.0.5000.0, Culture=neutral,
> PublicKeyToken=b03f5f7f11d50a3a</value>
> </resheader>
> <resheader name="Writer">
> <value>System.Windows.Forms.Design.CFResXResourceWriter,
> System.CF.Design, Version=7.0.5000.0, Culture=neutral,
> PublicKeyToken=b03f5f7f11d50a3a</value>
> </resheader>
>
> with that:
>
> <resheader name="reader">
> <value>System.Resources.ResXResourceReader, System.Windows.Forms,
> Version=1.0.5000.0, Culture=neutral,
> PublicKeyToken=b77a5c561934e089</value>
> </resheader>
> <resheader name="writer">
> <value>System.Resources.ResXResourceWriter, System.Windows.Forms,
> Version=1.0.5000.0, Culture=neutral,
> PublicKeyToken=b77a5c561934e089</value>
> </resheader>
>
> When you complete editing, restore it again.
>
> --
> Sergey Bogdanov
> http://www.sergeybogdanov.com
>
>
> Davide wrote:
>
>>
>>
>> This is (more or less)the response if I try to open the .resx of .net
>> cf with resourcer of Lutz.
>>
>> System.ArgumentException: not valid input .Resx. Impossible to find a
>> valid tag "resheader" for the types of read and write resX.
>>
>> at System.Resources.ResXResourceReader.ParseXml(XmlReader reader)
>> at System.Resources.ResXResourceReader.EnsureData()
>> at System.Resources.ResXResourceReader.GetEnumerator()
>> at Resourcer.ResourceBrowser.Load(String fileName)
>>
>> So, I think that this application is not able to open the resourcer of
>> .net cf.
>>
>>
>>> Lutz Roeder has great resource editor:
>>> http://www.aisto.com/roeder/dotnet/D...File=Resourcer
>>>
>>> --
>>> Sergey Bogdanov
>>> http://www.sergeybogdanov.com
>>>
>>>
>>> Jim Cooper wrote:
>>>
>>>>
>>>> > Can you tell me where I can find an
>>>>
>>>>> application that able me to edit a .resx for .net cf?
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> Visual Studio.
>>>>
>>>>
>>>> Cheers,
>>>> Jim Cooper
>>>>
>>>> __________________________________________
>>>>
>>>> Jim Cooper (E-Mail Removed)
>>>> Tabdee Ltd http://www.tabdee.ltd.uk
>>>>
>>>> TurboSync - Connecting Delphi to your Palm
>>>> __________________________________________

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
VS2005 Resource Editor - How to make new line from string resource? Peter Hartlén Microsoft C# .NET 9 21st Jul 2008 09:41 AM
Cannot get audio resource in Compact Framework =?Utf-8?B?WWF0bw==?= Microsoft Dot NET Framework 1 17th Apr 2006 07:53 AM
Start an exe in embedded resource? [Compact framework] =?Utf-8?B?d2F2ZW1pbGw=?= Microsoft C# .NET 0 4th Mar 2005 03:53 PM
ANN: New Compact Framework Resource Chris Tacke, eMVP Microsoft Dot NET Compact Framework 0 8th May 2004 01:37 PM
e3 2.5 - A very compact editor. Gordon Darling Freeware 0 13th Apr 2004 08:45 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:16 AM.