X50 / X51 Forums - Talk about anything related to the X50 / X51 series.
Reply
 
LinkBack Thread Tools
Old 12-12-05, 10:45 AM   #136 (permalink)
TheCooperman
Aximsite Prospect
 
Join Date: Jun 2005
Posts: 20
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Thanks for the great and informative list.
TheCooperman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 12-13-05, 03:44 AM   #137 (permalink)
rafalb
Aximsite Prospect
 
rafalb's Avatar
 
Join Date: Nov 2005
Posts: 5
Location: Poland
PDA: Dell Axin X50v
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Hi there !

Any one knows where I can find trial version or demo of Simcity 2000 v 1.10. Link from the list dasn't work.
__________________
Best Regards

rafalb
rafalb is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 12-25-05, 11:54 PM   #138 (permalink)
dgt23
Aximsite Prospect
 
Join Date: Dec 2005
Posts: 4
PDA: Dell X50v
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
In my opinion the real VGA is just very useful on web browsing.
dgt23 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 12-26-05, 07:05 AM   #139 (permalink)
puntloos
Aximsite Minor League
 
puntloos's Avatar
 
Join Date: Dec 2005
Posts: 273
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
In Games, why do you call Bejeweled VGA optimized? It works, sure, but it's obviously pixel-doubled. Bejeweled 2 is VGA res.

Also in Games: Quake Mobile (by pulse interactive) only works on axim x5x'es - its vga and requires a 2700g..
Also-also in Games: Id say scummvm (which is a game emulator) should be listed - and yes its smoothing algorythm smoothes the native 320x240 games to 640x480.
__________________
Give a man a fire, and he will be warm for a day. Set a man on fire, and he will be warm for the rest of his life.
puntloos is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 12-28-05, 05:43 PM   #140 (permalink)
HawkesNest
Aximsite Rookie
 
Join Date: Feb 2005
Posts: 60
Location: Brigham City Utah
PDA: X50v
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Z2 Remote2PC is VGA and Landscape optimized, and is a great WiFi way to monitor your children’s activities while they are on the PC surfing. I have been using it for a good six months now on my X50v and have been very pleased. You have full control of the remote PC and screen updates are very near real time, I would say at most a second delay if that. and I'm sure it could be useful at work too to be able to remotely access servers to check on them too. I'm not sure what catagory this would go in, maybe "Other".
HawkesNest is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 01-28-06, 01:28 PM   #141 (permalink)
scippy
Aximsite Prospect
 
Join Date: Jan 2006
Posts: 1
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Res2exe strips out program icon

I've found two solution around this problem:

***************** FIRST SOLUTION *************************************

Make a copy of the hidpi.res file into your project folder.
Open it in VS.NET (or your favourite resource editor)
Click with right mouse button on hidpi.res for adding a resources, import the .ico file and set the ID of the icon resource

to 32512
Add any other resources to the project if you so wish, like VERSIONINFO etc, as these will also disappear.

Important, it appears you then need to remove the name of the icon from the project properties, otherwise it will not go

hires

Save the modified hidpi.res file in your project's path and alter two lines in the hires macro.
Change:

Dim ResFile As String = """" + SecondEditionResources + "\hidpi.res"""

to

Dim ResFile As String = """" + ActiveProject.Properties.Item("LocalPath").Value + "\hidpi.res"""

Change the line

Dim ActiveProject As Project = DTE.ActiveWindow.Project

to

Dim ActiveProject As Project = DTE.Solution.Projects.Item(DTE.Solution.SolutionBu ild.StartupProjects(0))

Then it won't fail with an error if a project window isn't in focus.

I also made one other change, as I found if I didn't save the project first then it sometimes didn't build hi-res aware, so I

added the line:

ActiveProject.Save()

after the "Dim Solution ..." line

I haven try to get it to work with the cabinet builder, and It work all OK!

You can see the new debug and release macro for hires projects below:
================== The modify MACRO HIRES ================================
Imports EnvDTE
Imports System.Diagnostics
Public Module hires
Sub hires_dbg()
' Path for 2nd Edition Resources. You may need to change this to match your setup.
Dim SecondEditionResources As String = "C:\Program Files\Developer Resources for Windows Mobile 2003 Second

Edition\tools\"
Dim ActiveProject As Project = DTE.Solution.Projects.Item(DTE.Solution.SolutionBu ild.StartupProjects(0))
Dim Solution As SolutionBuild = DTE.Solution.SolutionBuild

ActiveProject.Save()

' Create the command line for marking the output file as resolution aware
Dim ResFile As String = """" + ActiveProject.Properties.Item("LocalPath").Value + "\hidpi.res"""
Dim Params As String = " -r -c "
Dim Res2Exe As String = """" + SecondEditionResources + "\res2exe.exe"""
Dim OutputFile As String = """" + ActiveProject.Properties.Item("LocalPath").Value + "\obj\Debug\" +

ActiveProject.Properties.Item("OutputFileName").Value + """"
Dim Command As String = Res2Exe + Params + ResFile + " " + OutputFile

' Build, mark has resolution aware, and then launch the debugger
Solution.BuildProject("Debug", ActiveProject.UniqueName, True)
Shell(Command, AppWinStyle.Hide, True)
DTE.Debugger.Go(True)
End Sub

Sub hires_rls()
' Path for 2nd Edition Resources. You may need to change this to match your setup.
Dim SecondEditionResources As String = "C:\Program Files\Developer Resources for Windows Mobile 2003 Second

Edition\tools\"
Dim ActiveProject As Project = DTE.Solution.Projects.Item(DTE.Solution.SolutionBu ild.StartupProjects(0))
Dim Solution As SolutionBuild = DTE.Solution.SolutionBuild

ActiveProject.Save()

' Create the command line for marking the output file as resolution aware
Dim ResFile As String = """" + ActiveProject.Properties.Item("LocalPath").Value + "\hidpi.res"""
Dim Params As String = " -r -c "
Dim Res2Exe As String = """" + SecondEditionResources + "\res2exe.exe"""
Dim OutputFile As String = """" + ActiveProject.Properties.Item("LocalPath").Value + "\obj\Release\" +

ActiveProject.Properties.Item("OutputFileName").Value + """"
Dim Command As String = Res2Exe + Params + ResFile + " " + OutputFile

' Build, mark has resolution aware, and then launch the debugger
Solution.BuildProject("Release", ActiveProject.UniqueName, True)
Shell(Command, AppWinStyle.Hide, True)
DTE.Debugger.Go(False)
End Sub
End Module


[Original Author: Robert Levy]

***************** SECOND SOLUTION *************************************

The second solution is very simply!
You must remove from your original hires macro the option -r
Change the line

Dim Params As String = " -r -c "

to

Dim Params As String = " -c "

In this way the icon information of your application is no lost after you use res2exe, but you must remember to rebuild zone

of your application everytime before you lunch the hires macro!



Hope this helps ... an italian .net programmer

scippy@tin.it
scippy is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 02-11-06, 03:20 PM   #142 (permalink)
Cape Codder
Aximsite Prospect
 
Join Date: Feb 2006
Posts: 7
Location: Cape Cod
PDA: Dell Axim v51
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Atomic Cannon Explodes
First time I try to upload a game to my new V51 and it doesn't work. Atomic Cannon Demo seemed to install OK but when I click to open the program it "blew up"
All I get is repetitive music and a vertically lined screen of garbage.
Any help in explaining this whould be appreciated. In the meantime how about not recommending something that does not work.
Cape Codder is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 02-11-06, 08:17 PM   #143 (permalink)
gimojo
Aximsite Rookie
 
gimojo's Avatar
 
Join Date: Aug 2005
Posts: 74
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
probably not capatible with wm5
__________________
Anyone in the toronto region wanna sell me their foosball/jitz table?
gimojo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 02-14-06, 06:00 PM   #144 (permalink)
qqfob
Aximsite Rookie
 
Join Date: Nov 2005
Posts: 71
Location: NYC
PDA: Dell Axim x51v
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Originally Posted by Cape Codder
First time I try to upload a game to my new V51 and it doesn't work. Atomic Cannon Demo seemed to install OK but when I click to open the program it "blew up"
All I get is repetitive music and a vertically lined screen of garbage.
Any help in explaining this whould be appreciated. In the meantime how about not recommending something that does not work.

that game has a problem with WM5 and VGA. there is a beta out that had fixed the problem. visit their website for more information
qqfob is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 03-04-06, 07:39 AM   #145 (permalink)
ZkiiFreak
Aximsite Prospect
 
Join Date: Sep 2005
Posts: 19
PDA: Dell Axim X50v
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
RemoteAMP VGA...
How come RemoteAMP is on this list? I mean: I can't see any VGA skins out there? Has anyone seen them?

Anyways: THANKS indeed for compiling this list
__________________
ZkiiFreak is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 03-10-06, 02:56 PM   #146 (permalink)
mhynek
Aximsite Prospect
 
mhynek's Avatar
 
Join Date: Feb 2006
Posts: 8
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Microsoft entertainment pack works on my x51v. Haven't tried it in true vga though.
mhynek is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 03-12-06, 04:28 AM   #147 (permalink)
MitchellO
Aximsite Minor League
 
MitchellO's Avatar
 
Join Date: Jun 2003
Posts: 146
Location: NSW, Australia
PDA: Axim X50v
Phone: imate SP5
Carrier: Virgin Mobile
Laptop: Dell Inspiron 710m
PMP: iPod Video 30Gb
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
Originally Posted by PocketTV Team
> And in 3 years Pocket TV hasn't improved past mpeg 1, let's not talk about Microsoft

You missed a few significant developments: We have optimized PocketTV to take advantage of several hardware accelerator chips (ATI Imageon and Intel 2700G) allowing VGA-resolution playback at full framerate on the devices that have these video chips. And we include all that in the freeware version.

And naturally, PocketTV plays in true VGA resolution on native VGA devices.
TCPMP does a much better job than PocketTV, and supports heaps of other formats. I haven't used PocketTV since my Jornada 545 days.

Originally Posted by PocketTV Team
> And let's quit using the stupid term "True VGA", just because fonts and menus are larger, does not make them non-vga.

Totally agree, this "True VGA" term only refers to the size of the UI elements, not the resolution of the display!
I quite like the term "True VGA" as it does better represent the higher resolution offered by hacks like OzVGA. Microsoft's version of the VGA interface on VGA devices doesn't take advantage of the higher res for displaying more information. Since receiving my X50v 5 days ago I have used "True VGA" for at least 95% of the time. Its sooooo much better than Microsofts VGA interface.
__________________
Had an X50v. Tired of carrying two devices.
imate SP5 - I'm waiting for the Sony M600i

Old PDAs: 2x Palm V, Jornada 545, Palm m100, Axim X5 , iPAQ h1930, h2210, h4355, XDA II Mini, imate KJAM, CLIE NX70, Axim X50v
MCE PC: Pentium D 805, 1024MB D-C DDR2, 200GB HDD, DVD+/-RW, 19" WXGA, Dual HDTV Tuners, nVidia 7600GS 256MB, Windows XP MCE 2005
Laptop: Dell Inspiron 710m, P-M 2Ghz, 1Gb RAM, 100Gb HDD, DVDRW, 108Mbit WiFi

Old Laptops: Toshiba 200CDS, Toshiba 2750DVD, Thinkpad 380D, Inspiron 5100, Insprion 8600
iPod Video 30Gb
MitchellO is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 03-13-06, 02:44 AM   #148 (permalink)
pmcizhere
Aximsite Major League
 
pmcizhere's Avatar
 
Join Date: Dec 2004
Posts: 457
Location: Near Six Flags, CA
PDA: Axim x51v!!! Buy one!!!
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
I love OzVGA as well, yet I don't like incompatibility issues with it. Since I'm a gamer, this is an issue. Many games look way too small or display right but only register taps in the upper-left portion of the screen. Just hafta wait for updates...
pmcizhere is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 04-11-06, 10:51 AM   #149 (permalink)
STi Sev
Aximsite All Star
 
Join Date: Apr 2005
Posts: 539
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
I have tried earnestly to go VGA. I really wanted to use my device to its maximum ability and enjoy the increased resolution, but there are too many problems to list with programs I use on a daily basis.

The only thing I currently use VGA for are 1) Web browsing 2) Reading eBooks on Axim
STi Sev is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Old 04-11-06, 05:29 PM   #150 (permalink)
MitchellO
Aximsite Minor League
 
MitchellO's Avatar
 
Join Date: Jun 2003
Posts: 146
Location: NSW, Australia
PDA: Axim X50v
Phone: imate SP5
Carrier: Virgin Mobile
Laptop: Dell Inspiron 710m
PMP: iPod Video 30Gb
iTrader Rating: (0)
Thanks: 0
Thanked 0 Times in 0 Posts
View MyPDA
I'm still using mine exclusively with the OzVGA hack. Whenever I got back to normal everything looks weird because I have it setup so that the higher res looks good :
__________________
Had an X50v. Tired of carrying two devices.
imate SP5 - I'm waiting for the Sony M600i

Old PDAs: 2x Palm V, Jornada 545, Palm m100, Axim X5 , iPAQ h1930, h2210, h4355, XDA II Mini, imate KJAM, CLIE NX70, Axim X50v
MCE PC: Pentium D 805, 1024MB D-C DDR2, 200GB HDD, DVD+/-RW, 19" WXGA, Dual HDTV Tuners, nVidia 7600GS 256MB, Windows XP MCE 2005
Laptop: Dell Inspiron 710m, P-M 2Ghz, 1Gb RAM, 100Gb HDD, DVDRW, 108Mbit WiFi

Old Laptops: Toshiba 200CDS, Toshiba 2750DVD, Thinkpad 380D, Inspiron 5100, Insprion 8600
iPod Video 30Gb
MitchellO is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote