RE: [NF] Linux Advantages

2007-02-27 Thread John Weller
There is a Prompt command in MSDOS which also works in cmd.exe. In the command window type prompt followed by a string containing codes, eg prompt $d$_$p$g will give a 2 line prompt with the date on the first line and the current drive and directory on the second line. John Weller 01380 723235 07

[NF] Message and UK Award For Ed

2007-02-27 Thread Dave Crozier
Ed, I thought you might like the little present I have for you and your son as well as the other Dabo developers. You can view a rough JPG (sorry about the low quality but it was a borrowed hand held roller scanner) at: www.replacement-software.co.uk/vfp/Dabo.jpg I got it Nicky Weaver of Manches

RE: FYI - I/O error in Foxpro 2.6a

2007-02-27 Thread john harvey
I think it had more to do with whether you compiled with a computer that had a cd rom drive. There is a program called fixdrive or something like that. You can run it against an exe and it will remove the d: drive or whatever drive letter you pass it. John -Original Message- From: [EMAIL

RE: [NF] Message and UK Award For Ed

2007-02-27 Thread Tristan Leask
LOL! Very good Dave! Good use of the Man City players. Tristan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Crozier Posted At: 27 February 2007 08:37 Posted To: Profox Archive Conversation: [NF] Message and UK Award For Ed Subject: [NF] Message

RE: Free Vista for UK peps

2007-02-27 Thread Tristan Leask
http://blogs.msdn.com/ianm/archive/2007/02/26/emails-have-been-sent-to-w inners-uk-developer-launch.aspx Well Dave, did you win a copy? MS have sent the winners emails out so if you managed to enter the competition with 0.2 seconds, you may have won. Unfortunately I didn't (yet, apparently we a

RE: Free Vista for UK peps

2007-02-27 Thread Dave Crozier
Tristan, You just beat me to it. I received the email about 10 minutes ago to confirm I'm on the list. Well that will save me a bit of money won't it and I could always put it up onto Ebay! Haven't heard about the Office 2K7 yet though. Dave Crozier -Original Message- From: [EMAIL PRO

Re: sql server connection

2007-02-27 Thread Alan Bourke
Stephen the Cook wrote: > I'm sorry but this advise is poor for any system. From the SQL2000 days and > now in the more secure SQL2005 days security within the domain is what you > want to use. Sure you can use straight SQL Auth, but it's a RPITA when you > ever change servers. B If people were

Re: FYI - I/O error in Foxpro 2.6a

2007-02-27 Thread Paul Newton
Sales Info wrote: > Michael, > > >> recompile FPW 2.6a on their system I was receiving the infamous I/O error >> caused by there not being a CD in the CD-ROM Drive. >> > > I had the same problem many years ago. I think(?) the solution was to > make sure you compile your FPW 2.6a code from

RE: Free Vista for UK peps

2007-02-27 Thread Adam Buckland
I didn't win a copy :( -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tristan Leask Sent: 27 February 2007 08:57 To: profox@leafe.com Subject: RE: Free Vista for UK peps http://blogs.msdn.com/ianm/archive/2007/02/26/emails-have-been-sent-to-w inners-uk-d

RE: Free Vista for UK peps

2007-02-27 Thread Tristan Leask
How fast did you enter the competition? Within 10 minutes? Dave said he only just got his email this morning! So there still maybe a chance for us. Tristan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adam Buckland Posted At: 27 February 2007 09:

RE: Free Vista for UK peps

2007-02-27 Thread Adam Buckland
About 40 minutes -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tristan Leask Sent: 27 February 2007 09:40 To: profox@leafe.com Subject: RE: Free Vista for UK peps How fast did you enter the competition? Within 10 minutes? Dave said he only just go

RE: Free Vista for UK peps

2007-02-27 Thread Dave Crozier
Tristan, I had the answer in 12 minutes after the start deadline of 5:30 (Just before 5:45). It would have been earlier but I didn't see the link to enter appear on the main page soon enough. Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of T

RE: Free Vista for UK peps

2007-02-27 Thread Tristan Leask
Well according to an earlier entry in the blog, they had the 1000 winners within an hour of the competition opening. Wow, people decided they wanted Vista! Tristan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adam Buckland Posted At: 27 February 2007

Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Alan Bourke
Once upon a time there was a form, and on that form there lived a grid. It needs to be bound programmatically, so set up the columns at design time with no RecordSources or anything other than size and header captions, and all columns except one as readonly,. The one thaat is NOT readonly has t

RE: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Dave Crozier
Alan, Works Fine here even if I leave out the "Column Controlsource" for each column and assume it is in field order. Are you sure you haven't made the whole of the grid readonly? Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Bourke

Re: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Brian Abbott
Could AllowCellSelection be the culprit? Alan Bourke wrote: > Once upon a time there was a form, and on that form there lived a grid. > It needs to be bound programmatically, so set up the columns at design > time with no RecordSources or anything other than size and header > captions, and all

Re: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Alan Bourke
Dave Crozier wrote: > Alan, > Works Fine here even if I leave out the "Column Controlsource" for each > column and assume it is in field order. > > Are you sure you haven't made the whole of the grid readonly? > Nope, the grid is not ReadOnly. Also, suspending and setting the underlying field t

Re: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Alan Bourke
Brian Abbott wrote: > Could AllowCellSelection be the culprit? > Thank you sir! Damn you VFP9, and your new grid properties with which I am not yet fully familiar since I usually use the DBI Tech grid! ___ Post Messages to: ProFox@leafe.com Subsc

RE: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Dave Crozier
Alan, Try making the CurrentControl point to the textbox and see if the field really is readonly. My guess is that the column will not be readonly in which case I assume you have created/added the checkbox programmatically. If YES then set the visible property to .T. first immediately after you a

RE: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Dave Crozier
Alan, How come you managed to set the AllowCellSelection to other than the default value? Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Bourke Sent: 27 February 2007 10:22 To: profox@leafe.com Subject: Re: Accursed VFP9 grid readonly

Re: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Brian Abbott
Yeah, been bitten by that myself ... Alan Bourke wrote: > Brian Abbott wrote: >> Could AllowCellSelection be the culprit? >> > Thank you sir! > > Damn you VFP9, and your new grid properties with which I am not yet > fully familiar since I usually use the DBI Tech grid! > > > > [excessive

Re: [NF] Linux Advantages

2007-02-27 Thread Andy Davies
Ted Roche said "prompt /?" well I sort of remember modding the dos prompt , but I didn't know about the "Command Extensions":- $M Displays the remote name [of] the current drive [for network drives] Neat! Andrew Davies  MBCS CITP   - AndyD    8-)# *

RE: FYI - I/O error in Foxpro 2.6a

2007-02-27 Thread Desmond Lloyd
You need a copy of fixdrive.exe. This removes any foreign references to strange drives. I'm out of pocket this morning (my time) , but email me off list and I can shoot you a copy. (in approximately six hours) Regards, Desmond > From: [EMAIL PROTECTED]> To: profox@leafe.com> Date: Tue,

Re: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Alan Bourke
Dave Crozier wrote: > Alan, > How come you managed to set the AllowCellSelection to other than the default > value? > I was setting the two properties below it and I must have done that one by mistake. ___ Post Messages to: ProFox@leafe.com Subscrip

Re: [NF] - AVI/MPG to DVD

2007-02-27 Thread Andy Davies
>Did you check the box for NF posts? I get 89 matches when I do. >-- Ed Leafe doh! Andrew Davies  MBCS CITP   - AndyD    8-)# ** This email and any files transmitted with it are confidential and intended solely for the us

Re: sql server connection

2007-02-27 Thread Michael Hawksworth
Use Domain groups on the SQL server. Then you are only maintaining the groups in active directory not individual accounts. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of th

RE: FYI - I/O error in Foxpro 2.6a

2007-02-27 Thread Andy Davies
Desmind said "You need a copy of fixdrive.exe" a browse thru Ed's archives (now I've remembered how to use them ) yields a link to: http://www.abri.com/foxpro.html where you can download the zip for fixdrive.exe Andrew Davies  MBCS CITP   - AndyD    8-)# PC Development Officer Housing IT Housi

