Re: [OT] Beginning of big touble ?

2006-12-19 Thread Helio W.
Well, the situation of the north korean people is grim. Foreign intervention
sometimes IS necessary.



On 12/19/06, Ricardo Aráoz <[EMAIL PROTECTED]> wrote:
>
> Helio W. wrote:
> > How about liberating the North Korea people first?
> >
> >
> I'd rather 'liberate' a few millions from the Morgan Trust.
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Polling App

2006-12-19 Thread Jaime Vasquez
Sietse Wijnker wrote:
> I'm using filesystem events to react to a file create/change in similar
> cases.
> The only problem is binding to them, but I've written a .NET ActiveX thet
> does that for me. Use that inside a VFP form and I'm able to write VFP code
> to react to the events.

The vfp9's solutions samples have a demo on how to do that with VFP 
code, look for it in "New in VFP9" - Binding To Windows Message Events - 
   File/Folder Shell Events.



HTH



Jaime Vasquez.


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


profox@leafe.com

2006-12-19 Thread Ricardo Aráoz
Virgil Bierschwale wrote:
> I tried that on the response.write end, but not the select.
> Will try it tomorrow, although all the googling I did this afternoon taught
> me that isull only returns .T. or .F. in vbscript.

Sorry, my mistake. Thought you were connecting to SQLServer. The
isnull() function works that way inside a select sent to SQLServer, the
only caveat is that the field must be char or be converted to char (in
this case, because of the ' ' being char).


> Boy wouldn’t it be nice to have vfp on this server , but hell, I
> probably wouldn’t remember that either as its been awhile..
> 
> Planned on doing this in .NET as I need to learn it, but decided I wasn’t
> ready to take the time to learn it yet, when I can have this going in a few
> weeks.
> 
> Darn .NET and the html portion fixed on the screen and the .net controls
> floating sure makes it hard to learn in my opinion, but its probably cause
> I'm doing something wrong... 
> 
> 
> Virgil Bierschwale
> http://www.virgilslist.com
> http://www.tccutlery.com
> http://www.bierschwale.com
> http://www.bierschwalesolutions.com
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
> Of Ricardo Aráoz
> Sent: Tuesday, December 19, 2006 6:50 PM
> To: ProFox Email List
> Subject: Re: [NF] null chr's and  
> 
> Virgil Bierschwale wrote:
>> Ok, I have empty fields in sql server and I need to replace them with 
>>   when they're null.
>>
> 
> ISNULL ( check_expression , replacement_value )
> 
> Use it this way : Select isnull(possiblyNullField, ' ') as
> 'possiblyNullField' 
> It will return the fields contents if any or the replacement_value if the
> field is null.
> 
> 
>> Apparently vbscript is a lot different then what I did in the past and 
>> I havent had much luck googling it.
>>
>> How do ya'll trap for null in the code below ?
>>
>> In the past I would have done it at before each response.write line, 
>> but the few samples I have found don't seem to work.
>>
>> You can try out the code at http://www.virgilslist.com/branch.asp
>>
>> Thanks
>>
>> Virgil Bierschwale
>> http://www.virgilslist.com
>> http://www.tccutlery.com
>> http://www.bierschwale.com
>> http://www.bierschwalesolutions.com
>>
>>
>> tablename = "roster"
>>
>>
>> fieldname1 = "svcbranch"
>> fieldname2 = "svcunit"
>> fieldname3 = "svcrate"
>> fieldname4 = "svcrank"
>> fieldname5 = "svclastname"
>> fieldname6 = "svcfirstname"
>> fieldname7 = "svccity"
>> fieldname8 = "svcstate"
>> fieldname9 = "svczip"
>> fieldname10 = "svconboard"
>> fieldname11 = "svcdeparted"
>> fieldname12 = "svclatitude"
>> fieldname13 = "svclongitude"
>>
>> connectstr = "Driver={SQL Server};SERVER=" & db_server & ";DATABASE=" 
>> & db_name & ";UID=" & db_username & ";PWD=" & db_userpassword
>>
>> Set oConn = Server.CreateObject("ADODB.Connection")
>> oConn.Open connectstr
>>
>> qry = "SELECT " & fieldname3 & ", " & fieldname6 & ", " & fieldname5 & ",
> "
>> & fieldname7 & ", " & fieldname8 & ", " & fieldname9 & ", " & 
>> fieldname10 & ", " & fieldname11 & " FROM " & tablename & " where " &
> fieldname2 & " = '"
>> & svcBranch & "'"
>> Set oRS = oConn.Execute(qry)
>>
>> Response.Write("" & vbCrLf) 
>> Response.Write("" & vbCrLf)
>>
>>
>>
>> Do until oRs.EOF
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname3) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname6) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname5) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname7) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname8) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname9) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname10) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)
>>Response.Write(oRs.Fields(fieldname11) & "" & vbCrLf)
>>Response.Write("" & vbCrLf)   
>>oRS.MoveNext
>> Loop
>> Response.Write("" & vbCrLf)
>> oRs.Close
>>
> 
> 
> 
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


profox@leafe.com

2006-12-19 Thread Virgil Bierschwale
If anybody's curious, this is what I found that works:

   if IsNull(oRs.Fields(fieldname3)) then
  Response.Write((" ") & vbCrLf)
   else  
  Response.Write(oRs.Fields(fieldname3) & "" & vbCrLf)
   end if 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Matthew Jarvis
Sent: Tuesday, December 19, 2006 6:43 PM
To: profox@leafe.com
Subject: Re: [NF] null chr's and  

Virgil Bierschwale wrote:
> Ok, I have empty fields in sql server and I need to replace them with 
>   when they're null.
> 
> Apparently vbscript is a lot different then what I did in the past and 
> I havent had much luck googling it.
> 
> How do ya'll trap for null in the code below ?
> 
> In the past I would have done it at before each response.write line, 
> but the few samples I have found don't seem to work.
> 
> You can try out the code at http://www.virgilslist.com/branch.asp
> 
> Thanks
> 
> Virgil Bierschwale

qry = "SELECT " & fieldname3 & ", " & fieldname6 & ", " & fieldname5 & ", "
& fieldname7 & ", " & fieldname8 & ", " & fieldname9 & ", " & fieldname10 &
", " & fieldname11 & " FROM " & tablename & " where " & fieldname2 & " = '"
& svcBranch & "'"
Set oRS = oConn.Execute(qry)



I don't know if VB has a global setting (I doubt it) for handling nulls like
VFP does i.e. SET NULL TO and SET NULLDISPLAY - but it might be worth
looking for.

You can convert the nulls in your query code with the CASE statement:

Something like: CASE WHEN fieldname3 is null THEN ' ' ELSE
fieldname3 END

This is probably slower than doing something afterward as you write it out.
Can't remember how VB supports (or not) the IIF construct.

Does this help?

Matthew S. Jarvis
IT Manager
Bike Friday - "Performance that Packs."
www.bikefriday.com
541/687-0487 x140
[EMAIL PROTECTED]


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread Stephen the Cook
MB Software Solutions <> wrote:
> Stephen the Cook wrote:
>> I'd have an impact printer do what an impact printer does very well.
>> You are just filling in a few dashes on the form.  This isn't that
>> tough.  Get an OKI Data with push and not a pull feed.
>> 
> 
> When you say "push" do you mean "tractor feed"??  I likened "pull" to
> mean friction feed (or at least that's what I called it many years
> ago).  

No on an OKI the tractor feed would sit ON TOP of the printer and consume an
extra printed form (waste).  The push is going to come from the back using
the wheels that are onbard the printer.   

Stephen Russell
DBA / .Net Developer

Memphis TN 38115
901.246-0159

"Our scientific power has outrun our spiritual power. We have guided
missiles and misguided men." Dr. Martin Luther King Jr.

http://spaces.msn.com/members/srussell/

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.24/592 - Release Date: 12/18/2006
1:45 PM
 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


profox@leafe.com

2006-12-19 Thread Virgil Bierschwale
I tried that on the response.write end, but not the select.
Will try it tomorrow, although all the googling I did this afternoon taught
me that isull only returns .T. or .F. in vbscript.
Boy wouldn’t it be nice to have vfp on this server , but hell, I
probably wouldn’t remember that either as its been awhile..

Planned on doing this in .NET as I need to learn it, but decided I wasn’t
ready to take the time to learn it yet, when I can have this going in a few
weeks.

Darn .NET and the html portion fixed on the screen and the .net controls
floating sure makes it hard to learn in my opinion, but its probably cause
I'm doing something wrong... 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Ricardo Aráoz
Sent: Tuesday, December 19, 2006 6:50 PM
To: ProFox Email List
Subject: Re: [NF] null chr's and  

Virgil Bierschwale wrote:
> Ok, I have empty fields in sql server and I need to replace them with 
>   when they're null.
> 

ISNULL ( check_expression , replacement_value )

Use it this way : Select isnull(possiblyNullField, ' ') as
'possiblyNullField' 
It will return the fields contents if any or the replacement_value if the
field is null.


> Apparently vbscript is a lot different then what I did in the past and 
> I havent had much luck googling it.
> 
> How do ya'll trap for null in the code below ?
> 
> In the past I would have done it at before each response.write line, 
> but the few samples I have found don't seem to work.
> 
> You can try out the code at http://www.virgilslist.com/branch.asp
> 
> Thanks
> 
> Virgil Bierschwale
> http://www.virgilslist.com
> http://www.tccutlery.com
> http://www.bierschwale.com
> http://www.bierschwalesolutions.com
> 
> 
> tablename = "roster"
> 
> 
> fieldname1 = "svcbranch"
> fieldname2 = "svcunit"
> fieldname3 = "svcrate"
> fieldname4 = "svcrank"
> fieldname5 = "svclastname"
> fieldname6 = "svcfirstname"
> fieldname7 = "svccity"
> fieldname8 = "svcstate"
> fieldname9 = "svczip"
> fieldname10 = "svconboard"
> fieldname11 = "svcdeparted"
> fieldname12 = "svclatitude"
> fieldname13 = "svclongitude"
> 
> connectstr = "Driver={SQL Server};SERVER=" & db_server & ";DATABASE=" 
> & db_name & ";UID=" & db_username & ";PWD=" & db_userpassword
> 
> Set oConn = Server.CreateObject("ADODB.Connection")
> oConn.Open connectstr
> 
> qry = "SELECT " & fieldname3 & ", " & fieldname6 & ", " & fieldname5 & ",
"
> & fieldname7 & ", " & fieldname8 & ", " & fieldname9 & ", " & 
> fieldname10 & ", " & fieldname11 & " FROM " & tablename & " where " &
fieldname2 & " = '"
> & svcBranch & "'"
> Set oRS = oConn.Execute(qry)
> 
> Response.Write("" & vbCrLf) 
> Response.Write("" & vbCrLf)
> 
> 
> 
> Do until oRs.EOF
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname3) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname6) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname5) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname7) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname8) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname9) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname10) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname11) & "" & vbCrLf)
>Response.Write("" & vbCrLf)   
>oRS.MoveNext
> Loop
> Response.Write("" & vbCrLf)
> oRs.Close
> 



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Validation of Password

2006-12-19 Thread Virgil Bierschwale
Its been a long time, but I always used "killit.out" (on the net somewhere)
and a flag in the user file that I could turn off. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Ricardo Aráoz
Sent: Tuesday, December 19, 2006 6:43 PM
To: ProFox Email List
Subject: Re: Validation of Password

Dave Thayer wrote:
> On 12/19/06, Ricardo Aráoz <[EMAIL PROTECTED]> wrote:
>> Hi,
>> I need my application to ask for the user's windows password 
>> and validate it (in order to be sure the user hasn't left his 
>> computer on and someone else is using it). Is there a way I can do this?
>>
> 
> To avoid any potential password leaks (or accusations) how about 
> having your program lock the computer (as in pressing 
> windowslogokey-L). According to 
> 
>  this is pretty simple:
> 
> DECLARE INTEGER LockWorkStation IN user32
> LockWorkStation()
> 
> dt

Thanks, this will be really useful. But not right now. The problem is I
cannot lock the users station, I'd be hanged. I just need to check access to
my application, not to the entire workstation.



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


profox@leafe.com

2006-12-19 Thread Virgil Bierschwale
Yeah, I thought I could remember how the iif function worked in vb, but
apparently its been longer then I thought.

I will figure it out tomorrow, had enough for tonight and thanks for the
input. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Matthew Jarvis
Sent: Tuesday, December 19, 2006 6:43 PM
To: profox@leafe.com
Subject: Re: [NF] null chr's and  

Virgil Bierschwale wrote:
> Ok, I have empty fields in sql server and I need to replace them with 
>   when they're null.
> 
> Apparently vbscript is a lot different then what I did in the past and 
> I havent had much luck googling it.
> 
> How do ya'll trap for null in the code below ?
> 
> In the past I would have done it at before each response.write line, 
> but the few samples I have found don't seem to work.
> 
> You can try out the code at http://www.virgilslist.com/branch.asp
> 
> Thanks
> 
> Virgil Bierschwale

qry = "SELECT " & fieldname3 & ", " & fieldname6 & ", " & fieldname5 & ", "
& fieldname7 & ", " & fieldname8 & ", " & fieldname9 & ", " & fieldname10 &
", " & fieldname11 & " FROM " & tablename & " where " & fieldname2 & " = '"
& svcBranch & "'"
Set oRS = oConn.Execute(qry)



I don't know if VB has a global setting (I doubt it) for handling nulls like
VFP does i.e. SET NULL TO and SET NULLDISPLAY - but it might be worth
looking for.

You can convert the nulls in your query code with the CASE statement:

Something like: CASE WHEN fieldname3 is null THEN ' ' ELSE
fieldname3 END

This is probably slower than doing something afterward as you write it out.
Can't remember how VB supports (or not) the IIF construct.

Does this help?

Matthew S. Jarvis
IT Manager
Bike Friday - "Performance that Packs."
www.bikefriday.com
541/687-0487 x140
[EMAIL PROTECTED]


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


profox@leafe.com

2006-12-19 Thread Ricardo Aráoz
Virgil Bierschwale wrote:
> Ok, I have empty fields in sql server and I need to replace them with  
> when they're null.
> 

ISNULL ( check_expression , replacement_value )

Use it this way : Select isnull(possiblyNullField, ' ') as
'possiblyNullField' 
It will return the fields contents if any or the replacement_value if
the field is null.


> Apparently vbscript is a lot different then what I did in the past and I
> havent had much luck googling it.
> 
> How do ya'll trap for null in the code below ?
> 
> In the past I would have done it at before each response.write line, but the
> few samples I have found don't seem to work.
> 
> You can try out the code at http://www.virgilslist.com/branch.asp
> 
> Thanks
> 
> Virgil Bierschwale
> http://www.virgilslist.com
> http://www.tccutlery.com
> http://www.bierschwale.com
> http://www.bierschwalesolutions.com
> 
> 
> tablename = "roster"
> 
> 
> fieldname1 = "svcbranch"
> fieldname2 = "svcunit"
> fieldname3 = "svcrate"
> fieldname4 = "svcrank"
> fieldname5 = "svclastname"
> fieldname6 = "svcfirstname"
> fieldname7 = "svccity"
> fieldname8 = "svcstate"
> fieldname9 = "svczip"
> fieldname10 = "svconboard"
> fieldname11 = "svcdeparted"
> fieldname12 = "svclatitude"
> fieldname13 = "svclongitude"
> 
> connectstr = "Driver={SQL Server};SERVER=" & db_server & ";DATABASE=" &
> db_name & ";UID=" & db_username & ";PWD=" & db_userpassword
> 
> Set oConn = Server.CreateObject("ADODB.Connection")
> oConn.Open connectstr
> 
> qry = "SELECT " & fieldname3 & ", " & fieldname6 & ", " & fieldname5 & ", "
> & fieldname7 & ", " & fieldname8 & ", " & fieldname9 & ", " & fieldname10 &
> ", " & fieldname11 & " FROM " & tablename & " where " & fieldname2 & " = '"
> & svcBranch & "'"
> Set oRS = oConn.Execute(qry)
> 
> Response.Write("" & vbCrLf)
> Response.Write("" & vbCrLf)
> 
> 
> 
> Do until oRs.EOF
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname3) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname6) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname5) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname7) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname8) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname9) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname10) & "" & vbCrLf)
>Response.Write("" & vbCrLf)
>Response.Write(oRs.Fields(fieldname11) & "" & vbCrLf)
>Response.Write("" & vbCrLf)   
>oRS.MoveNext
> Loop
> Response.Write("" & vbCrLf)
> oRs.Close
> 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Validation of Password

2006-12-19 Thread Ricardo Aráoz
Dave Thayer wrote:
> On 12/19/06, Ricardo Aráoz <[EMAIL PROTECTED]> wrote:
>> Hi,
>> I need my application to ask for the user's windows password and
>> validate it (in order to be sure the user hasn't left his computer on
>> and someone else is using it). Is there a way I can do this?
>>
> 
> To avoid any potential password leaks (or accusations) how about
> having your program lock the computer (as in pressing
> windowslogokey-L). According to
> 
>  this is pretty simple:
> 
> DECLARE INTEGER LockWorkStation IN user32
> LockWorkStation()
> 
> dt

Thanks, this will be really useful. But not right now. The problem is I
cannot lock the users station, I'd be hanged. I just need to check
access to my application, not to the entire workstation.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


profox@leafe.com

2006-12-19 Thread Matthew Jarvis
Virgil Bierschwale wrote:
> Ok, I have empty fields in sql server and I need to replace them with  
> when they're null.
> 
> Apparently vbscript is a lot different then what I did in the past and I
> havent had much luck googling it.
> 
> How do ya'll trap for null in the code below ?
> 
> In the past I would have done it at before each response.write line, but the
> few samples I have found don't seem to work.
> 
> You can try out the code at http://www.virgilslist.com/branch.asp
> 
> Thanks
> 
> Virgil Bierschwale

qry = "SELECT " & fieldname3 & ", " & fieldname6 & ", " & fieldname5 & ", "
& fieldname7 & ", " & fieldname8 & ", " & fieldname9 & ", " & fieldname10 &
", " & fieldname11 & " FROM " & tablename & " where " & fieldname2 & " = '"
& svcBranch & "'"
Set oRS = oConn.Execute(qry)



I don't know if VB has a global setting (I doubt it) for handling nulls 
like VFP does i.e. SET NULL TO and SET NULLDISPLAY - but it might be 
worth looking for.

You can convert the nulls in your query code with the CASE statement:

Something like: CASE WHEN fieldname3 is null THEN ' ' ELSE 
fieldname3 END

This is probably slower than doing something afterward as you write it 
out. Can't remember how VB supports (or not) the IIF construct.

Does this help?

Matthew S. Jarvis
IT Manager
Bike Friday - "Performance that Packs."
www.bikefriday.com
541/687-0487 x140
[EMAIL PROTECTED]


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


profox@leafe.com

2006-12-19 Thread Virgil Bierschwale
Ok, I have empty fields in sql server and I need to replace them with  
when they're null.

Apparently vbscript is a lot different then what I did in the past and I
havent had much luck googling it.

How do ya'll trap for null in the code below ?

In the past I would have done it at before each response.write line, but the
few samples I have found don't seem to work.

You can try out the code at http://www.virgilslist.com/branch.asp

Thanks

Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com


tablename = "roster"


fieldname1 = "svcbranch"
fieldname2 = "svcunit"
fieldname3 = "svcrate"
fieldname4 = "svcrank"
fieldname5 = "svclastname"
fieldname6 = "svcfirstname"
fieldname7 = "svccity"
fieldname8 = "svcstate"
fieldname9 = "svczip"
fieldname10 = "svconboard"
fieldname11 = "svcdeparted"
fieldname12 = "svclatitude"
fieldname13 = "svclongitude"

connectstr = "Driver={SQL Server};SERVER=" & db_server & ";DATABASE=" &
db_name & ";UID=" & db_username & ";PWD=" & db_userpassword

Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open connectstr

qry = "SELECT " & fieldname3 & ", " & fieldname6 & ", " & fieldname5 & ", "
& fieldname7 & ", " & fieldname8 & ", " & fieldname9 & ", " & fieldname10 &
", " & fieldname11 & " FROM " & tablename & " where " & fieldname2 & " = '"
& svcBranch & "'"
Set oRS = oConn.Execute(qry)

Response.Write("" & vbCrLf)
Response.Write("" & vbCrLf)



Do until oRs.EOF
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname3) & "" & vbCrLf)
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname6) & "" & vbCrLf)
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname5) & "" & vbCrLf)
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname7) & "" & vbCrLf)
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname8) & "" & vbCrLf)
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname9) & "" & vbCrLf)
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname10) & "" & vbCrLf)
   Response.Write("" & vbCrLf)
   Response.Write(oRs.Fields(fieldname11) & "" & vbCrLf)
   Response.Write("" & vbCrLf)   
   oRS.MoveNext
Loop
Response.Write("" & vbCrLf)
oRs.Close

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.15.24/592 - Release Date: 12/18/2006
1:45 PM
 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Validation of Password

2006-12-19 Thread Dave Thayer
On 12/19/06, Ricardo Aráoz <[EMAIL PROTECTED]> wrote:
> Hi,
> I need my application to ask for the user's windows password and
> validate it (in order to be sure the user hasn't left his computer on
> and someone else is using it). Is there a way I can do this?
>

To avoid any potential password leaks (or accusations) how about
having your program lock the computer (as in pressing
windowslogokey-L). According to

 this is pretty simple:

DECLARE INTEGER LockWorkStation IN user32
LockWorkStation()

dt
-- 
Dave Thayer
Denver, CO


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Read / Write Binary TIFF Image

2006-12-19 Thread Eugene Vital
John Gunvaldson wrote:
> I know I can do this in Python or .NET, but I need to do this in Visual
> FoxPro 9.
>  
> Does anyone have an example that can show the proper setup / way to open
> a binary file (like a TIFF file) - jump to a specific address - and
> conduct a reverse ones compliment on the bytes in a specific range of
> addresses?
>  
> Generally, I am looking for the right way doing something like the
> following...
>  
> *-- open file and read
> h= fopen(TIFF_FILE,10) 
> fseek(h, (m.lnoffset))&& move the pointer
> for lnj = 1 to 42
>
>   *-- each byte
>   x = fread(h, (m.lnj) )
>
>   *Q-- here I need to check byte, and reverse if necessary
>   
I have some C# code I could look at for you that does something very
similar while reading in an image file, maybe you can get some ideas
from that.


> endfor
> fclose(h)
>
> Tia,
>
> John C. Gunvaldson
> San Diego, CA
>
>   




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Validation of Password

2006-12-19 Thread Ricardo Aráoz
Hi,
I need my application to ask for the user's windows password and
validate it (in order to be sure the user hasn't left his computer on
and someone else is using it). Is there a way I can do this?

TIA

Ricardo




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread Rafael Copquin
I have been using VFP since 1997 and already started learning SQL Server, lest 
the vultures (ie obsolescense) make a feast out of me. I started out by reading 
a book by Miriam Liskin, about a fisherman who wrote a program using DBase III 
Plus. Funny if you think of it, for a fisherman to write a computer program, 
but very useful at the time. It was an eye opener. My first program, written in 
DBase III Plus, was accounting for port expenses for a shipping company I was 
working for.

Well, it is 8:00 PM here, so I'll shut my systems down for the day, a very 
torrid summer day here in the Southern Hemisphere.

Bye for now
Rafael Copquin



  - Original Message - 
  From: Hal Kaplan 
  To: [EMAIL PROTECTED] 
  Sent: Tuesday, December 19, 2006 5:55 PM
  Subject: RE: Triplicate/duplicate forms need -- how do you handle it?


  => Subject: Re: Triplicate/duplicate forms need -- how do you handle it?
  => 
  => That's because you're too young! 
  => 
  => I go back to 1987 with the fox...
  => 
  => Rafael
  => 

  You too, Rafael?  I started back then too.  I had a client with a FB 1.0 app 
and I had to learn the language from a DBase manual.  Some day I am planning to 
learn SQL and OOP if I get the chance .

  B+
  HALinNY


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [OT] From the land of fruits and nuts

2006-12-19 Thread Ricardo Aráoz
Michael Madigan wrote:
> No christian fundementalist ever made someone stop
> singing Jewish songs.
> 

Nope! They just made their hearts stop ticking.


> 
> --- "Helio W." <[EMAIL PROTECTED]> wrote:
> 
>> Well said. That's why Christian fundamentalism could
>> be the US undoing.
>> Islam is what really keeps ME in the medieval age.
>>
>>


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [OT] Beginning of big touble ?

2006-12-19 Thread Ricardo Aráoz
Helio W. wrote:
> How about liberating the North Korea people first?
> 
> 
I'd rather 'liberate' a few millions from the Morgan Trust.


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] 2007 Daylight Savings Time

2006-12-19 Thread mrgmhale
Well, by golly woggy, I may just have to look into the M$ patch then, eh?

Thanx.

Gil

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Derek Kalweit
> Sent: Tuesday, December 19, 2006 4:33 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [NF] 2007 Daylight Savings Time
>
>
> > I use AtomicClock to hit the US Naval Observatory's time
> server.  From there
> > I use "NET TIME \\InternalServerName /set /yes" in a batch
> file, fired off
> > via Windows Scheduler, and point the Client PCs to the internal Server.
> > That way I only chew up Internet bandwidth for one mahcine, and
> leverage the
> > USNO time from my internal server for my Client PCs.  I do much the same
> > thing with my client locations.
>
> Most time synchronization tools/technologies just sync GST/UTC time.
> If your offset is incorrect(DST simply changes the offset by 1 hour at
> specific dates), your effective local date will be wrong.
>
>
> --
> Derek
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: calling a webservice with username and password

2006-12-19 Thread Hal Kaplan
=> Subject: calling a webservice with username and password
=> 
=> How can I send username and password to a web service in vfp9?
=> Programatically or from task pane- xml
=>   web services?
=> Web service is :
=> http://test.sgk.gov.tr/saglikws/services/ProvizyonIslemleri/w
=> sdl/ProvizyonIs
=> lemleri.wsdl 
=> 
=> username:4300021
=> password:4300021
=> 
=> Thanks 
=> 
=> Ali Ihsan
=> 

For starters you need to install the Microsoft MSXML software on your system.  
This will allow you to communicate using HTTP.  It is not really complicated 
but there is a lot of detail; too much to get into here.  Try searching for 
"screen scraping" and that will help you become familiar with the software and 
the methods and properties and then you can move on to the next step.

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] 2007 Daylight Savings Time

2006-12-19 Thread Derek Kalweit
> I use AtomicClock to hit the US Naval Observatory's time server.  From there
> I use "NET TIME \\InternalServerName /set /yes" in a batch file, fired off
> via Windows Scheduler, and point the Client PCs to the internal Server.
> That way I only chew up Internet bandwidth for one mahcine, and leverage the
> USNO time from my internal server for my Client PCs.  I do much the same
> thing with my client locations.

Most time synchronization tools/technologies just sync GST/UTC time.
If your offset is incorrect(DST simply changes the offset by 1 hour at
specific dates), your effective local date will be wrong.


-- 
Derek


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Jean Laeremans
On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
> =>Subject: Re: [NF] Signature from a web page
> =>
> =>On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
> =>
> =>>
> =>> Hey Jean, it's working!  You are getting quoted for what I
> =>wrote.  That card is amazing.  Suddenly I feel ... European.
> => Had I known this was going to happen, I would not have
> =>showered this morning .
> =>>
> =>Glad i made your day. BTW don't set your hopes too high.
> =>
> =>A+
> =>jml
> =>
>
> Now you tell me.  Twenty minutes after I wrote that message I began feeling 
> depressed and somewhat guilty for being such a drain on the rest of the 
> world.  I don't like being a European; I will stick with being an American 
> peon.  I am sending the card back and buying some soap on the way home 
> tonight. 
>
> B+
> HALinNY

Ah finally the voice of reason

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Hal Kaplan
=> Subject: Re: [NF] Signature from a web page
=> 
=> On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
=> 
=> >
=> > Hey Jean, it's working!  You are getting quoted for what I 
=> wrote.  That card is amazing.  Suddenly I feel ... European. 
=>  Had I known this was going to happen, I would not have 
=> showered this morning .
=> >
=> Glad i made your day. BTW don't set your hopes too high.
=> 
=> A+
=> jml
=> 

Now you tell me.  Twenty minutes after I wrote that message I began feeling 
depressed and somewhat guilty for being such a drain on the rest of the world.  
I don't like being a European; I will stick with being an American peon.  I am 
sending the card back and buying some soap on the way home tonight. 

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread Hal Kaplan
=> Subject: Re: Triplicate/duplicate forms need -- how do you handle it?
=> 
=> That's because you're too young! 
=> 
=> I go back to 1987 with the fox...
=> 
=> Rafael
=> 

You too, Rafael?  I started back then too.  I had a client with a FB 1.0 app 
and I had to learn the language from a DBase manual.  Some day I am planning to 
learn SQL and OOP if I get the chance .

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[NF] Tech industry has alterior motive with regarts to hi-b visas

2006-12-19 Thread Michael Madigan
http://www.townhall.com/columnists/PhyllisSchlafly/2006/12/18/tech_industry_has_ulterior_motive_regarding_h-1b_visas


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: calling a webservice with password

2006-12-19 Thread Casey McGuire
Ali İhsan Türkoğlu wrote:
> How can I send username and password to a web service in vfp9?
> Programatically or from task pane- xml
>   web services?
> Web service is :
> http://test.sgk.gov.tr/saglikws/services/ProvizyonIslemleri/wsdl/ProvizyonIs
> lemleri.wsdl 

This works for me.  You need to send the username and password in the url.

