Re: OT USA Based Web Hosting provider required

2010-07-06 Thread Girish Madan
I have used www.ixwebhosting.com for last few years and they are quite good.

Girish


On Wed, Jul 7, 2010 at 9:42 AM, PhilB philb...@connexus.net.au wrote:

  Can anybody recommend a good USA hosting provider that is reliable and
 not too expensive?
 Must have a good bandwidth Internet connection.

 TIA Phil.

 Phil Best
 Strategy Map Balanced Scorecard System Architect




Re: OT USA Based Web Hosting provider required

2010-07-06 Thread Craig van Nieuwkerk
I use www.netrackservers.com for a dedicated server for my web site
baseestate.com and have had no problems.

Craig.

On Wed, Jul 7, 2010 at 9:42 AM, PhilB philb...@connexus.net.au wrote:
 Can anybody recommend a good USA hosting provider that is reliable and not
 too expensive?
 Must have a good bandwidth Internet connection.

 TIA Phil.

 Phil Best
 Strategy Map Balanced Scorecard System Architect



Re: OT USA Based Web Hosting provider required

2010-07-06 Thread Grant Maw
We use MAximum ASP. They are excellent.

On 7 July 2010 09:42, PhilB philb...@connexus.net.au wrote:

  Can anybody recommend a good USA hosting provider that is reliable and
 not too expensive?
 Must have a good bandwidth Internet connection.

 TIA Phil.

 Phil Best
 Strategy Map Balanced Scorecard System Architect




RE: MDI Form

2010-07-06 Thread Greg Keogh
Hi Anthony, I find that setting the Focus() in Load doesn't work because
it's too early, so I usually do it in the first Activate event. I often have
code like this:

 

If (++activateCount == 1)

{

Thing.Focus();

// Other stuff for the first time everything is visible
}

 

You may have to set the focus to a specific control, not the whole form. I
haven't tried any of this with MDI though.

 

Greg



RE: MDI Form

2010-07-06 Thread Anthony
Doesn't work..no matter what i do..the mdi child form gets the focus..really
weird.

 

 

From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com]
On Behalf Of Greg Keogh
Sent: Wednesday, 7 July 2010 11:03 AM
To: 'ozDotNet'
Subject: RE: MDI Form

 

Hi Anthony, I find that setting the Focus() in Load doesn't work because
it's too early, so I usually do it in the first Activate event. I often have
code like this:

 

If (++activateCount == 1)

{

Thing.Focus();

// Other stuff for the first time everything is visible
}

 

You may have to set the focus to a specific control, not the whole form. I
haven't tried any of this with MDI though.

 

Greg