RE: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Dave Crozier
Old Age...Old Age!!! Dave Crozier -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Bourke Sent: 27 February 2007 11:13 To: profox@leafe.com Subject: Re: Accursed VFP9 grid readonly column problem. Dave Crozier wrote: > Alan, > How come you managed to

RE: sql server connection

2007-02-27 Thread Stephen the Cook
Judith Barer <> wrote: > When connection to SQL server is using Windows authentification just > as secure as using sql server authentification? What are the > advantages of each one? Ease of admin for one. You can establish rights by GROUP instead of the person. So a few contractors come in,

RE: sql server connection

2007-02-27 Thread Stephen the Cook
Alan Bourke <> wrote: > Stephen the Cook wrote: >> I'm sorry but this advise is poor for any system. From the SQL2000 >> days and now in the more secure SQL2005 days security within the >> domain is what you want to use. Sure you can use straight SQL Auth, >> but it's a RPITA when you ever change

[OT] Candyland, updated for today

2007-02-27 Thread Ed Leafe
Remember the board game 'Candyland'? It was a great game for young children to play, but it certainly is showing its age. It's time to update it for today's kids: http://www.internetweekly.org/2007/02/cartoon_condi_land.html -- Ed Leafe -- http://leafe.com -- http://dabodev.com __

Re: Accursed VFP9 grid readonly column problem.

2007-02-27 Thread Alan Bourke
Dave Crozier wrote: > Old Age...Old Age!!! > Age and guile beats youth, innocence and a bad haircut. ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe

Re: Free Vista for UK peps

2007-02-27 Thread Ed Leafe
On Feb 27, 2007, at 4:45 AM, Tristan Leask wrote: > Wow, people decided they wanted Vista! No, they liked the price (free), so they decided that Vista is good for nothing! ;-) -- Ed Leafe -- http://leafe.com -- http://dabodev.com ___ Pos

[NF] Revolution Studio

2007-02-27 Thread Alan Bourke
Anyone looked at this? http://revstudio.runrev.com/ It's a cross-platform dev tool that supposedly builds on the old Hypercard concept much loved of Mac folks from back in the day. I've got a demo copy I'll see what it's like WRT database stuff. ___

Re: [NF] Message and UK Award For Ed

2007-02-27 Thread Ed Leafe
On Feb 27, 2007, at 3:37 AM, Dave Crozier wrote: > I thought you might like the little present I have for you and your > son as > well as the other Dabo developers. You can view a rough JPG (sorry > about the > low quality but it was a borrowed hand held roller scanner) at: > > www.replacement

Re: [NF] Revolution Studio

2007-02-27 Thread Alan Bourke
Alan Bourke wrote: > I've got a demo copy I'll see what it's like WRT database stuff. > Well, it supports Oracle, MySQL and PostgreSQL and Valentina natively it seems, and any other that has ODBC drivers. Valentina is it's own database, which seems aimed at the MS Access level. You use comma

Re: [NF] Linux Advantages

2007-02-27 Thread Ted Roche
On 2/27/07, Andy Davies <[EMAIL PROTECTED]> wrote: > > well I sort of remember modding the dos prompt , but I didn't know about > the "Command Extensions":- > $M Displays the remote name [of] the current drive [for network drives] > And it used to be, if you had ANSI.SYS looaded, you could use AN

Re: [NF] Linux Advantages

2007-02-27 Thread Peter Cushing
Ted Roche wrote: > And it used to be, if you had ANSI.SYS looaded, you could use ANSI > escape codes to set colors (all sixteen of them!), blink, block > graphics, and more. But that would be wrong. > > I used to have a prompt something like $e[33;44;1m$p$g which gave me some nice different col

VFP9 - Finding Where a Class is Used

2007-02-27 Thread Carl Lindner
Suppose I have a class "ge_chk". How would I generate a list of all the forms that contain this class? Thanks, Carl Lindner ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of t

Re: [NF] Linux Advantages

2007-02-27 Thread Ted Roche
On 2/27/07, Peter Cushing <[EMAIL PROTECTED]> wrote: > > > I used to have a prompt something like > $e[33;44;1m$p$g > > which gave me some nice different colours. 15 years ago, I wrote a FoxPro routine that would take a FoxPro/DOS form design and generate the equivalent ANSI escape codes. It could

Re: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Alan Bourke
On Tue, 27 Feb 2007 10:01:19 -0500, "Carl Lindner" <[EMAIL PROTECTED]> said: > Suppose I have a class "ge_chk". How would I generate a list of all the > forms that contain this class? I'm sure someone has written code to do it, but personally I would (assuming you are on 2000, XP or Vista) go to

Re: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Ted Roche
On 2/27/07, Carl Lindner <[EMAIL PROTECTED]> wrote: > Suppose I have a class "ge_chk". How would I generate a list of all the > forms that contain this class? > Open the project in Code References and search for 'ge_chk' -- Ted Roche Ted Roche & Associates, LLC http://www.tedroche.com _

Re: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Derek Kalweit
> > Suppose I have a class "ge_chk". How would I generate a list of all the > > forms that contain this class? > Open the project in Code References and search for 'ge_chk' Why is it that VFP's own code references search tool is so much slower than our own code search tools(Ed's TS, my own search

Re: [NF] Linux Advantages

2007-02-27 Thread Whil Hentzen (Pro*)
Ted Roche wrote: > On 2/27/07, Peter Cushing <[EMAIL PROTECTED]> wrote: >> I used to have a prompt something like >> $e[33;44;1m$p$g >> >> which gave me some nice different colours. > > 15 years ago, I wrote a FoxPro routine that would take a FoxPro/DOS > form design and generate the equivalent AN

Re: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Whil Hentzen (Pro*)
Derek Kalweit wrote: >>> Suppose I have a class "ge_chk". How would I generate a list of all the >>> forms that contain this class? > >> Open the project in Code References and search for 'ge_chk' > > Why is it that VFP's own code references search tool is so much slower > than our own code searc

Re: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Peter Cushing
Carl Lindner wrote: > Suppose I have a class "ge_chk". How would I generate a list of all the > forms that contain this class? > > Download Ed's TS form, which is excellent. You do the searches on folders and file types that you define, then it gives you the results with a command button to o

[OT] Rock Star class

2007-02-27 Thread David Crooks
Who would have thought you could take a course in becoming a rock star? http://www.ssuexed.com/course.php?id=1373&sem=Summer&year=2006 David L. Crooks ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/pr

RE: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Carl Lindner
I knew about Ed's text search and tried it without success. Did not know about Code References but no success there either. The problem I have is that I often rename a class when placing it on a form. For example, if my class is "ge_grd2chk" and I name it "grd" it does not show in Code Reference

Re: [NF] Linux Advantages

2007-02-27 Thread Ted Roche
On 2/27/07, Whil Hentzen (Pro*) <[EMAIL PROTECTED]> wrote: > > Someone had a lot of time on their hands... > No, actually, I was hired to make the app run faster. That was one of my most acclaimed fixes. Took a couple of days to work out. And I got paid for it. Ah, back in the days of salaried em

Re: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Ted Roche
On 2/27/07, Derek Kalweit <[EMAIL PROTECTED]> wrote: > > Why is it that VFP's own code references search tool is so much slower > than our own code search tools(Ed's TS, my own search.prg, etc.)? The > results browsing interface is nice in VFP9's search tool, but the > performance is pathetic-- it

Re: VFP9 - Finding Where a Class is Used

2007-02-27 Thread Derek Kalweit
> > Why is it that VFP's own code references search tool is so much slower > > than our own code search tools(Ed's TS, my own search.prg, etc.)? The > > results browsing interface is nice in VFP9's search tool, but the > > performance is pathetic-- it takes up to a minute to search for > > somethin

RE: FYI - I/O error in Foxpro 2.6a

2007-02-27 Thread Desmond Lloyd
Didn't realize it had been referenced before... That's the puppy... Still use it, and it still finds these weird references... > To: profox@leafe.com> From: [EMAIL PROTECTED]> Date: Tue, 27 Feb 2007 > 11:52:39 +> Subject: RE: FYI - I/O error in Foxpro 2.6a> > Desmind said > "You nee

Re: [NF] Revolution Studio

2007-02-27 Thread Kevin Cully
I can't play the tutorial videos! My Windows Media craps out, and Quicktime is looking for some unknown plugin. Does this thing have a report engine? It looks promising. Alan Bourke wrote: > Well, it supports Oracle, MySQL and PostgreSQL and Valentina natively it > seems, and any other that ha

rebuilding quickly for IIS-loaded COM objects/web services

2007-02-27 Thread Derek Kalweit
Hi. Usually when I develop COM objects/web services in VFP, I have to do an 'iisreset' before each build, as IIS holds on to the VFP COM object. I found a quicker solution to this that can easily put in a quick prg along with the build commands-- or use a project hook: * replace 'virtualdir' with

FPD2.6 with Vista

2007-02-27 Thread ken.com
I have always modified config.nt to add "files=99" in Win2000, XP, etc. Since we cannot modify files in the \windows\system with Vista, does anyone know a work around? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com

Re: rebuilding quickly for IIS-loaded COM objects/web services

2007-02-27 Thread Malcolm Greene
Derek, > iisreset alternative: > > * replace 'virtualdir' with the name of your virtual directory > o = GetObject("IIS://localhost/w3svc/1/Root/virtualdir") > o.appunload() Great tip - thanks! Malcolm ___ Post Messages to: ProFox@leafe.com Subscripti

Re: FPD2.6 with Vista

2007-02-27 Thread Sales Info
Ken, Is there a version of TameDOS available for Vista? Might be worth looking into. Another alternative: a free VMware virtual machine running an older OS? Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mai

Re: [OT] Rock Star class

2007-02-27 Thread Pete Theisen
On Tuesday 27 February 2007 10:51 am, David Crooks wrote: Hi David! Waste of time, I tell you. You put out all that time and effort and the impresarios or producers or whatever they are will bribe the pols to bring in a bunch of foreigners to take all the jobs H1B visas or something. > Who wou

Re: [OT] Rock Star class

2007-02-27 Thread Michael Madigan
It's being taught by that famous rock superstar Heather Sloan. Learn from the best! --- David Crooks <[EMAIL PROTECTED]> wrote: > Who would have thought you could take a course in > becoming a rock star? > http://www.ssuexed.com/course.php?id=1373&sem=Summer&year=2006 > > David L. Crooks > >

Re: [OT] Candyland, updated for today

2007-02-27 Thread Michael Madigan
Racist. --- Ed Leafe <[EMAIL PROTECTED]> wrote: > Remember the board game 'Candyland'? It was a great > game for young > children to play, but it certainly is showing its > age. It's time to > update it for today's kids: > > http://www.internetweekly.org/2007/02/cartoon_condi_land.htm

RE: FYI - I/O error in Foxpro 2.6a

2007-02-27 Thread Michael Madigan
Thanks --- Andy Davies <[EMAIL PROTECTED]> wrote: > Desmind said "You need a copy of fixdrive.exe" > a browse thru Ed's archives (now I've remembered how > to use them ) > yields a link to: > http://www.abri.com/foxpro.html > where you can download the zip for fixdrive.exe > > Andrew Davies  MB

[NF] Dabo Presentation at PyCon 2007 available online

2007-02-27 Thread Ed Leafe
Last weekend was PyCon 2007, held in Dallas, Texas. For the third year in a row I gave a session on Dabo, but for the first time we have a decent quality recording of it. I've posted it to YouTube; you can see it at: http://dabodev.com/pycon2007 Due to YouTube restrictions o

RE: mono news

2007-02-27 Thread Christof Wollenhaupt
Hi Ted, > Can you write a VB.NET app as a console, GUI or web app (or especially against a database) and get it to run on other platforms? With that part I don't have any practical experience. However, Mono has what seems to be a fairly complete implementation of ADO.NET with many providers for

RE: mono news

2007-02-27 Thread Christof Wollenhaupt
Hi Ed, > VFP is a particularly bad offender Yep, especially with those files it generates itself such as FXP, VCT, etc. files. -- Christof ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-

Re: [NF] Dabo Presentation at PyCon 2007 available online

2007-02-27 Thread ken.com
I just watched all 6 'episodes' and that was great. I wish I could have been there. Maybe next year. - Original Message - From: "Ed Leafe" <[EMAIL PROTECTED]> To: "ProFox Mailing List" Sent: Tuesday, February 27, 2007 10:57 AM Subject: [NF] Dabo Presentation at PyCon 2007 available onl

RE: [OT] Rock Star class

2007-02-27 Thread David Crooks
On Tuesday, February 27, 2007 1:09 PM Michael Madigan wrote: >It's being taught by that famous rock superstar Heather Sloan. Learn from the best! Reminds me of the quote "Those that can, do; those that can't, teach." David L. Crooks ___ Post Message

RE: [OT] Rock Star class

2007-02-27 Thread David Crooks
On Tuesday, February 27, 2007 12:59 PM Pete Theisen wrote: >Waste of time, I tell you. You put out all that time and effort and the impresarios or producers >or whatever they are will bribe the pols to bring in a bunch of foreigners to take all the jobs >H1B visas or something. I am not sure how

Re: [OT] Rock Star class

2007-02-27 Thread Pete Theisen
On Tuesday 27 February 2007 3:08 pm, David Crooks wrote: > On Tuesday, February 27, 2007 12:59 PM Pete Theisen wrote: > >Waste of time, I tell you. You put out all that time and effort and the > > impresarios or producers >or whatever they are will bribe the pols to > bring in a bunch of foreigners

Windows Desktop Search and VFP

2007-02-27 Thread Sietse Wijnker
Hi all, I've grown used to the Windows Desktop Search functionality to quickly find content on my system, but it lacks indexing for VFP code. After some research I found that it's possible to create an indexer that handles specific kind of files. Like there's a PDF iFilter that indexes the conte

My Pictures Are Shrinking?

2007-02-27 Thread Kevin Cully
I'm doing my first desktop application in a long while. I've placed a 64x64 BMP file on a form, but when I run the form, the image has been resized to 32x32. I put a messagebox on the form to display the height and width. What the heck is going on? I've got a toolbar with several BMPs. Some ar

RE: rebuilding quickly for IIS-loaded COM objects/web services

2007-02-27 Thread Sietse Wijnker
Hi Derek, A better way for VFP/COM/Web development: Place the COM component in a COM+ Application environment. This way you can control what credentials are used to run the COMponent without setting that credentials on the website. Then in your build program: *- Shutdown COM+ app lcAppName = "MyCo

[OT] For once, it makes sense

2007-02-27 Thread Ed Leafe
Intelligent Design, that is: http://images.ucomics.com/comics/nq/2007/nq070225.gif -- Ed Leafe -- http://leafe.com -- http://dabodev.com ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/prof

[OT] Tech Support Sucks!

2007-02-27 Thread Ed Leafe
http://images.ucomics.com/comics/cl/2007/cl070224.gif -- Ed Leafe -- http://leafe.com -- http://dabodev.com ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http:

RE: My Pictures Are Shrinking?

2007-02-27 Thread john harvey
Set the stretch property to 2-stretch John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Cully Sent: Tuesday, February 27, 2007 6:06 PM To: profox@leafe.com Subject: My Pictures Are Shrinking? I'm doing my first desktop application in a long whil