Re: How to make this VB Script result into a Session variable

2007-01-27 Thread James Holmes
I'd say that an authentication scheme that relies solely on the browser to provide authorization info is badly broken. On 1/27/07, Bruce Sorge [EMAIL PROTECTED] wrote: Good point. It ain't broke so I am not going to try and fix it, just improve on it a little. -- CFAJAX docs and other useful

How to make this VB Script result into a Session variable

2007-01-26 Thread Bruce Sorge
I inherited an application and I need to know how to make this particular piece of code go into an Appication or Session variable: What this is doing is grabbing the login name of the user on the machine and then it appends it to a URL variable. Problem is, I can change the URL variable once I am

RE: How to make this VB Script result into a Session variable

2007-01-26 Thread Dave Watts
I inherited an application and I need to know how to make this particular piece of code go into an Appication or Session variable: What this is doing is grabbing the login name of the user on the machine and then it appends it to a URL variable. Problem is, I can change the URL variable

Re: How to make this VB Script result into a Session variable

2007-01-26 Thread Bruce Sorge
Thanks Dave. This helps. I admit I am weak in VB. I was thinking of redoing this in C# (something I know). Anyway, using a cookie or form variable should do the trick. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7

RE: How to make this VB Script result into a Session variable

2007-01-26 Thread Dave Watts
Thanks Dave. This helps. I admit I am weak in VB. I was thinking of redoing this in C# (something I know). Anyway, using a cookie or form variable should do the trick. I don't think you can rewrite client-side VBScript in C# - I don't think that Internet Explorer supports that. Even

Re: How to make this VB Script result into a Session variable

2007-01-26 Thread Bruce Sorge
Good point. It ain't broke so I am not going to try and fix it, just improve on it a little. Bruce ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

RE: weird VB exploit

2006-10-30 Thread Brad Wood
Thanks for the suggestion Jacob.1 -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Saturday, October 28, 2006 8:23 AM To: CF-Talk Subject: RE: weird VB exploit One security rule I've learned that instead of blocking known problems (ala virus definitins), one should

RE: weird VB exploit

2006-10-28 Thread Munson, Jacob
One security rule I've learned that instead of blocking known problems (ala virus definitins), one should only allow safe stuff and block everything else. In your case, instead of blocking iframe, and then later finding out something else is a problem, create a small list of formatting tags that

weird VB exploit

2006-10-27 Thread Brad Wood
Hey guys, I just got some spam posts on my guestbook which include an iframe. Inside the iframe a page is called which, after calling about 80 unescape JavaScript functions tries to execute the following VB code. I realized it when my antivirus started going nuts telling me about executable files

RE: weird VB exploit

2006-10-27 Thread Munson, Jacob
You lost me. Are /you/ trying to run this VB script? If not, why do you care about /your/ version of IE, it's the spammers browser (or spam tool) that matters. Ok, after a reread, I think I understand better. The spammer posted some code that included an iframe. When you load your guestbook

RE: weird VB exploit

2006-10-27 Thread Brad Wood
maybe I just didn't have all the security patches installed. ~Brad -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Friday, October 27, 2006 5:04 PM To: CF-Talk Subject: RE: weird VB exploit You lost me. Are /you/ trying to run this VB script? If not, why do you

RE: weird VB exploit

2006-10-27 Thread Snake
You should have your guestbook not allow tags, or at least not allow javascript. Russ -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: 27 October 2006 23:37 To: CF-Talk Subject: RE: weird VB exploit Yep, that's what happened. All I did was go and view my guestbook

RE: weird VB exploit

2006-10-27 Thread Brad Wood
, October 27, 2006 6:03 PM To: CF-Talk Subject: RE: weird VB exploit You should have your guestbook not allow tags, or at least not allow javascript. Russ ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard

Re: weird VB exploit

2006-10-27 Thread Denny Valliant
On 10/27/06, Brad Wood [EMAIL PROTECTED] wrote: Yep, that's what happened. All I did was go and view my guestbook and my antivirus went nuts. What scares the heck out of me is that MS IE was going to let the VBS execute those files without nary a warning. [Insert obligatory FF IE comments

ADSI, AD, and COM objects in VB

2006-06-15 Thread Lanstein, Alex C
, but it was written in 1982 and too much has changed so that most of the hooks dont work anymore. If anyone has the source for the dll I'd love to see it. That's what I'm trying to do...it's the right idea I think - write it in VB as a COM object then call that from coldfusion. My only problem

RE: ADSI, AD, and COM objects in VB

2006-06-15 Thread Dawson, Michael
the project in VB6, the environment's settings will be correct. Let me know if you have any other questions. M!ke -Original Message- From: Lanstein, Alex C [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 8:48 AM To: CF-Talk Subject: ADSI, AD, and COM objects in VB I'm fairly new

RE: coupons inc script - convert VB to CF UDF

2006-04-27 Thread Bobby Hartsfield
It works and finally returns the right string :-) ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Jim Priest [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:40 PM To: CF-Talk Subject: Re: coupons inc script - convert VB to CF

coupons inc script - convert VB to CF UDF

2006-04-25 Thread Jim Priest
I'm working on a project where I need to send people to Coupons Inc to get a coupon. They provided an alogrithm which generates a key used in a URL which allows tracking, etc. They provided an example VB script which would generate this key when passed a few variables. I've tried to recreate

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Ben Nadel
Subject: coupons inc script - convert VB to CF UDF I'm working on a project where I need to send people to Coupons Inc to get a coupon. They provided an alogrithm which generates a key used in a URL which allows tracking, etc. They provided an example VB script which would generate this key when

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Ben Nadel
Ooops, I see, its not a function, its an array :)... My bad. ... Ben Nadel www.bennadel.com -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 3:12 PM To: CF-Talk Subject: RE: coupons inc script - convert VB to CF UDF Jim

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Dan G. Switzer, II
Jim, I'm working on a project where I need to send people to Coupons Inc to get a coupon. They provided an alogrithm which generates a key used in a URL which allows tracking, etc. One thing to remember is arrays in VB start at zero and arrays in CF start at one. I'd change your vob variable

Re: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Robert Everland III
I have corrected your function, I added in some vars. The mod was definitely going to be an issue, so I just added 1 to it, you were also using the variable m in there and m wasn't used anywhere so I changed that to i, enjoy. cffunction name=EncodeCPT cfargument name=vString

VB .NET MySQL

2004-02-18 Thread David Berry
I am looking for guidance on the proper way to connect to MySQL via Dream weaver VB .Net. 1. I have downloaded MySQLDriverCS, Installed it. 2. Do you still use the web.config file? If so what should the connection script look like? 3. I am guessing that you can not use the preset connection

VB Functions -- Coldfusion?

2003-10-22 Thread rob.stokes
Hi all, New to the list/ColdFusion and need some advice from you chaps. Basically, I want to convert a some VB to run on ColdFusion and was wondering whether Coldfusion has an equivalent function to the following VB functions. (I need to know whether it's worth wasting my time.) Len() - Returns

RE: VB Functions -- Coldfusion?

2003-10-22 Thread Mike Townend
, 2003 10:57 To: CF-Talk Subject: VB Functions -- Coldfusion? Hi all, New to the list/ColdFusion and need some advice from you chaps. Basically, I want to convert a some VB to run on ColdFusion and was wondering whether Coldfusion has an equivalent function to the following VB functions. (I need

RE: VB Functions -- Coldfusion?

2003-10-22 Thread rob.stokes
Thanks Mike BTW, I used ReFind([[:upper:]],strChar) for IsUpper() -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED] Sent: 22 October 2003 11:05 am To: CF-Talk Subject: RE: VB Functions -- Coldfusion? Left() = Left() Mid() = Mid() IsNumeric() = IsNumeric() CInt() = Val

RE: VB Functions -- Coldfusion?

2003-10-22 Thread Brad Roberts
=true cfreturn reFind([[:upper:]], str, 1) /cffunction -Brad -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 7:18 AM To: CF-Talk Subject: RE: VB Functions -- Coldfusion? Thanks Mike BTW, I used ReFind([[:upper:]],strChar) for IsUpper

RE: VB Functions -- Coldfusion?

2003-10-22 Thread Mike Townend
[mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 12:48 To: CF-Talk Subject: RE: VB Functions -- Coldfusion? You could wrap that in a UDF and submit it to cflib.org :) It would be something like... cfscript function isUpper(str) { return reFind([[:upper:]], str, 1); } /cfscript

RE: VB Functions -- Coldfusion?

2003-10-22 Thread Pascal Peters
For a string, do reFind(^[[:upper:]]+$, str), works for a single character too Pascal -Oorspronkelijk bericht- Van: Mike Townend [mailto:[EMAIL PROTECTED] Verzonden: wo 22/10/2003 13:55 Aan: CF-Talk CC: Onderwerp: RE: VB Functions -- Coldfusion? but this would only really work

RE: VB Functions -- Coldfusion?

2003-10-22 Thread Benjamin S. Rogers
Left() = Left() Mid() = Mid() IsNumeric() = IsNumeric() Note that the IsNumeric() function is quite different between the two languages. VBScript only cares if the value contains characters which can appear in a number, including scientific notation. ColdFusion seems to check to see whether or

Re: VB version of cfhttp

2003-09-24 Thread John Paul Ashenfelter
(often were COM components written in VB instead of VC++). Many of the cheaper ones relied on the MSIE ocx component to do the heavy lifting which doesn't scale well at all. And most fail miserably at SSL connections (of course if you're used to CFHTTP on 4.x, you're already used to stuff like this *grin

VB version of cfhttp

2003-09-23 Thread Sean McCarthy
Does anyone know of how I would do a VB http call. Same as how cfhttp works behind the scenes without spawning a user. Thanks Sean ~| Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138194 Archives: http

RE: VB version of cfhttp

2003-09-23 Thread Lomvardias Christopher
Microsoft's XMLHttp com object. http://msdn.microsoft.com/library/default.asp?url=/downloads/list/xmlgeneral .asp -Original Message- From: Sean McCarthy [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 3:26 PM To: CF-Talk Subject: VB version of cfhttp Does anyone know of how

RE: VB version of cfhttp

2003-09-23 Thread Dave Watts
Does anyone know of how I would do a VB http call. Same as how cfhttp works behind the scenes without spawning a user. There are many ways you might do this, depending on the version of VB and your willingness to use third-party components. You can do it directly in older versions of VB using

Re: VB version of cfhttp

2003-09-23 Thread Scott Ashman
this, depending on the version of VB and your willingness to use third-party components. You can do it directly in older versions of VB using Winsock calls, if I recall correctly. If that's unappealing, you might use a control like Mabry's HTTP/X COM object. In VB.NET, you can use

Tag for VB style select boxes

2003-01-22 Thread Ciliotta, Mario
Hi, Does anyone have a tag or an example that I can look at to see how to create a selectbox (dropdown) that will behave like a VB style select box with type-ahead, so that as I type in the box the match is automatically highlighted. Thanks Mario This message is for the named person's use

Re: Tag for VB style select boxes

2003-01-22 Thread Scott Brady
-- Original Message -- From: Ciliotta, Mario [EMAIL PROTECTED] Does anyone have a tag or an example that I can look at to see how to create a selectbox (dropdown) that will behave like a VB style select box with type-ahead, so that as I type in the box

RE: Tag for VB style select boxes

2003-01-22 Thread Tony Weeg
To: CF-Talk Subject: Re: Tag for VB style select boxes -- Original Message -- From: Ciliotta, Mario [EMAIL PROTECTED] Does anyone have a tag or an example that I can look at to see how to create a selectbox (dropdown) that will behave like a VB style select

Re: Tag for VB style select boxes

2003-01-22 Thread jon hall
Does anyone have a tag or an example that I can look at to see how to create a selectbox (dropdown) that will behave like a VB style select box with type-ahead, so that as I type in the box the CM match is automatically highlighted. CM Thanks CM Mario

Re: Tag for VB style select boxes

2003-01-22 Thread Scott Brady
Let me just say that I have found that combo boxes confuse users more than they help, and stopped using them. People are just to used to just clicking on a dropdown. And, for those of us that use the keyboard to select items in a drop-down, it would also be confusing. I'm used to typing C twice

RE: Tag for VB style select boxes

2003-01-22 Thread Joshua Miller
] * -Original Message- From: jon hall [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 2:54 PM To: CF-Talk Subject: Re: Tag for VB style select boxes This js lib does it. http://webfx.eae.net/dhtml/combobox/combobox.htm I'm not to big a fan of that one though

RE: Tag for VB style select boxes

2003-01-22 Thread Adrocknaphobia Jones
: jon hall [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 2:54 PM To: CF-Talk Subject: Re: Tag for VB style select boxes This js lib does it. http://webfx.eae.net/dhtml/combobox/combobox.htm I'm not to big a fan of that one though, it has some browser issues. Personally I'd take

tough question ie/vb/iis (not strictly CF)

2002-10-01 Thread David Caplan
, they need to do it locally. My challenge is creating an application that will run in windows and simulate the look and feel of the browser and use html pages to display my content. At this stage, we have created an application that uses a VB browser as a front end and just calls html and asp pages

RE: VB

2002-09-10 Thread Kevan . Windle
How about using an error block. Try to use it - if you get a variable does not exist error then dim it. -Original Message- From: Benoit Martin [mailto:[EMAIL PROTECTED]] Sent: 09 September 2002 21:48 To: CF-Talk Subject: RE: VB Unfortunately I don't know the answer but I don't think

OT: VB

2002-09-09 Thread Scott Mulholland
Anyone know if there is an equivalent of what cfparam in VB. I need to set a default for a variable in case it does not exist. Thanks, Scott __ Signup for the Fusion Authority news alert and keep up with the latest news

RE: VB

2002-09-09 Thread Robert Everland
Isn't it DIM Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Scott Mulholland [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 4:15 PM To: CF-Talk Subject: OT: VB Anyone know

RE: VB

2002-09-09 Thread Tony Carcieri
Dim only declares the var.. Try this: Dim x x = -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 4:17 PM To: CF-Talk Subject: RE: VB Isn't it DIM Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http

RE: VB

2002-09-09 Thread Benoit Martin
Carcieri [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 10:24 AM To: CF-Talk Subject: RE: VB Dim only declares the var.. Try this: Dim x x = -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 4:17 PM To: CF-Talk Subject: RE: VB

RE: VB

2002-09-09 Thread Tony Carcieri
Hmm, maybe I am having a brainfart. If I do: cfparam name=foo default= doesn't that set the value to ? If so, then doing what I suggested in VB should work the same. Again, my brain ain't working today. HTH, T -Original Message- From: Benoit Martin [mailto:[EMAIL PROTECTED]] Sent

Re: VB

2002-09-09 Thread Douglas Brown
, 2002 1:55 PM Subject: RE: VB Hmm, maybe I am having a brainfart. If I do: cfparam name=foo default= doesn't that set the value to ? If so, then doing what I suggested in VB should work the same. Again, my brain ain't working today. HTH, T -Original Message- From: Benoit Martin

RE: VB

2002-09-09 Thread Scott Mulholland
But foo is only if it does not already exist. Benoit was correct in his understanding of what I am looking for. -Original Message- From: Tony Carcieri [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 3:56 PM To: CF-Talk Subject: RE: VB Hmm, maybe I am having a brainfart

RE: VB

2002-09-09 Thread Tony Carcieri
Yup...wasn't thinking. Well, how about: % If x Then 'do something Else 'x = End If % -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 5:07 PM To: CF-Talk Subject: Re: VB That only sets the value

RE: VB

2002-09-09 Thread Matt Liotta
/ 888-408-0900 x901 -Original Message- From: Scott Mulholland [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:04 PM To: CF-Talk Subject: RE: VB But foo is only if it does not already exist. Benoit was correct in his understanding of what I am looking

RE: VB

2002-09-09 Thread Shawn Grover
: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 3:18 PM To: CF-Talk Subject: RE: VB Alright, a couple of things to note... First, Dim is for declaring variables, but if you don't specify a type then the variable is declared as a variant. Thus, instead of... Dim x

RE: VB

2002-09-09 Thread Matt Liotta
In VB speak, a variable is either something or it is nothing. The only way to have a variable is to declare it. Thus, a variable that is declared, but doesn't have a value is nothing. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ 888-408-0900 x901

VB and CF

2002-09-04 Thread Kodjo Ackah
I use CFStudio at the moment, I need to branch into VB for a project. I am not certain but, can I just download VB 6 install it on my PC and work away or is there any specifics with doing this that I need to know? Also, there is no application server(I mean Coldfusion server) installed on my PC

RE: VB and CF

2002-09-04 Thread John Beynon
VB is for creating desktop/server apps - it's not a webserver product or any such like. You create the VB project, compile the code and run the .exe file. Unless you're getting confused with VBScript? You can quite happily install Visual Studio and keep CFStudio on the same machine. John

Re: VB and CF

2002-09-04 Thread Ashok
Hello Mr.Kodjo!! Good Day!! Just instal VB6, that would do. Thanks Ashok - Original Message - From: Kodjo Ackah [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 04, 2002 1:54 PM Subject: VB and CF I use CFStudio at the moment, I need

RE: VB and CF

2002-09-04 Thread Kodjo Ackah
Cheers guys! Kodjo ackah Principal Consultant concrete-media.com __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ:

RE: VB and CF

2002-09-04 Thread Bartee Lamar
I am also starting doing some work in ASP. Something very interesting. Many hard core VB programmers use Homesite not MS Ide for coding. The MS IDE has some merit since it will expand object constructs good in the early stages. You of course will need an IIS web server to run your stuff. I

RE: VB and CF

2002-09-04 Thread Dave Watts
Something very interesting. Many hard core VB programmers use Homesite not MS Ide for coding. For a long time, the most commonly used ASP development tool was Homesite. I suspect that ASP.NET developers are using VS.NET, though. If you're doing ASP.NET development, and don't want to buy

OT: CF Evaluate in VB?

2001-12-11 Thread Shawn Grover
I'm writing a program in VB and find it would be extremely useful to have a function similar to to Cold Fusion's Evaluate function. Does anyone know if such a function exists in VB? I've yet to see anything like it in the MSDN. I have seen third party tools that would handle math

RE: CF Evaluate in VB?

2001-12-11 Thread Dunwiddie, Bruce
: Tuesday, December 11, 2001 11:50 AM To: CF-Talk Subject: OT: CF Evaluate in VB? I'm writing a program in VB and find it would be extremely useful to have a function similar to to Cold Fusion's Evaluate function. Does anyone know if such a function exists in VB? I've yet to see anything like

RE: CF Evaluate in VB?

2001-12-11 Thread Shawn Grover
Message- From: Dunwiddie, Bruce [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 11, 2001 12:43 PM To: CF-Talk Subject: RE: CF Evaluate in VB? I think the reason is that in normal programming, non-web, you would use function calls as opposed to using just evaluates. I think you need to take

Re: CF Evaluate in VB?

2001-12-11 Thread Tyler Clendenin
VB does not have an eval function. - Original Message - From: Shawn Grover [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 11, 2001 12:50 PM Subject: OT: CF Evaluate in VB? I'm writing a program in VB and find it would be extremely useful to have a function

OT:Access SQL Extraction VB Script

2001-01-18 Thread Adam Reynolds
This was posted sometime ago, could somebody email me directly or give me a link to be able to download this script that creates the SQL for a database? Thanks Best Regards, Adam Reynolds ColdFusion Web Developer ISMG Development, Unilever London ( +44 20 7822 x5450 m: +44 7973 386620 *

Registering a COM object without installing VB Studio

2001-01-03 Thread Aidan Whitehall
(Posted on behalf of another developer) Is it possible to register a COM object on an NT4 / IIS webserver without having to install a copy of VB Studio on the same server? Thanks -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http

RE: Registering a COM object without installing VB Studio

2001-01-03 Thread Neil Clark
regsvr32 "file.dll" N ! --- Neil Clark Senior Web Applications Engineer ColdFusion / Spectra / XML mcb digital [Allaire Premium Partner] Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com ---

Re: Registering a COM object without installing VB Studio

2001-01-03 Thread Billy Cravens
Yes Start-Run- regsvr32 full_path_to_dll -- Billy Cravens [EMAIL PROTECTED] Aidan Whitehall wrote: (Posted on behalf of another developer) Is it possible to register a COM object on an NT4 / IIS webserver without having to install a copy of VB Studio on the same server? Thanks

RE: Registering a COM object without installing VB Studio

2001-01-03 Thread Aidan Whitehall
Start-Run- regsvr32 full_path_to_dll Thanks for the answers. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744) 648651 ~~

RE: Registering a COM object without installing VB Studio

2001-01-03 Thread Eric Fickes
If you goto the run window, type regsvr32 and click OK, you will see a listing of all of your options. E -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 03, 2001 11:32 AM To: CF-Talk Subject: RE: Registering a COM object without installing VB

RE: Registering a COM object without installing VB Studio

2001-01-03 Thread Andy Ewings
, or retain this message. Please notify us on +44 (0)207 387 8890. -Original Message- From: Eric Fickes [mailto:[EMAIL PROTECTED]] Sent: 03 January 2001 17:01 To: CF-Talk Subject: RE: Registering a COM object without installing VB Studio If you goto the run window, type regsvr32

OT--vb control puzzle

2000-11-08 Thread Kathleen Ballard
Dear List, I apologize for the off topic post, but I know many of you also code in asp and am hoping someone might have an answer to a puzzle. Or, at least point me in the direction of a resource I can try. I am using the MonthView control. It's in the Microsoft Common Controls ocx file.

vb script in .cfm templates?

2000-10-02 Thread Eric Hoffman
showing my M$ VB ignorance hereif we are on a IIS/M$ platform, can we run VB script in a .cfm template? Or is there a better way to force a table of data to a fixed-width text file? Thanks for any pointers. Eric

RE: vb script in .cfm templates?

2000-10-02 Thread Andy Ewings
Do you mean client side VB script (like Java Script) or server side VB Script (ASP)? If it's the former then no probs. If it's the latter then I don't think so. As far as I understand it (someone please correct me if I'm wrong) IIS knows that it has to execute some ASP code before sending

RE: vb script in .cfm templates?

2000-10-02 Thread Dave Watts
showing my M$ VB ignorance hereif we are on a IIS/M$ platform, can we run VB script in a .cfm template? No, you can't directly run VBScript from within a cfm file. You can, however, write a Windows Script Host file in VBScript, and run that through CFOBJECT (if your script file

Re: vb script in .cfm templates?

2000-10-02 Thread Dick Applebaum
my M$ VB ignorance hereif we are on a IIS/M$ platform, can we run VB script in a .cfm template? Or is there a better way to force a table of data to a fixed-width text file? Thanks for any pointers. Eric -- Archives

vb script solved, now DUN

2000-10-02 Thread Eric Hoffman
Ok, found the custom tag to dump my queries to a comma delimited file which is good enough... now, I know cfexecute works code on the server...I need to force a specific Dial-Up Networking connection to start at the user's machineis that possible? Something similar to cfexecute? Any more

Re: vb script solved, now DUN

2000-10-02 Thread Billy Cravens
Not with CFExecute. That only works server-side. You're going to have to write something that runs client-side (COM, etc.) -- Billy Cravens [EMAIL PROTECTED] Eric Hoffman wrote: Ok, found the custom tag to dump my queries to a comma delimited file which is good enough... now, I know

Re: vb script in .cfm templates?

2000-10-02 Thread Eric Hoffman
can easily go from db to text file using CFQUERY and CFFILE. HTH Dick At 10:34 AM -0500 10/2/00, Eric Hoffman wrote: showing my M$ VB ignorance hereif we are on a IIS/M$ platform, can we run VB script in a .cfm template? Or is there a better way to force a table of data to a fixed-width

RE: vb script solved, now DUN

2000-10-02 Thread Scott, Andrew
Coms run server side, I think you meant to refer to ActiveX controls:-) regards Andrew Scott ANZ eCommerce Centre * Ph 9273 0693 * [EMAIL PROTECTED] -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: 03 October 2000 06:23 To: CF-Talk Subject: Re: vb script

[CF-Talk] VB Experts HELP(yes CF related)

2000-09-19 Thread Robert Everland
Ok here is what I am doing. I found on the taggallery a VB application to convert a doc to HTML. Thing is I can not get it to work in Word at all. What I want to do is set it up as an object in CF, but I am using VBS to try to test it now. Anyone seen where this went wrong? const

Bug in VB example provided with Forta's advanced book?

2000-07-04 Thread Kris Marwood
Has anyone had any trouble running the A2Z bookstore WDDX / Visual Basic demonstration app from Ben Forta's advanced CF book? (page 380 - the code I used was not included on the CD and was downloaded from forta.com) I've just installed Visual Basic Pro yesterday and I'm trying to run the VB file

Re: Bug in VB example provided with Forta's advanced book?

2000-07-04 Thread Justin v0.9 MacCarthy
also make sure you have the WDDX type lib checked in references... ~J - Original Message - From: Kris Marwood [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 04, 2000 11:28 AM Subject: Bug in VB example provided with Forta's advanced book? Has anyone had any trouble

java to c or vb

2000-06-12 Thread Jason Egan
This is a multi-part message in MIME format. --=_NextPart_000_000B_01BFD3F2.05717050 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit I’ve got a java program that I need re-written in c or vb --- the java application works fine, but I

Online CF VB/VC++ COM resource?

2000-05-02 Thread John Fix 3rd
Is there an online resource anywhere that has some info about including COM objects in CF templates? Thanks! John www.cornells.com -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: VB COM Examples

2000-05-02 Thread Bill Grover
Yes we have done this (using a VFP COM object, but the idea's the same). Your VB object needs to return an ADO recordset. This record set is viewed as a collection by CF. You can loop through it with CF and do what you need. Looping through the recordset got very tiring very quick. So what we

RE: VB COM Examples

2000-05-02 Thread Shannon Hall
Ok, Making progress but left without the warm fuzzy feeling at the end of the day. Make that two days. Have a class in VB which is creating a formatted wddx packet, function as follows: Public Function GetData() As String Dim StrXml As String StrXml = "xmpwddxPacket version

Re: VB COM Examples

2000-05-02 Thread WBB
Try wrapping your CFWDDX arguments in double quotes...seemed like I got the same error without them... CFWDDX ACTION="CFML2WDDX" INPUT="#qry#" OUTPUT="qryWDDX" Ok, Making progress but left without the warm fuzzy feeling at the end of the day. Make that two d

VB COM Examples

2000-05-01 Thread Shannon Hall
Examples, I am looking for examples of com implementation for coldfusion. I am working on a com object in VB, which has methods for returning a string for the coldfusion tags, this works fine. What I am looking for now is a way to return a resultset, or a collection for colfusion to loop

Re: VB COM Examples

2000-05-01 Thread WBB
for coldfusion. I am working on a com object in VB, which has methods for returning a string for the coldfusion tags, this works fine. What I am looking for now is a way to return a resultset, or a collection for colfusion to loop through. Has anyone done this? Alaires site makes no referrence