 |
|
|
 |
|
 |
Thx,I can run it.For I installed Pocket PC 2003 SDK and run it in that.But I hope that can run of my need.So I can learn it if I have enough time.Thanks very much.My English very poor! Regards!
shaochangming
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Im install CHMReader.WCE420X86.CAB in wince4.2 of Emulator CPU x86:(,This was take place error:ArgumentOutOfRangeException took place error at Application::Run+0x1a CHMReader::Main+0xd5 "OK"should be stop
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
Hello.
I was looking for a custom open file dialog all over the internet until I found this project. Wouldn't it be nice if you released just this class for public use? I guess there are more programmers than me who are fed up with the common dialoges in NETCF. Is it ok to use your class in other project (of course not commercial ones, just private)?
rudiman
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
Thanks for the complement
Yes it is fine for you to use the dialog for private use. Just keep/add author/copyright messages in source & about dialog box.
Peter Tewkesbury
Peter Tewkesbury
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Is there a chmReader that can run in wince.net 4.2 and Created for EVC4.0?Can be running on CPU type is arm4 or x86.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
This version is running VS2003 or VS2005 IDE,and Im used EVC4.0,So can't run it!:(I need using it to opening chm type file on short time.Can you help me? regard!
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
The .NET version of CHMReader on Codeproject has release cabs which can be installed on any Windows CE Mobile device which runs .NET V2 CF. You do not need this version.
Peter Tewkesbury
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
First all thx your relay,but I'm install CHMReader.WCE420X86.CAB in wince4.2 of Emulator CPU x86:(,This was take place error:ArgumentOutOfRangeException took place error at Application::Run+0x1a CHMReader::Main+0xd5 "OK"should be stop regards
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
First, thank you for this great program. It's a time saver since now I can read through my books while I am on the bus each day going to and from my work place during the 1 hour trip.
I installed the latest version 2.0.14 from the cab files. I have a windows mobile 5.0 K-JAM. I tried installing to device and storage card but in vain . I always receive the following error whenever I choose "File" -> "Open":
CHMReader.NET V2.0.14 Exception Message: DirectoryNotFoundException
I tried searching the comments of this article but it seems no one else had that problem.
BTW, I have installed .NET CF 2 SP1. And normally, .NET CF 1.0 is installed by default with all WM 5.0. So where is the problem??
Great program that I badly need 
-- modified at 2:22 Thursday 7th September, 2006
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |
|
 |
Workaround to my problem: Instead of opening CHMReader.NET then from it try to open the desired chm file, I made the file type .chm associated with CHMReader.NET so that whenever I open a chm file from the file explorer, it would open it with CHMReader.NET and this works fine so far.
Thanks for the program, but I still wish to have my problem solved
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
public NewDBBroker(string Path) { FileInfo fi = new FileInfo(path); if (!fi.Exists) CreateDataBase(Path); else { DBFile = Path; // OpenDataBase(); } }
Hi,
I tried the above code, NotSupportedException coming.. I am using SQLLite Database. Anybody help me,
sarala
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
this as nothing to do with the CHMReader...
Yet... check CreateDataBase(); ...|| I think you're using it uncorrectly... I don't even know if it exists, or wich namespace it's from
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hey Peter, Thanks for your work on CHM Reader. I have been using the CHM reader 1.0 for a while now a I was upgrading to v2.06 and am getting this error on a Dell Axim with v1.0 sp3 and v2.0 of the .net compact framework installed.
"An unexpected error has occurred in CHMREader.Net.exe. Select Quit and then restart this program, or select details for more information." then when I select Details:
CHMReader.Net.EXE IOException
Application::Run+0xf CHMReader::Main+0xd5
Any clues. This happens when I tap File/Open. I don't even have a CHM file open yet. BTW got the same error message with only .net v1 sp1 and then upgraded to .net v1 sp3. Same error then upgraded to .net v2.
Hopefully all this helps track it down. I've tried looking at the source but I'm not fluent in C# yet on a PPC. Thanks
-- modified at 23:35 Monday 13th February, 2006
Added...I just downloaded and installed v3.0.2147 of PPCHelpReader.net from www.blueflower.net and I get the same basic error when I tap File/Open: "PPCHelpReader.Net V3.0.2147 Exception Message : IOException" This is the Demo version.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
I get a different error, on a Dell Axim x51v (VGA). I can get to choose files to open, with CHMReader 2.0.5 (latest), but whichever file I choose, I get "PlatformNotSupportedException" + "Application::Run+0xf" + "CHMReader::Main+0xd5".
Any way to solve this and having CHMReader showing any CHM?
Thanks in advance
L.
|
| Sign In·View Thread·PermaLink | 3.00/5 (2 votes) |
|
|
|
 |
|
|
 |
|
 |
it is unhandled exception in this line DirectoryInfo[] Dirs = DI.GetDirectories(); I try to correct as private void ExpandNode(TreeNodeCollection ParentNode, string RootDir) { DirectoryInfo DI=new DirectoryInfo(RootDir); try { DirectoryInfo[] Dirs = DI.GetDirectories();
// Sort Dirs ArrayList DirSorted = new ArrayList(Dirs.Length); foreach (DirectoryInfo DI1 in Dirs) { DirSorted.Add(DI1); } DirSorted.Sort(new myDirSort());
foreach (DirectoryInfo DI2 in DirSorted) { TreeNode tn = new TreeNode(DI2.Name); tn.Tag = DI2.FullName; tn.ImageIndex = 6; tn.SelectedImageIndex = 5; ParentNode.Add(tn); ExpandNode(tn.Nodes, DI2.FullName); } } catch { } }
AlexNek
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi Alex,
unfortunately I've got the same error - but I'm not able to compile a corrected version... Can you post me your compiled version as *.cab for an arm processor? Or can you publish it?
this would be great!!! best regards, juergen.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Im install CHMReader.WCE420X86.CAB in wince4.2 of Emulator CPU x86:(,This was take place error:ArgumentOutOfRangeException took place error at Application::Run+0x1a CHMReader::Main+0xd5 "OK"should be stop
Can you send me the correct versions?Thx.
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
 |
The .Net version is perfect. Thank you. Just I'm wondering about changing default fonts. When I see content tree, all fonts are smooth on Axim51v(640*480) screen, but fonts in actual document view screen are not good. I'm c# developer and possible can fix it by myself if you point me to specific file or files related to help rendering.
Ps. It forgets, how to change fonts to not a clear type.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi
I use the Pocket IE control to display all HTML content in the CHMReader. The fonts that are used will be defined by the HTML content in the CHM files.
Peter Tewkesbury Lead Developer
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
I download the version 2.0.6 It can not show chinese help file When I change the file CHMFile.cs-->Class(CHMFile)->Function (ReadFile)-->line (406,407) to string fileString =_textEncoding.GetString(fileObject.ToArray(),0,(int)fileObject.Length);
It can show chinese title in content but still can not show chinese in URLPage. will you update your version to show chinese charater char
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Thanks for the information. If I get time will update the program. I do not have any means to test your help files, but please feel free to play with the source code, and post any fixes you make.
Thanks
Peter Tewkesbury Lead Developer
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |