Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Andy Davies
Whil said: >I want to see > >customer.init() >customer.SetCreditLimit() >customer.ProcessNewOrder() >customer.DisplayOrders(). > >in debugo don't you get this in the call stack? Andrew Davies  MBCS CITP   - AndyD    8-)# **

Re: [OT] All that unpleasantness!

2007-02-21 Thread Pete Theisen
On Wednesday 21 February 2007 2:32 am, Adam Buckland wrote: Hi Adam! Found it, thanks. It is too new for snopes to have anything on it. I smell a fabrication here, however. Even if it is true, it would not have been a direct Bush decision to include or not include a person on a guest list, for

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Whil Hentzen (Pro*)
Andy Davies wrote: > Whil said: >> I want to see >> >> customer.init() >> customer.SetCreditLimit() >> customer.ProcessNewOrder() >> customer.DisplayOrders(). Separate methods. >> in debugo > > don't you get this in the call stack? > > Andrew Davies MBCS CITP > - AndyD8-)# > > > **

RE: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Sietse Wijnker
When I log the current running program/function/method to the debug output, I always prefix it with the Call-stack depth : DEBUGOUT PROGRAM(-1), PROGRAM() Regards Sietse -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Whil Hentzen (Pro*) Sent: Wednesday,

Re: [OT] All that unpleasantness!

2007-02-21 Thread Ed Leafe
On Feb 21, 2007, at 2:32 AM, Adam Buckland wrote: > Try : http://tinyurl.com/35lamb > > It looses the - at the end of the line when it splits. Oh my goodness! Here I am complaining about amputees forcing us to see the results of our trite sayings, and I end up displaying an amputated

RE: SQL Server 2005

2007-02-21 Thread Nick Cipollina
It will not affect your SQL Server 2005 Express instance, as this is installed as a named instance. If you already have SQL Server 2000 install, if you try to install 2005 as the default instance, it will upgrade the database, otherwise, you will have to create a named instance for your new SQL Se

Re: [NF] Specs for developer workstation in 2007

2007-02-21 Thread Alan Bourke
.NET and VM's? Dual Core and 2GB RAM are a must. ___ 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, unles

Re: [NF] Limewire

2007-02-21 Thread Alan Bourke
> A coworker brought a thumb drive with some music from Limewire and > infected 3 servers with a virus. She should be lucky to have job as it > took us all day to recover! > Yes, but that's not an issue with Limewire. ___ Post Messages to: ProFox

EchoSign API

2007-02-21 Thread Kent Belan
Hello, Does anyone use the EchoSign API from VFP? Thanks, Kent ___ 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 p

Re: [NF] Limewire

2007-02-21 Thread jeff
That depends entirely on what you download from there. It, like all PTP software has its risks. - Original Message - From: Alan Bourke <[EMAIL PROTECTED]> To: profox@leafe.com Date: Wed, 21 Feb 2007 14:13:58 + Subject: Re: [NF] Limewire > > > A coworker brought a thumb drive with s

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Whil Hentzen (Pro*)
Andy Davies wrote: > Whil said: >> I want to see >> >> customer.init() >> customer.SetCreditLimit() >> customer.ProcessNewOrder() >> customer.DisplayOrders(). >> >> in debugo > > don't you get this in the call stack? Backchannel comments said I should be more verbose. Suppose I've got a form wi

Re: best way to read and write text files on a linux server from vfp

2007-02-21 Thread Jeff Roberts
thanks for the great answers. I am probably either going to use the pscp program from the putty website, or try the symlink idea. I think both will satisfy my needs. As for dbfs,In the past when I've used samba for foxpro data I've always had to make the share read/write for everyone. I think a

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Nicholas Geti
> Funny, when I tell Fox Folk that I do most of my debugging in Python > by adding 'print' statements in critical places, they look at me as > though I was advocating going back to punched cards. Glad to hear > that someone else appreciates this technique! > > -- Ed Leafe > -- http://leafe.com > -

[NF] Top ideas at Dell

2007-02-21 Thread Whil Hentzen (Pro*)
Interesting. The top several ideas, by far, have to do with Linux/OOo/FOSS being installed on Dell boxes. Nothing to do with hardware at all... http://www.dellideastorm.com/ Cast YOUR vote(s) today. Whil ___ Post Messages to: ProFox@leafe.com Subsc

Re: [NF] Limewire

2007-02-21 Thread Andy Davies
>like all PTP software has its risks. anyone heard of any vuln's with ogg/ flac files? Andrew Davies  MBCS CITP   - AndyD    8-)# ** This email and any files transmitted with it are confidential and intended solely for th

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Paul Hill
On 2/21/07, Nicholas Geti <[EMAIL PROTECTED]> wrote: > > > Funny, when I tell Fox Folk that I do most of my debugging in Python > > by adding 'print' statements in critical places, they look at me as > > though I was advocating going back to punched cards. Glad to hear > > that someone else appreci

Re: [NF] Limewire

2007-02-21 Thread Paul Hill
On 2/21/07, Andy Davies <[EMAIL PROTECTED]> wrote: > >like all PTP software has its risks. > > anyone heard of any vuln's with ogg/ flac files? Why? Do you know of any in AVI/MP3 files? -- Paul ___ Post Messages to: ProFox@leafe.com Subscription Main

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Richard Kaye
One trick I've recently added is to turn on coverage logging or event tracking in the load event of my baseform class if a special var is in scope. Like this: TRY IF m.syscoverage SET COVERAGE TO ADDBS(ALLTRIM(m.systemp))+[c]+ALLTRIM(this.Name)+[.log] ENDIF CATCH ENDTRY TRY

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Whil Hentzen (Pro*)
Richard Kaye wrote: > One trick I've recently added is to turn on coverage logging or event > tracking in the load event of my baseform class if a special var is in > scope. Like this: > > TRY > IF m.syscoverage > SET COVERAGE TO > ADDBS(ALLTRIM(m.systemp))+[c]+ALLTRIM(this.Name)+[.

RE: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Jeff Johnson
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Ed Leafe > Sent: Tuesday, February 20, 2007 6:45 PM > To: [EMAIL PROTECTED] > Subject: Re: Tracing (somebody else's) program flow tricks > > On Feb 20, 2007, at 8:10 PM, Whil Hentzen (Pro*) wrote: > >

[NF] Where to find license keys for Empower program

2007-02-21 Thread Malcolm Greene
Finally got signed up for Microsoft Empower program - thanks to the encouragement of this list's members. Thank you! Got my CD package but can't find the damn license key to install anything. Any suggestions on where to look? Thanks! Malcolm ___ Pos

Re: [NF] Specs for developer workstation in 2007

2007-02-21 Thread MB Software Solutions
Alan Bourke wrote: > .NET and VM's? > > Dual Core and 2GB RAM are a must. > PC manufacturers/sellers are sure happy about this requirement, I'll bet. Makes their sales #s go up. -- Michael J. Babcock, MCP MB Software Solutions, LLC http://mbsoftwaresolutions.com http://fabmate.com "Work sma

Re: [NF] Specs for developer workstation in 2007

2007-02-21 Thread Alan Bourke
MB Software Solutions wrote: > PC manufacturers/sellers are sure happy about this requirement, I'll > bet. Makes their sales #s go up. > > Absolutely, but then again it makes sense, when emulating a machine at CPU level, to have that emulated CPU running on its own core with a usable amount

Re: [NF] Where to find license keys for Empower program

2007-02-21 Thread Kevin Cully
Hey Malcolm. I had a similar frustrating experience with the Empower program. What I had to do was to "join" my Empower program with my Partner program. It certainly wasn't clear on how to do this or that I needed to do it in the first place. Once joined together, links start to appear that say

RE: [NF] Where to find license keys for Empower program

2007-02-21 Thread Allen
You need to sign on online in the msdn section and go to downloads where the keys are Allen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Greene Sent: 21 February 2007 16:27 To: [EMAIL PROTECTED] Subject: [NF] Where to find license keys for Empo

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Richard Kaye
Whil Hentzen (Pro*) wrote: > What benefit does wrapping in a T/C/E provide? Specifically, what > situations have you run into where it's done something for ya? > > Keeps it from blowing up if those vars don't exist. Since it's now possible to generate a log in 9 in the runtime environment as w

Re: [NF] Top ideas at Dell

2007-02-21 Thread MB Software Solutions
Whil Hentzen (Pro*) wrote: > Interesting. The top several ideas, by far, have to do with > Linux/OOo/FOSS being installed on Dell boxes. Nothing to do with > hardware at all... > > http://www.dellideastorm.com/ > > Cast YOUR vote(s) today. > Very interesting list...like you said (about non-Wi

Re: [NF] Limewire

2007-02-21 Thread Andy Davies
>> anyone heard of any vuln's with ogg/ flac files? >Why? Do you know of any in AVI/MP3 files? > >-- >Paul There have certainly been reports of mp3 vuln's - why else would LimeWire be risky? Andrew Davies  MBCS CITP   - AndyD    8-)#m ***

newb questions about moving and renaming classes and forms

2007-02-21 Thread Jeff Roberts
Hey All, Being a lot shortsighted, I created some forms based off some form classes I'd already created, and I put everything in the same directory. Now I'd like to put the forms in a \FORMS subdirectory and the classes in a \CLASSES subdirectory. I'm pretty sure if I move things around and then

Re: [NF] Limewire

2007-02-21 Thread Paul Hill
On 2/21/07, Andy Davies <[EMAIL PROTECTED]> wrote: > >> anyone heard of any vuln's with ogg/ flac files? > > >Why? Do you know of any in AVI/MP3 files? > > > >-- > >Paul > > There have certainly been reports of mp3 vuln's - why else would LimeWire > be risky? Click here to find out! britney_spear

RE: [NF] Where to find license keys for Empower program

2007-02-21 Thread mrgmhale
> You need to sign on online in the msdn section and go to > downloads where the > keys are That is correct, according to my experience. Here's a little more detailed information that may be of help. If you do not yet have a Microsoft passport account you need to set one up. You can do that wit

Grid classes etc

2007-02-21 Thread Peter Cushing
Hi all, I like my grids to look a certain way and always use courier new, 10 for the font. This is a pain for a new grid; having to go through the columns and set the font. I tried creating a grid class and thought I would create one with 7 columns, then I can subclass it for anything differ

Re: Grid classes etc

2007-02-21 Thread Brian Abbott
> Just wondering what you do when creating grids. Use .setall() heavily (in my grid class) Peter Cushing wrote: -- Cheers Brian Abbott ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mail

[OT] Round 3: H-1B

2007-02-21 Thread Michael Oke, II
Round 3: H-1B Battle - American engineers vs. senior Democrats! Leading Democrats struck American engineers with a powerful left-left combo before the opening bell of round 3 of the H-1B battle. Senator Kerry (D-MA) and Senator Kennedy (D-MA)attempted to secretly add an amendment to the Minimum

RE: [NF] Where to find license keys for Empower program

2007-02-21 Thread Kevin Ragsdale
Gil wrote: >> After left licking the product keys like you see a button... omG, the whole M$ DRM thing has gone DNA!!! I wonder what the Windows Genuine Advantage prompt is when someone else tries to lick *my* product keys... ___ Post Messages to:

Re: [OT] All that unpleasantness!

2007-02-21 Thread Michael Oke, II
Quite a stretch. From what I read it appears that he was excluded because of what he intended to wear, not because he was an amputee. ::m Ed Leafe wrote: > Military amputee uninvited from Bush event because the press would > see him with no legs > > http://americablog.blogspot.com/2007

[NF] IE7 secure?

2007-02-21 Thread srussell
It's an IE7 thing. Funny how the added security methods in doing .NET 3 didn't seem to filter down to IE? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.c

Re: Tracing (somebody else's) program flow tricks

2007-02-21 Thread Whil Hentzen (Pro*)
> Keeps it from blowing up if those vars don't exist. Since it's now > possible to generate a log in 9 in the runtime environment as well as > the dev environment, I can pop in to the backdoor on my exe, declare the > appropriate var and get a log file that I can then pull down on to my > syste

RE: newb questions about moving and renaming classes and forms

2007-02-21 Thread John Weller
I find it safer to create a project first then either add existing forms, classes, etc to it or use the New button to create a new one which is then within the project. A form in a project can be used in other projects, just remember that any changes you make to it will be reflected in the other p

Re: [NF] IE7 secure?

2007-02-21 Thread jeff
I have found IE 7 to be more secure simply because it tends to crash at the hint of problems. Then I proceed using FireFox - Original Message - From: [EMAIL PROTECTED] To: profox@leafe.com Date: Wed, 21 Feb 2007 12:00:30 -0600 (CST) Subject: [NF] IE7 secure? >

Re: [OT] All that unpleasantness!

2007-02-21 Thread Pete Theisen
On Wednesday 21 February 2007 12:54 pm, Michael Oke, II wrote: > Quite a stretch. From what I read it appears that he was excluded > because of what he intended to wear, not because he was an amputee. Hi Michael! I remember when I was in the service I got to go anywhere I wanted to, you just ha

Re: [NF] Specs for developer workstation in 2007

2007-02-21 Thread Derek Kalweit
> > .NET and VM's? > > Dual Core and 2GB RAM are a must. > PC manufacturers/sellers are sure happy about this requirement, I'll > bet. Makes their sales #s go up. If software didn't drive hardware upgrades, we'd have no reason to upgrade from our XT's... -- Derek __

Re: [NF] IE7 secure?

2007-02-21 Thread MB Software Solutions
[EMAIL PROTECTED] wrote: > > > It's an IE7 thing. Funny how the added security methods in doing .NET 3 > didn't seem to filter down to IE? > I'm not surprised. .Net3 is new code; IE7 probably contains lots of old code. Just a w

Re: [OT] All that unpleasantness!

2007-02-21 Thread Michael Madigan
I hope you're not accusing our Anti-American friends of mis-characterizing an event, are you? --- "Michael Oke, II" <[EMAIL PROTECTED]> wrote: > Quite a stretch. From what I read it appears that > he was excluded > because of what he intended to wear, not because he > was an amputee. > > ::m

Re: Grid classes etc

2007-02-21 Thread Casey McGuire
Peter Cushing wrote: > Hi all, > > I like my grids to look a certain way and always use courier new, 10 for > the font. This is a pain for a new grid; having to go through the > columns and set the font. I tried creating a grid class and thought I > would create one with 7 columns, then I can

RE: [NF] Dragon Speaking Naturally app showed up...

2007-02-21 Thread Kristyne McDaniel
Gil, > There is only one person in the ProFox group > that I am aware of that knows what I look like. I know what you look like too. So does Steve. We can attest that you are a real person with a normal sized head. Kristyne McDaniel ___ Post Messa

RE: [NF] Dragon Speaking Naturally app showed up...

2007-02-21 Thread mrgmhale
> I know what you look like too. So does Steve. > I realized after sending that eMail out that indeed Steve, Kristyne , David Smith (and ed) have all met me. Also, I remembered sending in a link to my ftp server showing me with a chain saw next to a tree I felled, wearing a VFP T-Shirt. So, I w

[NF] 64 bit Vista

2007-02-21 Thread Leland F. Jackson, CPA
Here is the joke for today. HaHaahaaahahaha http://news.zdnet.co.uk/software/0,100121,39285986,00.htm or http://tinyurl.com/2s8r7x Regards, LelandJ ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/list

[OT] Dead Donkey

2007-02-21 Thread Michael Madigan
A young Hillbilly named Kenny moved to Texas and bought a donkey from a farmer for $100.00. The farmer agreed to deliver the donkey the next day. The following day the farmer drove up and said, "Sorry, son, but I have some bad news. The donkey died." Kenny replied, "Well then, just give me

Re: [NF] 64 bit Vista

2007-02-21 Thread Ted Roche
On 2/21/07, Leland F. Jackson, CPA <[EMAIL PROTECTED]> wrote: > Here is the joke for today. HaHaahaaahahaha > > http://news.zdnet.co.uk/software/0,100121,39285986,00.htm > MS says: "Please confirm that your system, applications, and devices are compatible with a 64-bit edition of Windows Vist

Re: [NF] 64 bit Vista

2007-02-21 Thread MB Software Solutions
Leland F. Jackson, CPA wrote: > Here is the joke for today. HaHaahaaahahaha > > http://news.zdnet.co.uk/software/0,100121,39285986,00.htm > > or > > http://tinyurl.com/2s8r7x > > From the article's lead: "the software giant is sending decidedly mixed messages." Since when has M$ ever s

Re: [NF] 64 bit Vista

2007-02-21 Thread Leland F. Jackson, CPA
Vista was suppose to be Microsoft's new 64 bit OS, but when it wall released, it came in both a 32 bit and 64 bit version with the 64 bit version not very well supported yet by 64 bit hardware, so there is going to be a painful transition period, kind of like going from the 16 bit dos version o

Buffer overrun error

2007-02-21 Thread Larry Bradley
I think this is related to my so-called dual core problem. Running here on my own non-dual-core machine, I now have on 3 occasions received the dreaded "buffer overrun" error from the MS C library, on the program that uses a mySQL database. I suspect that the error is occuring on an SQL Insert,

Program to scrape text from web page

2007-02-21 Thread MB Software Solutions
I did this back at a place in Michigan earlier this year, and I think I did it with something from West Wind. I've got WW, but I can't recall what program I used this past summer. Can anyone advise? Thanks, --Mike -- Michael J. Babcock, MCP MB Software Solutions, LLC http://mbsoftwaresolutio

Re: [OT] All that unpleasantness!

2007-02-21 Thread Ricardo Aráoz
Pete Theisen wrote: > On Wednesday 21 February 2007 2:32 am, Adam Buckland wrote: > > Hi Adam! > > Found it, thanks. > > It is too new for snopes to have anything on it. I smell a fabrication here, > however. Even if it is true, it would not have been a direct Bush decision to > include or not

RE: Program to scrape text from web page

2007-02-21 Thread Dave Bernard
Try this: oHTTP = CreateObject("MSXML2.XMLHTTP") oHTTP.Open([GET], .lcMQURL, .F.) oHTTP.Send() .lcMQXML = oHTTP.ResponseText lcHTMLCode = .lcMQXML -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MB Software Solutions Sent: Wednesday, February 21, 2007 6:

Re: [OT] All that unpleasantness!

2007-02-21 Thread Michael Madigan
You might have a chance at winning for a change. --- Ricardo Aráoz <[EMAIL PROTECTED]> wrote: > Pete Theisen wrote: > > On Wednesday 21 February 2007 2:32 am, Adam > Buckland wrote: > > > > Hi Adam! > > > > Found it, thanks. > > > > It is too new for snopes to have anything on it. I > smell a

Re: Program to scrape text from web page

2007-02-21 Thread MB Software Solutions
Dave Bernard wrote: > Try this: > > oHTTP = CreateObject("MSXML2.XMLHTTP") > oHTTP.Open([GET], .lcMQURL, .F.) > oHTTP.Send() > > .lcMQXML = oHTTP.ResponseText > lcHTMLCode = .lcMQXML > > That's cool, but I should expand my original post: I need to populate values in textboxes in the web page,

RE: Program to scrape text from web page

2007-02-21 Thread Dave Bernard
I would probably need to know more specifics about the web page side. Do you control it? Is it a public page? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MB Software Solutions Sent: Wednesday, February 21, 2007 6:49 PM To: [EMAIL PROTECTED] Subject: Re

Re: [OT] All that unpleasantness!

2007-02-21 Thread Ricardo Aráoz
Michael Madigan wrote: > You might have a chance at winning for a change. > Nooo, I would never win against a nose. That would be like asking you to understand irony. > > --- Ricardo Aráoz <[EMAIL PROTECTED]> wrote: > >> Pete Theisen wrote: >>> On Wednesday 21 February 2007 2:32 am, Adam >> Bu

Re: [OT] All that unpleasantness!

2007-02-21 Thread Michael Madigan
Or you to understand basic hygiene. --- Ricardo Aráoz <[EMAIL PROTECTED]> wrote: > Michael Madigan wrote: > > You might have a chance at winning for a change. > > > > Nooo, I would never win against a nose. That would > be like asking you to > understand irony. > > > > > --- Ricardo Aráoz <[

RE: Program to scrape text from web page

2007-02-21 Thread john harvey
That's one way, but you can also subclass IE and populate the fields using something like the following code which demonstrates doing some stuff via frames: * worldsgreatest.prg program - mostly stolen from other programmers! LPARAMETERS lclast,lcfirst IF PARAMETERS()<2 return( MESSAGEBOX('Plea

Re: Program to scrape text from web page

2007-02-21 Thread MB Software Solutions
Dave Bernard wrote: > I would probably need to know more specifics about the web page side. Do you > control it? Is it a public page? > It's a public page. Specifically, I want to launch whatismyip.com and scrape the ip value from that. (On that note, I guess I don't need to programatically

RE: Program to scrape text from web page

2007-02-21 Thread Kevin Ragsdale
Michael J. Babcock wrote: >> I want to launch whatismyip.com and scrape the ip value from that. Mike, With the West-Wind Internet Protocols, you could use the wwHTTP class: oHTTP = CREATEOBJECT("wwHTTP") lcHTML = oHTTP.HTTPGet("http://www.whatismyip.com";) IF !EMPTY(lcHTML) lcIP = ST

RE: Clearing the Word Clipboard

2007-02-21 Thread Robert Jennings
Ed, Thanks :o) Robert Jennings Development and Computer Services Manager Marine Software Limited Planned Maintenance, Stock Control, Project (Refit) Management, Purchasing, Safety and ISM Document Management systems for the Marine Industry. -Original Message- From: [EMAIL PROTECT

RE: Clearing the Word Clipboard

2007-02-21 Thread Robert Jennings
Hi, In 2003 "Office Clipboard" doesn't exist. It doesn't evaluate to an object both the lines below result in no objects! ocom=oword.commandbars("Office Clipboard") ocom=oword.application.commandbars("Office Clipboard") I also need bullet proof in all versions of word. This is appeari

RE: Program to scrape text from web page

2007-02-21 Thread Sales Info
Michael and others, There's a new version of wwIPstuff available at www.west-wind.com. I believe this is a major upgrade so there's a cost to upgrade. Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/li

[NF] Mount an ISO CD image as a virtual CD/DVD drive?

2007-02-21 Thread Malcolm Greene
Any suggestions on a utility to mount an ISO CD image file as a virtual CD/DVD drive vs. burning throw-away CD/DVD's everytime I need to install from a downloaded ISO file? There appear to be a lot of options for Linux - I'm looking for a Windows 2000/XP solution. I've been googling and found: 1

RE: [NF] Mount an ISO CD image as a virtual CD/DVD drive?

2007-02-21 Thread Rick Quilhot
You might try Nero. Rick Q -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Greene Sent: Wednesday, February 21, 2007 11:04 PM To: profox@leafe.com Subject: [NF] Mount an ISO CD image as a virtual CD/DVD drive? Any suggestions on a utility to moun

Re: [NF] Mount an ISO CD image as a virtual CD/DVD drive?

2007-02-21 Thread Justin Darnell
DaemonTools are okay, but you need to watch the setup options for'extras'. The unsupported Microsoft tool is my favorite. Its a little more difficult to use, but...given 15 minutes its a snap. Free and spyware free. Justin On 2/21/07, Rick Quilhot <[EMAIL PROTECTED]> wrote: > You might try

Re: [NF] Mount an ISO CD image as a virtual CD/DVD drive?

2007-02-21 Thread Malcolm Greene
Justin/Rick, > The unsupported Microsoft tool is my favorite (Justin) > Try Nero (Rick) Thank you! Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://

RE: [NF] Where to find license keys for Empower program

2007-02-21 Thread Sales Info
Thanks to all of you who replied. With your help and the help of MS phone and chat support I was finally able to find my license keys for Empower downloads. MS personal support was good/patient - but the "user/customer experience" to find such a simple piece of information was *TERRIBLE*. To follo

Re: newb questions about moving and renaming classes and forms

2007-02-21 Thread Jaime Vasquez
John Weller wrote: If it is in a project then remove > it from the project without deleting it from the disc, then move or rename > it and add it back to the project. > Hi, No need to remove the file from the project, just select the form and hit F2 or Right click, and the project will rena

Re: [NF] Mount an ISO CD image as a virtual CD/DVD drive?

2007-02-21 Thread Sales Info
Here's another interesting free utility: http://isorecorder.alexfeinman.com/isorecorder.htm Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com

Re: [NF] Mount an ISO CD image as a virtual CD/DVD drive?

2007-02-21 Thread Jaime Vasquez
Malcolm Greene wrote: > Justin/Rick, > > >>The unsupported Microsoft tool is my favorite (Justin) >>Try Nero (Rick) > > Hi Malcom, If you choose Daemon Tools, look for the last "clean" version: 3.47 http://www.disc-tools.com/download/daemon347+md5sum HTH Jaime Vasquez. _

RE: [NF] Where to find license keys for Empower program

2007-02-21 Thread john harvey
My DVD's showed up today. I guess I'll get to bleed over the next week. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sales Info Sent: Wednesday, February 21, 2007 10:28 PM To: profox@leafe.com Subject: RE: [NF] Where to find license keys for Empow

RE: [NF] Where to find license keys for Empower program

2007-02-21 Thread Malcolm Greene
John, > My DVD's showed up today. I guess I'll get to bleed over the next week. Give me a shout if you get stuck. BTW: I'm downloading ISO images and installing via the free, unsupported MS virtual CD emulator utility I linked to in a previous email vs. burning and managing CD's. So far, so good

RE: [NF] Specs for developer workstation in 2007

2007-02-21 Thread Adam Buckland
What; you've upgraded your XT and not told me next thing you'll be telling me that these 5 1/4 " disks I've been writing for you have been superseded! ::a -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Derek Kalweit If software didn't drive hardwar

[NF] Does anyone have Verizion FIOS Broadband and TV yet?

2007-02-21 Thread Michael Madigan
Does anyone have Verizion FIOS Broadband and TV yet? Looks good, but how is the reliability? ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailma