Freelancers Forum Messages on Friday February 8th 2008
Re: FN-FORUM: C# Help
date posted 8th February 2008 21:47
> Phillip Healey wrote:
>> Hi,
>>
>> Im tinkering with a tutorial / sample code which was given in VB.Net, and
>> i have converted into c#. However i keep getting an error with this code:
>>
>> if ((...
FN-FORUM: Software architecture diagram of wordpress
date posted 8th February 2008 18:25
Hi all,
Does anyone know if there is a freely available software architecture
diagram of wordpress.
Thanks in advance.
Kind Regards,
Tom Willmot
Owner & Lead Developer
Edge Designs
Edge Designs...
RE: FN-FORUM: dynamic text
date posted 8th February 2008 17:05
Yes there is!
Check out Mootools. It uses JavaScript to create an abstraction layer that
lets you manipulate text including opacity.
You can chuck the text on the page in a div so it renders normall...
Re: FN-FORUM: C# Help
date posted 8th February 2008 16:14
Phillip Healey wrote:
> Hi,
>
> Im tinkering with a tutorial / sample code which was given in VB.Net, and i have converted into c#. However i keep getting an error with this code:
>
> if ((int.Parse...
Re: FN-FORUM: C# Help
date posted 8th February 2008 15:51
Hi,
If c# (which I don't know) is just like Java (which I do, I hope), then
The first=20
int.Parse(intCurrIndex.Text)
needs to be compared to something (0, probably)=20
and the "+" needs to be "&&...
Re: FN-FORUM: C# Help
date posted 8th February 2008 15:39
Hi Phil,
Sounds like you need to use a logical AND or OR operator!?
That should be && for AND . .. || for OR
Lyndon
Antlyn Web Design Ltd
www.antlyn.com
Manchester
07742 607198
----- Original M...
FN-FORUM: C# Help
date posted 8th February 2008 15:33
Hi,
Im tinkering with a tutorial / sample code which was given in VB.Net, =
and i have converted into c#. However i keep getting an error with this =
code:
if ((int.Parse(intCurrIndex.Text) + (1 < =...
FN-FORUM: Office Address mail forwarding
date posted 8th February 2008 14:55
can anyone recommend a cheap mail forwarding service with an office
address not a PO box?
Anywhere it doens't have to be London Mayfair!
Cheers
Andrew
--
http://www.punterspower.co.uk...
Re: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 14:50
On Friday 08 February 2008 15:42:15 Colin Shipton wrote:
> On Friday 08 February 2008 14:26 Dom Latter wrote:
> > Assuming that the idea is to give staff, not customers, access to these
> > servers, I...
RE: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 13:28
On Friday 08 February 2008 14:26 Dom Latter wrote:
> Assuming that the idea is to give staff, not customers, access to these
> servers, I would say that installing a VPN is about a ten squillion
> tim...
RE: FN-FORUM: dynamic text
date posted 8th February 2008 13:11
Claire wrote:
> Is there a simple way to create the equivalent of Flash's dynamic text =
> but using just html?
> I have a very simple website with one bit of text that I would like to =
> display f...
Re: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 13:10
On Friday 08 February 2008 14:33:23 Colin Shipton wrote:
> The actual problem is that the client has Microsoft CRM on one server and
> Exchange on another server and has enabled OWA (Outlook Web Acce...
RE: FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 13:09
>Math.Ceiling() seems to be what you want.
Thanks for the help guys!...
RE: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 12:19
Thanks to everyone for their help and suggestions, I drafted an e-mail to
the client which basically took parts of several peoples' responses telling
him that it can't be done without some additional...
RE: FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 11:47
> Hopefully someone can give me an answer to what I imagine is a simple
> problem (if you know the answer) ;-)
>=20
> Basically I need to take an int and divide it by 10. However I need to
> round the...
FN-FORUM: TurboCAD?
date posted 8th February 2008 11:45
Morning All,
What a glorious day!
Having just taken delivery of my first Mac (after way too many years
shackled to a PC), I'm keen to procure a decent CAD package and have
come across TurboCAD. Can...
Re: FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 11:28
Phillip Healey wrote:
>> I don't know about the language specifics, but if you add 0.5 to the
>> interim answer before "rounding" the result you should get what you
>> want, e.g.
>>
>
>
>> 5...
RE: FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 11:21
>I don't know about the language specifics, but if you add 0.5 to the
>interim answer before "rounding" the result you should get what you
>want, e.g.
>53 / 10 = 5.3
>5.3 + 0.5 = 5.8
>round(5.8) =...
Re: FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 11:14
Anthony Cartmell wrote:
>
>> Can anyone point me in the right direction please?
>
> ceil() or ceiling() might be what you're looking for, although I don't
> know what C# might call it.
Math.Ceilin...
Re: FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 11:11
Phillip Healey wrote:
> Hopefully someone can give me an answer to what I imagine is a simple problem (if you know the answer) ;-)
>
> Basically I need to take an int and divide it by 10. However I ne...
RE: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 11:03
>Fair enough - any particular reason you didn't get the earlier email?
Absolutely no idea....
Re: FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 11:00
> Can anyone point me in the right direction please?
ceil() or ceiling() might be what you're looking for, although I don't
know what C# might call it.
Anthony
--
www.fonant.com - Quality web sit...
Re: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 10:57
On Friday 08 February 2008 12:52:01 Phillip Healey wrote:
> Ok, i did say from the start that i didn't get the earlier email so i might
> be on the track. Just trying to offer best advice i can.
Fai...
FN-FORUM: .Net Simple(?) Maths Problem
date posted 8th February 2008 10:47
Hopefully someone can give me an answer to what I imagine is a simple =
problem (if you know the answer) ;-)
Basically I need to take an int and divide it by 10. However I need to =
round the answer...
RE: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 10:38
>You are slightly missing the point. In fact the original query was how to
>host two different domains on two different servers behind the same
>NATing router. The problem being that you have to f...
Re: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 10:30
On Friday 08 February 2008 12:29:56 Phillip Healey wrote:
> Get a second very similar domain name (eg .com if you use .co.uk for main
> site) then add a bit of simple code to your homepage (or even a...
Re: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 10:26
On Friday 08 February 2008 12:04:55 Sam M - www.wiredeyes.com wrote:
> Absolutely, use the port 80 server with the host header to simply redirect
> the user to the other server using a different port...
RE: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 10:15
>
> > Anyhow, here's the scenario a client of ours has several Windows
> based
> ...
> > re-direct some traffic on port 80 to one server and some traffic to
> another
>
> >What they want cannot be d...
RE: FN-FORUM: PHP/MySQL Question...
date posted 8th February 2008 10:10
Thanks Nick...Pamela & Anthony.... Sorted now...
Darren
-----Original Message-----
From: [EMAIL REMOVED] [EMAIL REMOVED] On Behalf Of =
Anthony Cartmell
Sent: 07 February 2008 22:33
To: FN-FORUM /...
Re: FN-FORUM: dynamic text
date posted 8th February 2008 09:52
Ok. I will check out all the suggestions... I know I was shown how to do
it many years ago and have a feeling it had to do with SSI so will read
up on it.
Claire.
Nicolas Borda wrote:
>
>
> On 7 F...
RE: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 09:50
> -----Original Message-----
>=20
> > Anyhow, here's the scenario a client of ours has several Windows
> based
> ...
> > re-direct some traffic on port 80 to one server and some traffic to
> another
>...
RE: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 09:18
-----Original Message-----
From: [EMAIL REMOVED] [EMAIL REMOVED] On Behalf Of Richard
Harrison
Sent: 08 February 2008 10:25
To: FN-FORUM / [EMAIL REMOVED]
Subject: Re: FN-FORUM: IIS Forward Request t...
Re: FN-FORUM: IIS Forward Request to Another Server
date posted 8th February 2008 09:10
> Anyhow, here's the scenario a client of ours has several Windows based
...
> re-direct some traffic on port 80 to one server and some traffic to another
What they want cannot be done at the network...