soap = CREATEOBJECT("mssoap.soapclient30")
soap.MSSoapInit("http:// 
4300021:[EMAIL 
PROTECTED]/saglikws/services/ProvizyonIslemleri/wsdl/ProvizyonIslemleri.wsdl")

Casey McGuire


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Browser/Internet problem - Solved

2006-12-19 Thread Charlie Coleman
At 04:04 PM 12/19/2006 +, Alan Bourke wrote:
>On Tue, 19 Dec 2006 10:30:49 -0500, "Charlie Coleman" <[EMAIL PROTECTED]>
>said:
>
>  Ad-aware is one product I can
> > think of, but I believe there are a lot more out there - many of the
> > free.
>
>No reason not to use Windows Defender from Microsoft.

Is Windows Defender a spyware detector? If so, do you honestly think it 
would track and prohibit 'spyware' from MS? Or did you forget about MS's 
previous 'conviction' of sending data to home base without the user's 
knowledge or consent. In fact, I'd image they probably do it now more than 
ever.

Nope. For monitoring your computer, MS cannot be trusted IMO.

-Charlie 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [OT] Beginning of big touble ?

2006-12-19 Thread Charlie Coleman
At 10:40 AM 12/19/2006 -0500, Ed Leafe wrote:
>On Dec 19, 2006, at 9:31 AM, Charlie Coleman wrote:
>
> > I don't necessarily believe the religion itself is the root cause of the
> > violence, although the Koran (Qur'an) and Hadith writings imply killing
> > non-believers is acceptable or proper.
>
> Like this?
>
>Deuteronomy 17:2-7
>If there be found among you, within any of thy gates which the LORD
>thy God giveth thee, man or woman, that hath wrought wickedness in
>the sight of the LORD thy God, in transgressing his covenant,
>And hath gone and served other gods, and worshipped them, either the
>sun, or moon, or any of the host of heaven, which I have not commanded;
...

I thought you said you studied the Bible...

The above passage is from the Mosaic Law for the Hebrews. So, in other 
words, if a person who was Jewish committed the 'wicked' act, they were to 
be stoned to death. That was their rule of law for civil matters. As far as 
I know, that law still applies today for Jewish people, but you'd have to 
ask an orthodox Jew to be sure. I believe Islam holds similar views in 
terms of civil matters (e.g. behead the Muslim that commits sin, etc).

I'm not sure how you could take that and compare it to a call for world 
domination, or a killing of everyone that doesn't believe the way you do. 
Now, if you pulled out the passages where the Jews were told to go settle 
in a land and that they would have to battle the people there, that would 
have made more sense. But even then, it's not the same as the 'global 
domination' edicts that come from Islamic leaders of past and present day. 
I don't believe I hear Orthodox Jewish Rabbi's calling for the destruction 
of all Muslims.

-Charlie



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Read / Write Binary TIFF Image

2006-12-19 Thread john harvey
The code is very similar to Fox code. Hit the help file and look at fgets(),
fopen(), fread(), fputs(),fseek(). There is sample code that will show you
exactly what you are looking for.

John

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of John Gunvaldson
Sent: Tuesday, December 19, 2006 11:46 AM
To: profox@leafe.com
Subject: Read / Write Binary TIFF Image

I know I can do this in Python or .NET, but I need to do this in Visual
FoxPro 9.
 
Does anyone have an example that can show the proper setup / way to open
a binary file (like a TIFF file) - jump to a specific address - and
conduct a reverse ones compliment on the bytes in a specific range of
addresses?
 
Generally, I am looking for the right way doing something like the
following...
 
*-- open file and read
h= fopen(TIFF_FILE,10) 
fseek(h, (m.lnoffset))  && move the pointer
for lnj = 1 to 42

*-- each byte
x = fread(h, (m.lnj) )

*Q-- here I need to check byte, and reverse if necessary

endfor
fclose(h)

Tia,

John C. Gunvaldson
San Diego, CA



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread Rafael Copquin
That's because you're too young! 

I go back to 1987 with the fox and, living in a Latin American country, had to 
make do with what was available, not always the most rational solution. (I mean 
the do while loop I posted) 

But the printjob/endprintjob construct works well and is really convenient if 
you combine it with the printing system variables.


Take care
Rafael


  Cool!  Thanks for posting that.  I don't think I'd ever seen the 
  PRINTJOB/ENDPRINTJOB commands before, so I looked them up, and now I 
  learned something new today!  See how great this list can be, even on 
  small things?  ;-)

  -- 
  Michael J. Babcock, MCP
  MB Software Solutions, LLC
  http://mbsoftwaresolutions.com
  http://fabmate.com
  "Work smarter, not harder, with MBSS custom software solutions!"




--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [OT] From the land of fruits and nuts

2006-12-19 Thread Michael Madigan
No christian fundementalist ever made someone stop
singing Jewish songs.


--- "Helio W." <[EMAIL PROTECTED]> wrote:

> Well said. That's why Christian fundamentalism could
> be the US undoing.
> Islam is what really keeps ME in the medieval age.
> 
> 
> On 12/19/06, Jim Felton <[EMAIL PROTECTED]>
> wrote:
> >
> > I think Larry the Cable Guy has it right.  We have
> taken Politically
> > Correct-"PC" to the point where PC isn't even PC.
> Our (the US) strength is
> > in our diversity, not our ability to clone each
> other into a single
> > paradigm.
> >
> > Jim
> >
> > -Original Message-
> > From:   [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]  On
> > Behalf
> > Of Michael Madigan
> > Sent:   Tuesday, December 19, 2006 3:39 AM
> > To: profox@leafe.com
> > Subject:[OT] From the land of fruits and
> nuts
> >
> >
> >
>
http://www.telegraph.co.uk/news/main.jhtml?xml=/news/2006/12/16/nxmas216.xml
> >
> > Christmas gifts for Real Americans
> > Free Shipping for orders over $50
> > http://www.cafepress.com/rightwingmike
> >
> >
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [OT] From the land of fruits and nuts

2006-12-19 Thread Michael Madigan
Would you object if you were signing autographs
somewhere and someone started singing Jewish songs? 
How stupid can you get?


--- Jim Felton <[EMAIL PROTECTED]> wrote:

> I think Larry the Cable Guy has it right.  We have
> taken Politically
> Correct-"PC" to the point where PC isn't even PC.
> Our (the US) strength is
> in our diversity, not our ability to clone each
> other into a single
> paradigm.
> 
> Jim
> 
>  -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]  On Behalf
> Of Michael Madigan
> Sent: Tuesday, December 19, 2006 3:39 AM
> To:   profox@leafe.com
> Subject:  [OT] From the land of fruits and nuts
> 
>
http://www.telegraph.co.uk/news/main.jhtml?xml=/news/2006/12/16/nxmas216.xml
> 
> Christmas gifts for Real Americans
> Free Shipping for orders over $50
> http://www.cafepress.com/rightwingmike
> 
> 
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Jean Laeremans
On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:

>
> Hey Jean, it's working!  You are getting quoted for what I wrote.  That card 
> is amazing.  Suddenly I feel ... European.  Had I known this was going to 
> happen, I would not have showered this morning .
>
Glad i made your day. BTW don't set your hopes too high.

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Hal Kaplan
=> Subject: Re: [NF] Signature from a web page
=> 
=> On 12/19/06, Vince Teachout <[EMAIL PROTECTED]> wrote:
=> > Jean Laeremans wrote:
=> > > Ahem. We are 230 years old. And we are not xenophobes. 
=> After all, 
=> > > you are allowed to post here, are you not? Xenophobic, indeed!
=> > >>
=> >
=> > You can't really blame anyone for being a bit Xenaphobic.  
=> The warrior 
=> > princess can be a real b when she's in a bad mood.
=> >
=> 
=> You're confused that's xenophilia...
=> 
=> A+
=> jml
=> 

Hey Jean, it's working!  You are getting quoted for what I wrote.  That card is 
amazing.  Suddenly I feel ... European.  Had I known this was going to happen, 
I would not have showered this morning .

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF]Cluebie for Newbie? Rack vs Tower servers?

2006-12-19 Thread Alan Lukachko
Agreed.

4 computers in towers (mini and full) are quieter than 1 2U rack mount


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Ted Roche
Sent: Friday, December 15, 2006 3:19 PM
To: [EMAIL PROTECTED]
Subject: Re: [NF]Cluebie for Newbie? Rack vs Tower servers?

On 12/15/06, Vince Teachout <[EMAIL PROTECTED]> wrote:
> Would someone give me a brief tutorial on the advantages/disadvantes,
> pros/cons of using a Rack server vs a Tower server?
>

Rack: smaller, denser, more expensive: use in a data center when you
are paying for the amount of real estate your machine takes up.
Noisier, usually: more air flow needed in a smaller space.

Tower: larger, more room for more stuff inside. Noisy.

ymmv

-- 
Ted Roche
Ted Roche & Associates, LLC
http://www.tedroche.com


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Jean Laeremans
On 12/19/06, Vince Teachout <[EMAIL PROTECTED]> wrote:
> Jean Laeremans wrote:
> > Ahem. We are 230 years old. And we are not xenophobes. After all, you
> > are allowed to post here, are you not? Xenophobic, indeed!
> >>
>
> You can't really blame anyone for being a bit Xenaphobic.  The warrior
> princess can be a real b when she's in a bad mood.
>

You're confused that's xenophilia...

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Vince Teachout
Jean Laeremans wrote:
> Ahem. We are 230 years old. And we are not xenophobes. After all, you 
> are allowed to post here, are you not? Xenophobic, indeed!
>> 

You can't really blame anyone for being a bit Xenaphobic.  The warrior 
princess can be a real b when she's in a bad mood.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: More crap dealing with custom form sizeatclientsite.....andtriplicate forms inquiry

2006-12-19 Thread John Weller
I don't like it either but fortunately our government realised that getting
rid of pints in particular could be suicide!  On the other hand, using
millimetres certainly beats fractions of an inch when measuring timber,
glass, paper sizes, etc.  Funnily enough all timber in UK is only available
in multiples of 300mm - which just happens to be about 1 foot!

I was not suggesting that it should be used all the time, merely that it was
an alternative to investigate in this particular case.

John Weller
01380 723235
07976 393631

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Virgil Bierschwale
> Sent: 19 December 2006 16:40
> To: [EMAIL PROTECTED]
> Subject: RE: More crap dealing with custom form
> sizeatclientsite.andtriplicate forms inquiry
>
>
> The whole reason we signed off on that was to be more inline with foreign
> nations that used that system of measurement.
>
> Just like we're letting spanish take over in the states as a second
> language.
> We are americans.
> Our language is english.
> Our unit of measurement is the system of inches and feet..
>
> Only a bunch of politically correct idiots that don't want to
> make waves or
> step on toes would have signed off on any of the above mentioned stuff.
>
>



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: calling a webservice with password

2006-12-19 Thread Tracy Pearson
After creating the SOAP object set the following Connector Properties
  SOAP = CreateObject("MSSoap.SoapClient30")
  SOAP.MSSoapInit( wsdl )
  SOAP.ConnectorProperty("AuthUser") = username
  SOAP.ConnectorProperty("AuthPassword") = password
  SOAP.ConnectorProperty("WinHTTPAuthScheme") = 24

Tracy


> -Original Message-
> From: Ali Ýhsan Türkoðlu
> Sent: Tuesday, December 19, 2006 7:34 AM
>
> How can I send username and password to a web service in
> vfp9? Programatically or from task pane- xml
>   web services?
> Web service is :
> http://test.sgk.gov.tr/saglikws/services/ProvizyonIslemleri/ws
dl/ProvizyonIs
lemleri.wsdl

username:4300021
password:4300021

Thanks

Ali Ihsan




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Read / Write Binary TIFF Image

2006-12-19 Thread John Gunvaldson
I know I can do this in Python or .NET, but I need to do this in Visual
FoxPro 9.
 
Does anyone have an example that can show the proper setup / way to open
a binary file (like a TIFF file) - jump to a specific address - and
conduct a reverse ones compliment on the bytes in a specific range of
addresses?
 
Generally, I am looking for the right way doing something like the
following...
 
*-- open file and read
h= fopen(TIFF_FILE,10) 
fseek(h, (m.lnoffset))  && move the pointer
for lnj = 1 to 42

*-- each byte
x = fread(h, (m.lnj) )

*Q-- here I need to check byte, and reverse if necessary

endfor
fclose(h)

Tia,

John C. Gunvaldson
San Diego, CA



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Export Import Family Tree Maker Files

2006-12-19 Thread Rodney Dixon
You can start at the Latter Day Saints website.  They are VERY BIG into
genealogy.  If I remember correctly, I think they were the ones that
invented GEDCOM.

Regards
Rodney
> -Original Message-
> 
> I have a client who has his family tree information in some VFP Tables
> and want to import some or all the data into Family Tree Maker.
> 
> 
> 
> Has anybody got any ideas were I can get information on "FTW" or
> "GEDCOM" file formats

==
CONFIDENTIALITY NOTICE:  The information in this electronic message (including 
any attachments) is confidential and may be privileged or proprietary.  If you 
are not the intended recipient, any dissemination, disclosure, copying, 
downloading, or other use of the information is prohibited and unauthorized, 
and may be unlawful, regardless of address or routing.  If you are not the 
intended recipient, please inform the sender immediately and permanently delete 
and destroy the original and any copies of this message, including any 
attachments.
==


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Jean Laeremans
On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
> =>Subject: Re: [NF] Signature from a web page

> Ahem.  We are 230 years old.  And we are not xenophobes.  After all, you are 
> allowed to post here, are you not?  Xenophobic, indeed!
>
230 years, you don't say... by that time we've gone metric

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [OT] RE:Morecrapdealingwithcustomformsizeatclientsite.....andtriplicateformsinquiry

2006-12-19 Thread Virgil Bierschwale
Oh I took no offense.
Just wanted everybody to be clear on the issue as I do plan on making a good
living at this stuff if I can survive the starter years  


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Hal Kaplan
Sent: Tuesday, December 19, 2006 11:34 AM
To: ProFox Email List
Subject: RE: [OT]
RE:Morecrapdealingwithcustomformsizeatclientsite.andtriplicateformsinqui
ry

=> Subject: RE: [OT] RE: 
=> Morecrapdealingwithcustomformsizeatclientsite.andtriplica
=> teformsinquiry
=>
=> Actually you are so wrong, but you can't see that..
=> I've had two dealings with two individuals on this list and => for
reason's that I won't go into, I refunded their money in => full because it
was the right thing to do because for => reasons beyond my control, I could
not deliver what I said I would.
=>
=> I will always do the right thing, even if it puts me in a => bind and if
you knew me, you would know that. 
=>
=>
=> Virgil Bierschwale

Relax, Virgil.  Didn't you see the "" in my remark?  It means the same
thing as when you put "" in your posting.

B+
HALinNY


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Dave Thayer
On 12/19/06, Virgil Bierschwale <[EMAIL PROTECTED]> wrote:
> http://www.zipform.com
>
> I don't know the full details, but it has been approved by the court system
> (using digital signatures)
>
> You may want to google for digital signature

You might try the term 'electronic signature' as well so as not to get
lost in the
cryptographic stuff. See
 for a nice
writeup.

-- 
Dave Thayer
Denver, CO


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [OT] RE: Morecrapdealingwithcustomformsizeatclientsite.....andtriplicateformsinquiry

2006-12-19 Thread Hal Kaplan
=> Subject: RE: [OT] RE: 
=> Morecrapdealingwithcustomformsizeatclientsite.andtriplica
=> teformsinquiry
=> 
=> Actually you are so wrong, but you can't see that..
=> I've had two dealings with two individuals on this list and 
=> for reason's that I won't go into, I refunded their money in 
=> full because it was the right thing to do because for 
=> reasons beyond my control, I could not deliver what I said I would.
=> 
=> I will always do the right thing, even if it puts me in a 
=> bind and if you knew me, you would know that. 
=> 
=> 
=> Virgil Bierschwale

Relax, Virgil.  Didn't you see the "" in my remark?  It means the same 
thing as when you put "" in your posting.

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] CSS Help needed

2006-12-19 Thread Kevin Ragsdale
Kevin,

Check the header entry in the CSS. It is set to 110px, though the image is
only 61px.

HTH,
Kevin

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Kevin Cully
Sent: Tuesday, December 19, 2006 9:54 AM
To: [EMAIL PROTECTED]
Subject: [NF] CSS Help needed

I'm in over my head by a bit.

I'm having trouble with the header on a web site I'm doing for a client. 
  I am developing a WordPress site, I removed the text name from the 
header template, and I added their logo as a PNG.

Once I did that, the navigation menu () which contains the 
"Home / About / Contact Us" unordered list was pushed down too far and I 
can't figure out what is causing that in the CSS or how to fix it.  I 
want that content up next to the logo.

Here's the web site: http://www.ireadyhomes.com/?page_id=4
Here's the CSS file:
http://www.ireadyhomes.com/wp-content/themes/sapphire-10/style.css

I'm hoping that someone can hit me over the head with the solution.  Thanks.

-- 
Kevin Cully
CULLY Technologies, LLC

Sponsor of Fox Forward 2006!
http://foxforward.net



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


calling a webservice with username and password

2006-12-19 Thread Ali İhsan Türkoğlu
How can I send username and password to a web service in vfp9?
Programatically or from task pane- xml
  web services?
Web service is :
http://test.sgk.gov.tr/saglikws/services/ProvizyonIslemleri/wsdl/ProvizyonIs
lemleri.wsdl 

username:4300021
password:4300021

Thanks 

 

Ali Ihsan

 

 



--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[OT] RE: [NF] Signature from a web page

2006-12-19 Thread Virgil Bierschwale
Actually I disagree with both of ya'll
I've visited most of the meditreannean countries and a lot of the caribbean
countries and africa and the canary islands...

They are all very nice and I would do it again if things were better.. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Jean Laeremans
Sent: Tuesday, December 19, 2006 11:25 AM
To: ProFox Email List
Subject: Re: [NF] Signature from a web page

On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
> There is nothing to see in all of the world that cannot be seen in similar
form within the >continental United States.

Same here but replace US by EU..lol..nothing much to see in a 200 year old
country..and they can keep there xenophobic attitudes too

A+
jml


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Hal Kaplan
=> Subject: Re: [NF] Signature from a web page
=> 
=> On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
=> > There is nothing to see in all of the world that cannot be 
=> seen in similar form within the >continental United States.
=> 
=> Same here but replace US by EU..lol..nothing much to see in 
=> a 200 year old country..and they can keep there xenophobic 
=> attitudes too
=> 
=> A+
=> jml
=> 
Ahem.  We are 230 years old.  And we are not xenophobes.  After all, you are 
allowed to post here, are you not?  Xenophobic, indeed!

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] 2007 Daylight Savings Time

2006-12-19 Thread mrgmhale
I use AtomicClock to hit the US Naval Observatory's time server.  From there
I use "NET TIME \\InternalServerName /set /yes" in a batch file, fired off
via Windows Scheduler, and point the Client PCs to the internal Server.
That way I only chew up Internet bandwidth for one mahcine, and leverage the
USNO time from my internal server for my Client PCs.  I do much the same
thing with my client locations.

Gil

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Matthew Jarvis
> Sent: Tuesday, December 19, 2006 11:56 AM
> To: [EMAIL PROTECTED]
> Subject: [NF] 2007 Daylight Savings Time
>
>
> I got a letter from IBM talking generally about the new DST changes that
> are going into effect March 2007.
>
> They say "In 2007, US Daylight Saving Time is changing and will begin on
> the 2nd Sunday in March and end the first Sunday in November".
>
> This is more just FYI for folks, but I'm curious what preparations
> people are doing for this. My servers ping a time server - do those time
> servers have DST under control I wonder?
>
>
> --
> Matthew S. Jarvis
> IT Manager
> Bike Friday - "Performance that Packs."
> www.bikefriday.com
> 541/687-0487 x140
> [EMAIL PROTECTED]
>
>
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Jean Laeremans
On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
> There is nothing to see in all of the world that cannot be seen in similar 
> form within the >continental United States.

Same here but replace US by EU..lol..nothing much to see in a 200 year
old country..and they can keep there xenophobic attitudes too

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[NF] Mac OS X? Enough security holes to fill a month? Shurely shome mishtake ...

2006-12-19 Thread Alan Bourke
http://blog.washingtonpost.com/securityfix/2006/12/january_2007_month_of_apple_bu.html
-- 
  Alan Bourke
  [EMAIL PROTECTED]

-- 
http://www.fastmail.fm - Send your email first class



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [OT] RE: More crapdealingwithcustomformsizeatclientsite.....andtriplicate formsinquiry

2006-12-19 Thread Virgil Bierschwale
Actually you are so wrong, but you can't see that..
I've had two dealings with two individuals on this list and for reason's
that I won't go into, I refunded their money in full because it was the
right thing to do because for reasons beyond my control, I could not deliver
what I said I would.

I will always do the right thing, even if it puts me in a bind and if you
knew me, you would know that. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Hal Kaplan
Sent: Tuesday, December 19, 2006 11:24 AM
To: ProFox Email List
Subject: RE: [OT] RE: More
crapdealingwithcustomformsizeatclientsite.andtriplicate formsinquiry

=> Subject: RE: [OT] RE: More crap
=> dealingwithcustomformsizeatclientsite.andtriplicate forms inquiry =>
=> You can click on the button on my bierschwale solutions site => and it
will hold your hand for you  => 

Yeah, hold my hand while picking my pocket .  No thanks.

B+
HALinNY


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] You say tomayto, I say big ol' red thing

2006-12-19 Thread MB Software Solutions
Hal Kaplan wrote:
> Please stop wasting bandwidth with these nonsense messages :b
>   

LOL!  Touché

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] 2007 Daylight Savings Time

2006-12-19 Thread Alan Bourke
I noticed today that there is a Windows Update patch that deals with
this.
-- 
  Alan Bourke
  [EMAIL PROTECTED]

-- 
http://www.fastmail.fm - Same, same, but different…



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [OT] RE: More crap dealingwithcustomformsizeatclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Hal Kaplan
=> Subject: RE: [OT] RE: More crap 
=> dealingwithcustomformsizeatclientsite.andtriplicate forms inquiry
=> 
=> You can click on the button on my bierschwale solutions site 
=> and it will hold your hand for you  
=> 

Yeah, hold my hand while picking my pocket .  No thanks.

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Hal Kaplan
=> Subject: Re: [NF] Signature from a web page
=> 
=> >
=> > "The Jean Laeremans Card:  Don't leave home without it!"
=> >
=> > B+
=> > HALinNY
=> 
=> Something the US & EU agreed upon so expect some chip on 
=> your passport too in the near future. BTW it was the US who 
=> insisted upon it
=> 
=> A+
=> jml
=> 
The US may have insisted but the EU agreed.  You should not let some upstart 
imperialistic country push you guys around.  I don't have a passport and I have 
no intention of getting one as I am an isolationist.  There is nothing to see 
in all of the world that cannot be seen in similar form within the continental 
United States.

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [OT] RE: More crap dealing withcustomformsizeatclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Virgil Bierschwale
They were founding a country and defending themselves from the oppressors
that they escaped from, but now the oppressors have come back in the form of
politically correct people and we either have to:
A. Go into outer space
B. Go under the oceans or
C. Run them the hell out of america.

Why would a sole proprietor incorporate ?
Why would a sole proprietor give you the name of their accountant if you
werent buying their business ?
Why would your deduction be tax deductible ?
You can click on the button on my bierschwale solutions site and it will
hold your hand for you  


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Hal Kaplan
Sent: Tuesday, December 19, 2006 11:05 AM
To: ProFox Email List
Subject: RE: [OT] RE: More crap dealing
withcustomformsizeatclientsite.andtriplicate forms inquiry

=> Subject: [OT] RE: More crap dealing with
=> customformsizeatclientsite.andtriplicate forms inquiry => => My
thoughts of a few days ago ?
=>
=> I still say that the politicians are the most crooked people => out there
and I still advocate that we vote them all out of office.
=> Just because they voted way back then, doesn't mean that => they were
doing what their people wanted them too, any more => then they do now..
=> 

How about the period 1770 - 1792?  What were they doing then besides being
treasonous?

=> That's why I'm looking for partners to help fund my => "Accountability in
Politics" web site..
=>
=> Can I put you down for a 1,000 ?
=>
=> Thanks in advance 
=>
Sure, you can put me down for a big one.  Where did you incorporate?  Who is
your accountant?  Is my contribution tax-deductable?  Where should I send
the money?

B+
HALinNY


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Jean Laeremans
On 12/19/06, Hal Kaplan <[EMAIL PROTECTED]> wrote:
> =>Subject: Re: [NF] Signature from a web page
> =>
> =>Our identity cards have a chip which will be used for that purpose.
> =>Contains things like blood group etc too.
> =>
> =>A+
> =>jml
> =>
>
> Will it include some of your DNA too?  Just in case you become separated from 
> the card, we might want to clone you.
>
> I can see the future where your card will become you and no one will need you 
> any more, just the card.  Kewl.
>
> "The Jean Laeremans Card:  Don't leave home without it!"
>
> B+
> HALinNY

Something the US & EU agreed upon so expect some chip on your passport
too in the near future. BTW it was the US who insisted upon it

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] You say tomayto, I say big ol' red thing

2006-12-19 Thread Hal Kaplan
=> Subject: Re: [NF] You say tomayto, I say big ol' red thing
=> 
=> Of course I realize that there's a big differencethat's 
=> why I had the  behind it!  ;-)  Can't tell you how many 
=> idiots have called my last name "Badcock" instead of 
=> "Babcock" even when it was spelled out in front of them.  
=> For crying out loud, wouldn't you look twice if you saw the 
=> name spelled like that JUST to make sure you didn't misread 
=> it?  I mean, c'mon folks!  To be fair...most of these folks 
=> were much much older (i.e., senior citizens).
=> 
=> Michael J. Babcock, MCP

Please stop wasting bandwidth with these nonsense messages :b

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Hal Kaplan
=> Subject: Re: [NF] Signature from a web page
=> 
=> Our identity cards have a chip which will be used for that purpose.
=> Contains things like blood group etc too.
=> 
=> A+
=> jml
=> 

Will it include some of your DNA too?  Just in case you become separated from 
the card, we might want to clone you.

I can see the future where your card will become you and no one will need you 
any more, just the card.  Kewl.

"The Jean Laeremans Card:  Don't leave home without it!"

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread MB Software Solutions
Chris Davis wrote:
> Why get a signature?  We used to sign credit/debit card slips but now we
> have chip and pin.  Could you not issue users of your website with some kind
> of password or pin which they can use to authorise stuff?  I have a username
> and password for my online banking, but I also have an online pin number
> which I have to enter if I am doing anything such as moving money around
> etc.
>
>   
As much as I favor technology, some of this stuff scares the crap out of 
me since you hear about so many breaches in security.  When it comes to 
the web, I don't want to do *everything* on it.  But hey, some do (and 
sometimes just to be able to say that they can do it, it seems).  No 
thanks for this Gen X-er.

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [OT] RE: More crap dealing with customformsizeatclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Hal Kaplan
=> Subject: [OT] RE: More crap dealing with 
=> customformsizeatclientsite.andtriplicate forms inquiry
=> 
=> My thoughts of a few days ago ?
=> 
=> I still say that the politicians are the most crooked people 
=> out there and I still advocate that we vote them all out of office.
=> Just because they voted way back then, doesn't mean that 
=> they were doing what their people wanted them too, any more 
=> then they do now..
=> 

How about the period 1770 - 1792?  What were they doing then besides being 
treasonous?

=> That's why I'm looking for partners to help fund my 
=> "Accountability in Politics" web site..
=> 
=> Can I put you down for a 1,000 ?
=> 
=> Thanks in advance  
=> 
Sure, you can put me down for a big one.  Where did you incorporate?  Who is 
your accountant?  Is my contribution tax-deductable?  Where should I send the 
money?

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread Jean Laeremans
On 12/19/06, Chris Davis <[EMAIL PROTECTED]> wrote:
> Why get a signature?  We used to sign credit/debit card slips but now we
> have chip and pin.  Could you not issue users of your website with some kind
> of password or pin which they can use to authorise stuff?  I have a username
> and password for my online banking, but I also have an online pin number
> which I have to enter if I am doing anything such as moving money around
> etc.
>
> Chris.

Our identity cards have a chip which will be used for that purpose.
Contains things like blood group etc too.

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Chris Davis
Why get a signature?  We used to sign credit/debit card slips but now we
have chip and pin.  Could you not issue users of your website with some kind
of password or pin which they can use to authorise stuff?  I have a username
and password for my online banking, but I also have an online pin number
which I have to enter if I am doing anything such as moving money around
etc.

Chris. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of James E Harvey
Sent: 19 December 2006 16:48
To: [EMAIL PROTECTED]
Subject: RE: [NF] Signature from a web page

We do have a pdf they can print out, fill out, and fax back, but the Boss
thought it would be unique to do it all "on-line".

James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of MB Software Solutions
Sent: Tuesday, December 19, 2006 11:35 AM
To: profox@leafe.com
Subject: Re: [NF] Signature from a web page

James E Harvey wrote:
> My Boss wants to know if we can create an on-line contract for users 
> to
fill
> out and "sign" for submitting on our web site.
>
> Something like a fillable pdf form that would have a section at the 
> bottom of the form where when the mouse hovered in that area it would 
> turn into some kind of drawing tool where they could "sign" their name.
>
> The completed form with signature would then be "emailed" to our 
> account
for
> printing.
>
> Has anyone seen a web page similar to this, or have any thoughts on it
even
> being possible???
>   

Sorry, but to me, it seems not worth it as to what it would take and perhaps
"expose", as opposed to just having the form available via PDF on your
website, having the person print it out and fax it back to you.  
Simplicity, even though perhaps a extra step of printing and faxing.

just my 2 centsneed change?  

--
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Hal Kaplan
=> Subject: RE: [NF] Signature from a web page
=> 
=> We do have a pdf they can print out, fill out, and fax back, 
=> but the Boss thought it would be unique to do it all "on-line".
=> 
=> James E Harvey

Hey, if it's going to be unique, we're not going to be able to help you because 
it's never been done before.  If it was, it would not be unique! 

As our planet's population grows, it becomes increasingly difficult to accept 
the ubiquity of uniquity. - Hal Kaplan, 2006

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[OT] RE: More crap dealing with custom formsizeatclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Virgil Bierschwale
My thoughts of a few days ago ?

I still say that the politicians are the most crooked people out there and I
still advocate that we vote them all out of office.
Just because they voted way back then, doesn’t mean that they were doing
what their people wanted them too, any more then they do now..

That’s why I'm looking for partners to help fund my "Accountability in
Politics" web site..

Can I put you down for a 1,000 ?

Thanks in advance  


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Hal Kaplan
Sent: Tuesday, December 19, 2006 10:56 AM
To: ProFox Email List
Subject: RE: More crap dealing with custom
formsizeatclientsite.andtriplicate forms inquiry

=> Subject: RE: More crap dealing with custom form
=> sizeatclientsite.andtriplicate forms inquiry => => The whole reason
we signed off on that was to be more inline => with foreign nations that
used that system of measurement.
=>
=> Just like we're letting spanish take over in the states as a => second
language.
=> We are americans.
=> Our language is english.
=> Our unit of measurement is the system of inches and feet..
=>
=> Only a bunch of politically correct idiots that don't want => to make
waves or step on toes would have signed off on any => of the above mentioned
stuff. 
=>
=> Virgil Bierschwale

Virgil, the only way the USofA can become a signatory of a treaty is for the
Upper House to approve it.  I forget what the margin must be but it has to
be at least half.  And since there were about 43 states in the Union at that
time, there had to be at least 43 duly elected United States Senators in
favor of signing the treaty.

Now, as you so eloquently pointed out the other day, if these gentlemen were
elected they must have been doing exactly what we wanted them to do.  Of
course we did not vote for them; our grandparents did (well, not mine, they
were in Russia at that time).

So why are you complaining?  Are you telling us that your grandfathers (your
grandmothers could not vote then) voted for the wrong people or that their
candidates ignored their wishes or what?

Just curious, Virgil.  How do you reconcile your thoughts of today with your
thoughts of a few days ago?

B+
HALinNY


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[NF] 2007 Daylight Savings Time

2006-12-19 Thread Matthew Jarvis
I got a letter from IBM talking generally about the new DST changes that 
are going into effect March 2007.

They say "In 2007, US Daylight Saving Time is changing and will begin on 
the 2nd Sunday in March and end the first Sunday in November".

This is more just FYI for folks, but I'm curious what preparations 
people are doing for this. My servers ping a time server - do those time 
servers have DST under control I wonder?


-- 
Matthew S. Jarvis
IT Manager
Bike Friday - "Performance that Packs."
www.bikefriday.com
541/687-0487 x140
[EMAIL PROTECTED]




___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size at client site.....andtriplicate forms inquiry

2006-12-19 Thread MB Software Solutions
Peter Cushing wrote:
> The imperial system.
>
> http://en.wikipedia.org/wiki/Imperial_unit
>
> I was brought up as an engineer using both, and the metric system is far 
> simpler.
>   

I can't imagine why anyone would think otherwise, since metric using a 
consistent base-10 logic.

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[OT] RE: More crap dealing with custom form sizeatclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Virgil Bierschwale
 
We kind of like it..
If you don't like it, you don't have to live here.

Oh, but that’s right, you're not an american, you just would like for us to
use your system of measuring temperatures 

Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Jean Laeremans
Sent: Tuesday, December 19, 2006 10:52 AM
To: ProFox Email List
Subject: Re: More crap dealing with custom form
sizeatclientsite.andtriplicate forms inquiry

On 12/19/06, Virgil Bierschwale <[EMAIL PROTECTED]> wrote:
> The whole reason we signed off on that was to be more inline with 
> foreign nations that used that system of measurement.
>
> Just like we're letting spanish take over in the states as a second 
> language.
> We are americans.
> Our language is english.
> Our unit of measurement is the system of inches and feet..
>
> Only a bunch of politically correct idiots that don't want to make 
> waves or step on toes would have signed off on any of the above mentioned
stuff.

While you're at it throw away that fahrenheit rubbish too

A+
jml


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Re: [NF] Signature from a web page

2006-12-19 Thread MB Software Solutions
James E Harvey wrote:
> We do have a pdf they can print out, fill out, and fax back, but the Boss
> thought it would be unique to do it all "on-line".
>   

Unique in theory, but probably more of a PITA (pain in the arse) in reality.

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: More crap dealing with custom form sizeatclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Hal Kaplan
=> Subject: RE: More crap dealing with custom form 
=> sizeatclientsite.andtriplicate forms inquiry
=> 
=> The whole reason we signed off on that was to be more inline 
=> with foreign nations that used that system of measurement.
=> 
=> Just like we're letting spanish take over in the states as a 
=> second language.
=> We are americans.
=> Our language is english.
=> Our unit of measurement is the system of inches and feet..
=> 
=> Only a bunch of politically correct idiots that don't want 
=> to make waves or step on toes would have signed off on any 
=> of the above mentioned stuff. 
=> 
=> Virgil Bierschwale

Virgil, the only way the USofA can become a signatory of a treaty is for the 
Upper House to approve it.  I forget what the margin must be but it has to be 
at least half.  And since there were about 43 states in the Union at that time, 
there had to be at least 43 duly elected United States Senators in favor of 
signing the treaty.

Now, as you so eloquently pointed out the other day, if these gentlemen were 
elected they must have been doing exactly what we wanted them to do.  Of course 
we did not vote for them; our grandparents did (well, not mine, they were in 
Russia at that time).

So why are you complaining?  Are you telling us that your grandfathers (your 
grandmothers could not vote then) voted for the wrong people or that their 
candidates ignored their wishes or what?

Just curious, Virgil.  How do you reconcile your thoughts of today with your 
thoughts of a few days ago?

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size atclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Jean Laeremans
On 12/19/06, Virgil Bierschwale <[EMAIL PROTECTED]> wrote:
> The whole reason we signed off on that was to be more inline with foreign
> nations that used that system of measurement.
>
> Just like we're letting spanish take over in the states as a second
> language.
> We are americans.
> Our language is english.
> Our unit of measurement is the system of inches and feet..
>
> Only a bunch of politically correct idiots that don't want to make waves or
> step on toes would have signed off on any of the above mentioned stuff.

While you're at it throw away that fahrenheit rubbish too

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread MB Software Solutions
Hal Kaplan wrote:
> Fortunately, this is the last thing I have to say about your printing problem.
>   

And fortunately for the rest of us toosaves us bandwidth and hitting 
the [DELETE] key for nonsense posts.  :-p

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Virgil Bierschwale
http://www.zipform.com

I don't know the full details, but it has been approved by the court system
(using digital signatures)

You may want to google for digital signature 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of James E Harvey
Sent: Tuesday, December 19, 2006 10:45 AM
To: 'ProFox Email List'
Subject: RE: [NF] Signature from a web page 

Do you know of any specific web sites using this I can view?

I thought digital signatures was more of an official thing where you
registered yourself with a third party so the recipient could be assured it
was you agreeing to the terms etc., no an actual "signature" per se.


James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Virgil Bierschwale
Sent: Tuesday, December 19, 2006 11:34 AM
To: 'ProFox Email List'
Subject: RE: [NF] Signature from a web page 

They allow real estate contracts these days to use those features.
Try zipforms, maybe they have some info on their site.

Its called an electronic signature and I'm seeing more and more on it. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of James E Harvey
Sent: Tuesday, December 19, 2006 10:24 AM
To: 'ProFox Email List'
Subject: [NF] Signature from a web page 

My Boss wants to know if we can create an on-line contract for users to fill
out and "sign" for submitting on our web site.

Something like a fillable pdf form that would have a section at the bottom
of the form where when the mouse hovered in that area it would turn into
some kind of drawing tool where they could "sign" their name.

The completed form with signature would then be "emailed" to our account for
printing.

Has anyone seen a web page similar to this, or have any thoughts on it even
being possible???

James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread MB Software Solutions
Paul Newton wrote:
> Tractor can be push or pull (or sometimes both).
>   

Oh right!  Now I remembersome had the tracks in the rear, pulling it 
through.  Thanks for that trip back in time, Paul!  What a memory!

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread James E Harvey
We do have a pdf they can print out, fill out, and fax back, but the Boss
thought it would be unique to do it all "on-line".

James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of MB Software Solutions
Sent: Tuesday, December 19, 2006 11:35 AM
To: profox@leafe.com
Subject: Re: [NF] Signature from a web page

James E Harvey wrote:
> My Boss wants to know if we can create an on-line contract for users to
fill
> out and "sign" for submitting on our web site.
>
> Something like a fillable pdf form that would have a section at the bottom
> of the form where when the mouse hovered in that area it would turn into
> some kind of drawing tool where they could "sign" their name.
>
> The completed form with signature would then be "emailed" to our account
for
> printing.
>
> Has anyone seen a web page similar to this, or have any thoughts on it
even
> being possible???
>   

Sorry, but to me, it seems not worth it as to what it would take and 
perhaps "expose", as opposed to just having the form available via PDF 
on your website, having the person print it out and fax it back to you.  
Simplicity, even though perhaps a extra step of printing and faxing.

just my 2 centsneed change?  

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] CSS Help needed

2006-12-19 Thread Helio W.
It seems fixed now. What did you do?

BTW, are you using PNG with transparency? The image doesn't look right on
IE6.

On 12/19/06, Kevin Cully <[EMAIL PROTECTED]> wrote:
>
> I tried adjusting the width from 300px to be 200px, 100px, and even
> 400px.  The level of the Nav area still remains well below the header
> graphic.
>
> Just to clarify the section I was changing, it was the "#header #nav"
> section.  I've set it back to 300px for now.
>
>
> Kevin Cully
> CULLY Technologies, LLC
>
> Sponsor of Fox Forward 2006!
> http://foxforward.net
>
>
> Helio W. wrote:
> > Have you tried to decrease "nav" div's width? It seems your new PNG is
> > pushing the "nav" div (which is floated "right") to the bottom.
>
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size atclientsite.....andtriplicate forms inquiry

2006-12-19 Thread MB Software Solutions
Virgil Bierschwale wrote:
> The whole reason we signed off on that was to be more inline with foreign
> nations that used that system of measurement.
>
> Just like we're letting spanish take over in the states as a second
> language.
> We are americans.
> Our language is english.
> Our unit of measurement is the system of inches and feet..
>
> Only a bunch of politically correct idiots that don't want to make waves or
> step on toes would have signed off on any of the above mentioned stuff. 
>   

(Referee blowing the whistle!)  Ok, oktake it [OT] if it's no longer 
on topic or non-Tech!!!  No political banter here, please!

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size at client site.....andtriplicate forms inquiry

2006-12-19 Thread Peter Cushing
MB Software Solutions wrote:
> some scientists using the Metric system, and some using 
> the (whatever the Feet/Pounds/Inches/Miles/etc.) system
The imperial system.

http://en.wikipedia.org/wiki/Imperial_unit

I was brought up as an engineer using both, and the metric system is far 
simpler.

Peter



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread James E Harvey
Do you know of any specific web sites using this I can view?

I thought digital signatures was more of an official thing where you
registered yourself with a third party so the recipient could be assured it
was you agreeing to the terms etc., no an actual "signature" per se.


James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Virgil Bierschwale
Sent: Tuesday, December 19, 2006 11:34 AM
To: 'ProFox Email List'
Subject: RE: [NF] Signature from a web page 

They allow real estate contracts these days to use those features.
Try zipforms, maybe they have some info on their site.

Its called an electronic signature and I'm seeing more and more on it. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of James E Harvey
Sent: Tuesday, December 19, 2006 10:24 AM
To: 'ProFox Email List'
Subject: [NF] Signature from a web page 

My Boss wants to know if we can create an on-line contract for users to fill
out and "sign" for submitting on our web site.

Something like a fillable pdf form that would have a section at the bottom
of the form where when the mouse hovered in that area it would turn into
some kind of drawing tool where they could "sign" their name.

The completed form with signature would then be "emailed" to our account for
printing.

Has anyone seen a web page similar to this, or have any thoughts on it even
being possible???

James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] CSS Help needed - SOLVED

2006-12-19 Thread Kevin Cully
I think I've got this solved.

I was looking at the CSS and trying to find out what would reserve 
space.  Well, originally, the text name of the site was in a  tag. 
I took that out when I put in an image but I was thinking that perhaps I 
needed a "#header img" entry in the CSS.

Once I added it, and set the width to 300px (same as the PNG file), 
things started to look much better.  Take a look:

http://www.ireadyhomes.com/?page_id=4

Thanks to everyone that responded.

Kevin Cully
CULLY Technologies, LLC

Sponsor of Fox Forward 2006!
http://foxforward.net


Kevin Cully wrote:
> I tried adjusting the width from 300px to be 200px, 100px, and even 
> 400px.  The level of the Nav area still remains well below the header 
> graphic.
> 
> Just to clarify the section I was changing, it was the "#header #nav" 
> section.  I've set it back to 300px for now.
> 



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size atclient site.....andtriplicate forms inquiry

2006-12-19 Thread MB Software Solutions
Jean Laeremans wrote:
> On 12/19/06, Virgil Bierschwale <[EMAIL PROTECTED]> wrote:
>   
>> What ?
>> Are you crazy ?
>> They can take that cm stuff and shove it...
>>
>> Some laws are made to be broken.
>> We are Americans, not a bunch of politically correct robots...
>> 
>
> So what has the use of a metric system to do with political correctness ?
>
>   

I for one would PREFER the Base-10 metric system, as I think it'd be a 
heck of a lot easier and consistent!

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size at client site.....andtriplicate forms inquiry

2006-12-19 Thread MB Software Solutions
Hal Kaplan wrote:
> In 1888, the United States of America was a signatory to a treaty wherein all 
> participants agreed to standardize on the METRIC SYSTEM.  Yes, our country 
> has been on the Metric standard for almost 120 years but you would never know 
> it because of our leadership position in the art and science of 
> manufacturing.  However, now that we are no longer in that leadership 
> position (thanks to the Republicans), those who are have begun to force us to 
> honor our commitment of 1888.
>
> cms?  Centimeters.  One-hundredths of a meter.  
>
> I hope this explains things for you, Michael 
>
>   

Thanks Hal, you red commi sympathizer.

(Just kidding)

And besidesNASA's big snafu a few years back with the Mars lander 
was caused by some scientists using the Metric system, and some using 
the (whatever the Feet/Pounds/Inches/Miles/etc.) systemor so I 
thought?  I could be wrong.  

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: More crap dealing with custom form size atclientsite.....andtriplicate forms inquiry

2006-12-19 Thread Virgil Bierschwale
The whole reason we signed off on that was to be more inline with foreign
nations that used that system of measurement.

Just like we're letting spanish take over in the states as a second
language.
We are americans.
Our language is english.
Our unit of measurement is the system of inches and feet..

Only a bunch of politically correct idiots that don't want to make waves or
step on toes would have signed off on any of the above mentioned stuff. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Jean Laeremans
Sent: Tuesday, December 19, 2006 10:31 AM
To: ProFox Email List
Subject: Re: More crap dealing with custom form size
atclientsite.andtriplicate forms inquiry

On 12/19/06, Virgil Bierschwale <[EMAIL PROTECTED]> wrote:
> What ?
> Are you crazy ?
> They can take that cm stuff and shove it...
>
> Some laws are made to be broken.
> We are Americans, not a bunch of politically correct robots...

So what has the use of a metric system to do with political correctness ?

A+
jml


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] You say tomayto, I say big ol' red thing

2006-12-19 Thread MB Software Solutions
Hal Kaplan wrote:
> I will tell you whatever.  It is like the difference between 4.625" and 
> 4.667".  By itself, not much.  But if you take that kind of an attitude 
> toward everything you do, after a while the little offsets will add up and 
> you won't know if you are being pushed or pulled.
>
>   

Of course I realize that there's a big differencethat's why I had 
the  behind it!  ;-)  Can't tell you how many idiots have called my 
last name "Badcock" instead of "Babcock" even when it was spelled out in 
front of them.  For crying out loud, wouldn't you look twice if you saw 
the name spelled like that JUST to make sure you didn't misread it?  I 
mean, c'mon folks!  To be fair...most of these folks were much much 
older (i.e., senior citizens).


-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Signature from a web page

2006-12-19 Thread MB Software Solutions
James E Harvey wrote:
> My Boss wants to know if we can create an on-line contract for users to fill
> out and "sign" for submitting on our web site.
>
> Something like a fillable pdf form that would have a section at the bottom
> of the form where when the mouse hovered in that area it would turn into
> some kind of drawing tool where they could "sign" their name.
>
> The completed form with signature would then be "emailed" to our account for
> printing.
>
> Has anyone seen a web page similar to this, or have any thoughts on it even
> being possible???
>   

Sorry, but to me, it seems not worth it as to what it would take and 
perhaps "expose", as opposed to just having the form available via PDF 
on your website, having the person print it out and fax it back to you.  
Simplicity, even though perhaps a extra step of printing and faxing.

just my 2 centsneed change?  

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Virgil Bierschwale
They allow real estate contracts these days to use those features.
Try zipforms, maybe they have some info on their site.

Its called an electronic signature and I'm seeing more and more on it. 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of James E Harvey
Sent: Tuesday, December 19, 2006 10:24 AM
To: 'ProFox Email List'
Subject: [NF] Signature from a web page 

My Boss wants to know if we can create an on-line contract for users to fill
out and "sign" for submitting on our web site.

Something like a fillable pdf form that would have a section at the bottom
of the form where when the mouse hovered in that area it would turn into
some kind of drawing tool where they could "sign" their name.

The completed form with signature would then be "emailed" to our account for
printing.

Has anyone seen a web page similar to this, or have any thoughts on it even
being possible???

James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size atclient site.....andtriplicate forms inquiry

2006-12-19 Thread Jean Laeremans
On 12/19/06, Virgil Bierschwale <[EMAIL PROTECTED]> wrote:
> What ?
> Are you crazy ?
> They can take that cm stuff and shove it...
>
> Some laws are made to be broken.
> We are Americans, not a bunch of politically correct robots...

So what has the use of a metric system to do with political correctness ?

A+
jml


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Signature from a web page

2006-12-19 Thread Hal Kaplan
=> Subject: [NF] Signature from a web page 
=> 
=> My Boss wants to know if we can create an on-line contract 
=> for users to fill out and "sign" for submitting on our web site.
=> 
=> Something like a fillable pdf form that would have a section 
=> at the bottom of the form where when the mouse hovered in 
=> that area it would turn into some kind of drawing tool where 
=> they could "sign" their name.
=> 
=> The completed form with signature would then be "emailed" to 
=> our account for printing.
=> 
=> Has anyone seen a web page similar to this, or have any 
=> thoughts on it even being possible???
=> 
=> James E Harvey

I have not seen one and I suggest you try an experiment before you go further:

Open up Paint to a new drawing and try to sign your name using your mouse.  My 
guess is that you will have a great deal of trouble.  

The best way to accomplish this is to use TabletPC technology but not everyone 
has this available so it is not a great idea for mass usage.

You do not have a unique problem here and I would suggest that you do some 
research on how it is handled by other web sites and/or consult a legal 
professional about the issue.

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] CSS Help needed

2006-12-19 Thread Kevin Cully
I tried adjusting the width from 300px to be 200px, 100px, and even 
400px.  The level of the Nav area still remains well below the header 
graphic.

Just to clarify the section I was changing, it was the "#header #nav" 
section.  I've set it back to 300px for now.


Kevin Cully
CULLY Technologies, LLC

Sponsor of Fox Forward 2006!
http://foxforward.net


Helio W. wrote:
> Have you tried to decrease "nav" div's width? It seems your new PNG is
> pushing the "nav" div (which is floated "right") to the bottom.



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [NF] Browser/Internet problem - Solved

2006-12-19 Thread MB Software Solutions
Charlie Coleman wrote:
> I would advise not using the Windows firewall. Instead, use something like 
> ZoneAlarm. I believe it gives you much more function, control, and 
> monitoring capability than the Windows firewall (and lets face it, based on 
> past performance, MS can't really be trusted in this matter IMO).
>
> AVG has had good reviews, but you probably also need some adware 
> detection/removal as well (I can't recall if AVG does that - most 
> anti-virus vendors don't focus on adware). Ad-aware is one product I can 
> think of, but I believe there are a lot more out there - many of the free.
>   

Your comments remind me of something I overheard at my daughter's band 
program this past weekend.  Some Joe Ordinary folks behind me:  the 
woman says "Hey Tom, did you get Norton AntiVirus?"  and he responds 
"No, I just got the latest program from Microsoft.  One-Care, One-Live, 
er, One-something.  Anyway, it's supposed to be the best thing out there 
right now.  I had to upgrade my memory to run it though."

Even with all the things that have been publicized about viruses and 
malware and problems in general related to common computing with the 
internet, the majority of folks out there are still clueless (and always 
will be).

-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: [HTML] Gotta second to look at something?

2006-12-19 Thread Kenneth Kixmoeller/fh

On Dec 19, 2006, at 10:08 AM, MB Software Solutions wrote:

> LOL!  Tried here with FF 1.5.0.8 and didn't see images.

Thank you.

H. Some further research indicates others having trouble like  
this when images are inside  tags. Strange that it isn't  
effecting all of the *other* images I have inside  tags.

Stay tuned...


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] You say tomayto, I say big ol' red thing

2006-12-19 Thread Hal Kaplan
=> Subject: Re: [NF] You say tomayto, I say big ol' red thing
=> 
=> Alan Bourke wrote:
=> > On Mon, 18 Dec 2006 13:52:43 -0600, "Whil Hentzen (Pro*)"
=> > <[EMAIL PROTECTED]> said:
=> >
=> >   
=> >> "Sit, Ubu, sit. Good dog, Ubu."
=> >> 
=> >
=> >
=> > LOL I remember that one. Also 'Stephen J Canning' where 
=> he'd tear a 
=> > sheet off the typewriter and fling it away and it would 
=> become his logo.
=> >   
=> 
=> Canning, Cannel, whatever...  
=> 
=> Michael J. Babcock, MCP

I will tell you whatever.  It is like the difference between 4.625" and 4.667". 
 By itself, not much.  But if you take that kind of an attitude toward 
everything you do, after a while the little offsets will add up and you won't 
know if you are being pushed or pulled.

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


[NF] Signature from a web page

2006-12-19 Thread James E Harvey
My Boss wants to know if we can create an on-line contract for users to fill
out and "sign" for submitting on our web site.

Something like a fillable pdf form that would have a section at the bottom
of the form where when the mouse hovered in that area it would turn into
some kind of drawing tool where they could "sign" their name.

The completed form with signature would then be "emailed" to our account for
printing.

Has anyone seen a web page similar to this, or have any thoughts on it even
being possible???

James E Harvey
Corresponding Officer/M.I.S.
bus: 717-637-8931
fax: 717-637-6766



___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Export Import Family Tree Maker Files

2006-12-19 Thread Peter Hart
Hi

 

I have a client who has his family tree information in some VFP Tables
and want to import some or all the data into Family Tree Maker.

 

Has anybody got any ideas were I can get information on "FTW" or
"GEDCOM" file formats

 

TIA

 

Peter

 

Peter Hart

PETER HART COMPUTERS

 



--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread Hal Kaplan
=> Subject: Re: Triplicate/duplicate forms need -- how do you handle it?
=> 
=> Stephen the Cook wrote:
=> > I'd have an impact printer do what an impact printer does 
=> very well.  
=> > You are just filling in a few dashes on the form.  This isn't that 
=> > tough.  Get an OKI Data with push and not a pull feed.
=> >   
=> 
=> When you say "push" do you mean "tractor feed"??  I likened 
=> "pull" to mean friction feed (or at least that's what I 
=> called it many years ago).
=> 
=> Michael J. Babcock, MCP

I know I am wasting my time with this but what the hell.

Michael, get yourself a copy of Dr. Doolittle.  The original one with Rex 
Harrison as the good Doctor.  Somewhere around halfway through, he introduces 
an animal that looks like a llama with two heads facing in opposite directions. 
 The creature is called a PUSH-ME/PULL-YOU.  

Fortunately, this is the last thing I have to say about your printing problem.

B+
HALinNY


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: More crap dealing with custom form size at client site.....andtriplicate forms inquiry

2006-12-19 Thread Paul Newton
MB Software Solutions wrote:
> John Weller wrote:
>   
>> Try dealing in cms.  It may help - a guess!
>>
>>   
>> 
>
> cms???
>
>   
computer metrics system


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: More crap dealing with custom form size atclient site.....andtriplicate forms inquiry

2006-12-19 Thread Virgil Bierschwale
What ?
Are you crazy ?
They can take that cm stuff and shove it...

Some laws are made to be broken.
We are Americans, not a bunch of politically correct robots... 


Virgil Bierschwale
http://www.virgilslist.com
http://www.tccutlery.com
http://www.bierschwale.com
http://www.bierschwalesolutions.com

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Hal Kaplan
Sent: Tuesday, December 19, 2006 10:18 AM
To: ProFox Email List
Subject: RE: More crap dealing with custom form size atclient
site.andtriplicate forms inquiry

=> Subject: Re: More crap dealing with custom form size at => client
site.andtriplicate forms inquiry => => John Weller wrote:
=> > Try dealing in cms.  It may help - a guess!
=> >
=> >   
=>
=> cms???
=>
=> --
=>
=> Michael J. Babcock, MCP

In 1888, the United States of America was a signatory to a treaty wherein
all participants agreed to standardize on the METRIC SYSTEM.  Yes, our
country has been on the Metric standard for almost 120 years but you would
never know it because of our leadership position in the art and science of
manufacturing.  However, now that we are no longer in that leadership
position (thanks to the Republicans), those who are have begun to force us
to honor our commitment of 1888.

cms?  Centimeters.  One-hundredths of a meter.  

I hope this explains things for you, Michael 

B+
HALinNY


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


Re: Triplicate/duplicate forms need -- how do you handle it?

2006-12-19 Thread Paul Newton
MB Software Solutions wrote:
> Stephen the Cook wrote:
>   
>> I'd have an impact printer do what an impact printer does very well.  You
>> are just filling in a few dashes on the form.  This isn't that tough.  Get
>> an OKI Data with push and not a pull feed.  
>>   
>> 
>
> When you say "push" do you mean "tractor feed"??  I likened "pull" to
> mean friction feed (or at least that's what I called it many years ago).
>
>   
Tractor can be push or pull (or sometimes both).


___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


  1   2   >