On Sep 3, 2006, at 10:30 AM, RBNUBE wrote:
This is the first I had heard of Parallels, so I thought I would
ask. I had
read a somewhat negative review of Boot Camp.
The reason I asked is because of the following article from
www.macintouch.com
Boot Camp..
I choose Parallels b
The term 'way-fast' comes to mind, this latest Mac Pro has been the
best computer I have owned to date.
On Sep 3, 2006, at 11:48 AM, Brad Rhine wrote:
On Sep 2, 2006, at 12:55 PM, RBNUBE wrote:
How is the performance with Parallels? I have heard that running
Windows on
the Intel Macs is
This is the first I had heard of Parallels, so I thought I would ask. I had
read a somewhat negative review of Boot Camp.
The reason I asked is because of the following article from
www.macintouch.com
Boot Camp
Apple caused quite a stir when it released Boot Camp, a utility that makes
it easy t
Yup, you have heard wrong. If the Mac OS is not doing much, you are
getting almost full speed. You don't get 3D acceleration though, so
you should perhaps not play the latest 3D games, but World of
warcraft IS available as Universal binary, so you don't have to play
it on Windows anyhow :
On Sep 2, 2006, at 12:55 PM, RBNUBE wrote:
How is the performance with Parallels? I have heard that running
Windows on
the Intel Macs is still exceptionally slow, apparently because Windows
doesn't support some of the technology used on the Intel Macs.
I think you heard wrong. ;)
I've foun
Le 2 sept. 06 à 22:56 Soir, Terry Ford a écrit:
On Sep 2, 2006, at 1:34 PM, Arnaud Nicolet wrote:
Le 2 sept. 06 à 19:05 Soir, [EMAIL PROTECTED] a écrit:
On Sep 02, 2006, at 16:28 UTC, Robert Poland wrote:
The Window KeyDown event works fine with the Mac.
Not in general, it doesn't. Any
On Sep 2, 2006, at 1:34 PM, Arnaud Nicolet wrote:
Le 2 sept. 06 à 19:05 Soir, [EMAIL PROTECTED] a écrit:
On Sep 02, 2006, at 16:28 UTC, Robert Poland wrote:
The Window KeyDown event works fine with the Mac.
Not in general, it doesn't. Any key the EditField processes itself
won't get to t
Le 2 sept. 06 à 19:05 Soir, [EMAIL PROTECTED] a écrit:
On Sep 02, 2006, at 16:28 UTC, Robert Poland wrote:
The Window KeyDown event works fine with the Mac.
Not in general, it doesn't. Any key the EditField processes itself
won't get to the Window. Whether the EditField processes return,
e
On Sep 2, 2006, at 10:24 AM, Robert Poland wrote:
Putting the code in the editfield KeyDown gave very weird results.
Like what? I've been doing it there for years, on both Mac and
Windows, and it's always worked fine for me.
Primarily when a MsgBox is called. Control goes out of sight rath
On Sep 2, 2006, at 11:05 AM, [EMAIL PROTECTED] wrote:
On Sep 02, 2006, at 16:28 UTC, Robert Poland wrote:
The Window KeyDown event works fine with the Mac.
Not in general, it doesn't. Any key the EditField processes itself
won't get to the Window. Whether the EditField processes return,
e
On Sep 2, 2006, at 10:55 AM, RBNUBE wrote:
How is the performance with Parallels? I have heard that running
Windows on
the Intel Macs is still exceptionally slow, apparently because Windows
doesn't support some of the technology used on the Intel Macs.
The only time I see much slow down is
On Sep 02, 2006, at 16:28 UTC, Robert Poland wrote:
> The Window KeyDown event works fine with the Mac.
Not in general, it doesn't. Any key the EditField processes itself
won't get to the Window. Whether the EditField processes return,
enter, and tab depend on the EditField settings, as well as
How is the performance with Parallels? I have heard that running Windows on
the Intel Macs is still exceptionally slow, apparently because Windows
doesn't support some of the technology used on the Intel Macs.
___
Unsubscribe or switch delivery mode:
<
On Sep 2, 2006, at 10:07 AM, [EMAIL PROTECTED] wrote:
On Sep 02, 2006, at 16:03 UTC, Robert Poland wrote:
Are you putting this code in the Window or Editfield Keydown event?
In the window. Don't think I have any other KeyDown code.
Oh, there's the problem then. The window's KeyDown event
On Sep 02, 2006, at 16:03 UTC, Robert Poland wrote:
> > Are you putting this code in the Window or Editfield Keydown event?
>
> In the window. Don't think I have any other KeyDown code.
Oh, there's the problem then. The window's KeyDown event should not
fire in this case, since the EditField is
On Sep 2, 2006, at 9:39 AM, Terry Ford wrote:
On Sep 2, 2006, at 8:01 AM, Robert Poland wrote:
On Sep 2, 2006, at 8:04 AM, Terry Ford wrote:
On Sep 2, 2006, at 6:47 AM, Robert Poland wrote:
#if TargetWin32 then
Stuff...
#endif // end Target Windows
#if Target statements usually
On Sep 2, 2006, at 8:01 AM, Robert Poland wrote:
On Sep 2, 2006, at 8:04 AM, Terry Ford wrote:
On Sep 2, 2006, at 6:47 AM, Robert Poland wrote:
#if TargetWin32 then
Stuff...
#endif // end Target Windows
#if Target statements usually do not use 'Then'.
Exception: "#If statements ca
On Sep 2, 2006, at 10:04 AM, Terry Ford wrote:
#if Target statements usually do not use 'Then'.
But it doesn't hurt for them to be there. I usually include "Then"
just for consistency's sake.
--
Brad Rhine
[EMAIL PROTECTED]
http://bradrhine.com
Tangelo: Web Publishing... With A Twist!
On Sep 2, 2006, at 8:04 AM, Terry Ford wrote:
On Sep 2, 2006, at 6:47 AM, Robert Poland wrote:
#if TargetWin32 then
Stuff...
#endif // end Target Windows
#if Target statements usually do not use 'Then'.
Exception: "#If statements can be written on one line if there are
no #Else or
On Sep 2, 2006, at 6:47 AM, Robert Poland wrote:
#if TargetWin32 then
Stuff...
#endif // end Target Windows
#if Target statements usually do not use 'Then'.
Exception: "#If statements can be written on one line if there are no
#Else or #Elseif clauses. In this case, the Then keyword i
Hi,
On the PC with the following code in the KeyDown of the
EventHandlers, when I enter text in an editfield and then hit enter,
Carriage return or tab the code does not get accessed.
Similar code (#if TargetMacOS) works with the Mac.
dim x as Boolean // dummy to set breakpoint
#if Targ
On Apr 23, 2006, at 9:01 PM, Charles Ross wrote:
That was the answer. I had break on exceptions turned on. I'm
actually rather disappointed with that. I would like the software
to break on exceptions unless the code says to catch it, which is
what I would expect. Oh well.
If it's any cons
That was the answer. I had break on exceptions turned on. I'm
actually rather disappointed with that. I would like the software to
break on exceptions unless the code says to catch it, which is what I
would expect. Oh well.
Thanks,
Chuck
Whenever I run the program, I get an OutOfBoundsExce
On Apr 23, 2006, at 7:50 PM, Charles Ross wrote:
Whenever I run the program, I get an OutOfBoundsException at the
line that sets capt. Why isn't this being caught?
Is "Break on Exceptions" turned on? If so, the debugger will always
show you an exception, whether you've handled it or not, I
On Apr 23, 2006, at 7:50 PM, Charles Ross wrote:
I have the following function, which I want to return to the caller
the number of tabs in a TabPanel.
Function TabCount(extends t as TabPanel) As Integer
dim i as Integer = 1
dim capt as String
do
try
capt = t.Caption(i)
ca
I have the following function, which I want to return to the caller
the number of tabs in a TabPanel.
Function TabCount(extends t as TabPanel) As Integer
dim i as Integer = 1
dim capt as String
do
try
capt = t.Caption(i)
catch err as OutOfBoundsException
return i
e
26 matches
Mail list logo