PC Review
Forums
Newsgroups
Microsoft DotNet
Microsoft Dot NET Compact Framework
Resource Editor for .net compact
Forums
Newsgroups
Microsoft DotNet
Microsoft Dot NET Compact Framework
Resource Editor for .net compact
![]() |
Resource Editor for .net compact |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
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 |
|
|
|
#2 |
|
Guest
Posts: n/a
|
> 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 jcooper@tabdee.ltd.uk Tabdee Ltd http://www.tabdee.ltd.uk TurboSync - Connecting Delphi to your Palm __________________________________________ |
|
|
|
#3 |
|
Guest
Posts: n/a
|
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? > > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
Lutz Roeder has great resource editor:
http://www.aisto.com/roeder/dotnet/...?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 jcooper@tabdee.ltd.uk > Tabdee Ltd http://www.tabdee.ltd.uk > > TurboSync - Connecting Delphi to your Palm > __________________________________________ |
|
|
|
#5 |
|
Guest
Posts: n/a
|
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/...?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 jcooper@tabdee.ltd.uk >> Tabdee Ltd http://www.tabdee.ltd.uk >> >> TurboSync - Connecting Delphi to your Palm >> __________________________________________ |
|
|
|
#6 |
|
Guest
Posts: n/a
|
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/...?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 jcooper@tabdee.ltd.uk >>> Tabdee Ltd http://www.tabdee.ltd.uk >>> >>> TurboSync - Connecting Delphi to your Palm >>> __________________________________________ |
|
|
|
#7 |
|
Guest
Posts: n/a
|
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/...?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 jcooper@tabdee.ltd.uk >>>> Tabdee Ltd http://www.tabdee.ltd.uk >>>> >>>> TurboSync - Connecting Delphi to your Palm >>>> __________________________________________ |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 


