Forta to speak at Mid Michigan CFUG - Aug 27th

2001-08-20 Thread Brett Suwyn
this site. Hope to see you there! Brett Suwyn ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.c

RE: MSXML, XML, outputting attributes?

2001-07-09 Thread Brett Suwyn
You can access them directly with XPath or the GetNamedItem method called on the node. For example (using XPath): iBookID = xmlDoc.selectSingleNode("//book/@id"); Brett Suwyn mailto:[EMAIL PROTECTED] http://forums.siteobjects.com |> -Original Message- |> Fr

RE: Open Source (and free?) web content editor?

2000-08-18 Thread Brett Suwyn
latest beta. Happy Coding! Brett Suwyn Director of Application Development SiteObjects, Inc. mailto:[EMAIL PROTECTED] http://www.siteobjects.com > > -Original Message- > > From: Cameron Childress [mailto:[EMAIL PROTECTED]] > > Sent: Thursday, August 17, 2000 11:08

RE: Know where I can find Chr(*) definitions?

2000-07-07 Thread Brett Suwyn
http://www.acius.com/ACIDOC/V6U/V6U00057.HTM -Original Message- Anyone know of anywhere I can find the definition for the Chr(*) stuff online? Only ones I know are Chr(10) and Chr(13). -- Archives: http://www.ma

RE: NULL using it in CF

2000-06-27 Thread Brett Suwyn
ppy Coding, Brett Suwyn mailto:[EMAIL PROTECTED] > -Original Message- > From: paul smith [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 27, 2000 9:47 AM > To: [EMAIL PROTECTED] > Subject: RE: NULL using it in CF > > > doesn't work > >

RE: Ben's CF DHTML menus

2000-06-25 Thread Brett Suwyn
e the onLoadHandlers array to be loop through on the event */ var onLoadHandlers = new Array(); /* Tie this function to the onload attribute of the body tag */ function onLoadHandler(){ for (x=0;x That will expose his initialization function to the documents onload event. Hope this helps! Good Luck,

RE: Inline HTML Editor

2000-05-16 Thread Brett Suwyn
take part in the limited beta testing please email mailto:[EMAIL PROTECTED] Happy Coding, Brett Suwyn Director of Application Development SiteObjects, Inc. mailto:[EMAIL PROTECTED] http://www.siteobjects.com -Original Message- From: Raley, Scott M (MIL) [mailto:[EMAIL PROTECTED]] Sent

RE: twoselectsrelated

2000-04-19 Thread Brett Suwyn
You can grab my version of the tag that supports multiple instances in the same form as well as preselecting value, etc... It can be found here: http://www.suwyn.com/customtags/twoselectsrelated/twoselectsrelated.zip Good Luck! Brett Suwyn mailto:[EMAIL PROTECTED] -Original Message

RE: Variable in stored procedures

2000-03-25 Thread Brett Suwyn
Chris, You need to build your SQL statement dynamically and then execute it. Pretty straight forward. Here is an example: /* === */ Create Procedure test @TableName VarChar(50), @CoumnName VarChar(50) AS DECLARE @SQL_Statement VarChar(