Re: SQL Server 2005

2006-09-21 Thread Jim Wright
Steve LaBadie wrote: > I have upgraded my web server from Access to SQL Server. Is there a GUI > interface for creating tables and database similar to Access? > In addition to Management Studio, you can use Access to manage a SQL database fairly effectively...create a new Access Project and poi

Re: How to get these query results

2006-09-21 Thread Jim Wright
Jochem van Dieten wrote: > Several people wrote: >> "ROM table1,table2 WHERE table1.foo = table2.foo (Is NOT ANSI compliant >> SQL)" > > There is nothing wrong with that syntax under any version of the SQL standard > from ANSI or the ISO/IEC. This syntax is not even deprecated in the standard >

Re: CFInput text and onclick functionality

2006-09-20 Thread Jim Wright
You may also want to use onFocus to call this function, as that will get cases where someone tabs into the field as well as cases where they click in. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hittin

Re: How to get these query results - Take 2

2006-09-20 Thread Jim Wright
Matt Williams wrote: > Rich, you are right in that I want the event with the furthest/newest > date to show first. But if there is another date associated with that > newest event, it should also show under its title. Your solution looks > like it will work. I'll give it a try and let you know. >

Re: OT: Javascript - Refresh a window

2006-09-20 Thread Jim Wright
Dave Francis wrote: > Hi, > I have a window from which I open pop-up with JS window.open();. When I > close this pop-up - self.close(); - is there any way to force a refresh of > the "parent" window? > opener.window.location.reload()

Re: How to get these query results - Take 2

2006-09-20 Thread Jim Wright
Sort on both SELECT a.EventName,b.EventDates FROM Events a INNER JOIN EventsDate b ON a.EventID = b.EventID ORDER BY a.EventName,b.EventDates Then cfoutout grouping on EventName. Matt Williams wrote: > I'm gonna try this again as while I slept last night my previous post > turned into a disc

Re: How to get these query results

2006-09-20 Thread Jim Wright
Rick Faircloth wrote: > You're saying that the comma in the select statement > > is non-standard > and that the Inner Join syntax as a substitute for the comma > is more appropriate? > Appropriate, maybe...standard, yes. FROM table1,table2 WHERE table1.foo = table2.foo (Is NOT ANSI compliant S

Re: OT: scrolling table

2006-09-19 Thread Jim Wright
Peter Boughton wrote: > Couldn't see if Jim's link had a solution on it, so here's one that > definitely is: > The scrolling one was called "Grayed Out", which is the one I linked to (for examples, that site just reloads the same table and applies the current style). Sorry, should have pointe

Re: OT: scrolling table

2006-09-19 Thread Jim Wright
Chad Gray wrote: > Anyone have a good solution to have the header row of a table stay where it > is and make the data in the table scroll? > Kind of like Excel... if you freeze panes you can make the header row with > the column descriptions stay on the page, but you can scroll down into the > d

Re: MySQL Front

2006-09-18 Thread Jim Wright
Chad Gray wrote: > I logged onto http://www.mysqlfront.de/ today to find they are out of > business. > > Anyone have a good MySQL front program? > I'll throw out my vote for Aqua Data Studio, which also will manage SQL Server, Oracle, etc. For me, it's nice having one tool for both MySQL and

Re: Web page thumbnails

2006-09-14 Thread Jim Wright
> >Can anyone tell me of a way to generate thumbnails of web pages from >ColdFusion? A co-worker is asking for a personal project he is working >on (so I'm guessing that he is looking for a no/low cost solution). > I am assuming that you mean pulling in a web page from the internet, and then m

Re: OT: NFR (Not for resale) Software

2006-09-12 Thread Jim Wright
I think this seller is trying the old "I'll sell you this pencil for $1000, and throw in 2 front row tickets to the Stones for free" trick that scalpers try to use. But since they have no right not sell it (or probably even give it away), you would not have a valid license. Another one to watc

Re: quick dumb sql question?

2006-09-09 Thread Jim Wright
Mark A Kruger wrote: > The licensing of SQL server covers "accesses" or "connections" (or > "processors" for an mssql server serving a web farm). Downloading the trial > and using the mmc is acceptable. In fact you can download the express or > msde version and get the em mmc - no problem. This is

Re: quick dumb sql question?

2006-09-09 Thread Jim Wright
There is one part of hosted SQL licensing that I've never been too sure on, and that is the use of SQL Enterprise Manager/Management Studio if you do not have your own license. I recently was moving some databases to SQL 2005, and asked the hosting company where the databases were hosted how I

Re: Hosting companies

2006-09-08 Thread Jim Wright
> > Search the archives at houseoffusion.com. This is a popular question that > pops up about once a month... lots of good info in the archives. > While it does pop up once a month, I'm not sure that is a bad thing. Hosting these days is mostly a commodity business, and with all the consolida

Re: CFEclipse - FTP???

2006-09-07 Thread Jim Wright
Just to throw out a non-FTP option for deploying with Eclipse/Ant, this article details how to use the exec task to fire off a rsync over SSH. http://www.developer.com/tech/print.php/998241 ~| Introducing the Fusion Authority Qua

Re: CFEclipse - FTP???

2006-09-07 Thread Jim Wright
Denny Valliant wrote: > > It seemed like you could get pretty fancy with the ANT fileset(?) > stuff...maybe > with the right "mask" or parameters it would get more granular/do what's > needed. > > I haven't used the FTP task so I don't know if it uses filesets(?) or > whatnot, but still... > Ju

Re: mySql question?

2006-09-07 Thread Jim Wright
Doug Brown wrote: > When mySql first came out, if memory serves me correctly it only had a > command line interface. Has things changed with it? Are you able to create > tables etc from a GUI interface? > There are many desktop and web based GUI interfaces to MySQL these days. One of my favorit

Re: CFEclipse - FTP???

2006-09-07 Thread Jim Wright
> -- > The chief drawback to this plugin is that it works with one file at a time > only. > Actually, I'd see this as complimentary to the Ant method, which is good for deploying a whole project or batch of changes, but doesn't handle the incremental changes as well (at least through FTP). Th

Re: Updating multiple records with different values

2006-09-07 Thread Jim Wright
>> >> Also, note that if you are using a DB that supports multiple SQL statements, you can move the loop inside the cfquery and only have one call to the db update tbl_865_orders_items set fld_qty_shipped = where fld_item_ID = ~~~

Re: issue with registering a ds in cfadmin

2006-09-06 Thread Jim Wright
Bob Imperial wrote: > > Connection verification failed for data source: newWebStore > java.sql.SQLException: [Macromedia][SQLServer JDBC Driver]Could not > establish a connection using integrated security: No LoginModules configured > for JDBC_DRIVER_01 > You will get this error if you haven't

Re: CF Built in web server mime types

2006-09-05 Thread Jim Wright
Jim Wright wrote: > Where are mime types defined in the built-in > web server? Never mind...found it C:\CFusionMX7\runtime\lib\mime.types ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitti

CF Built in web server mime types

2006-09-05 Thread Jim Wright
I'm running into a problem with the MX 7 Developer edition that I run locally and I'm fairly sure it is a mime type issue (IE is not recognizing a htc file). Where are mime types defined in the built-in web server? ~| Introduc

Re: Replying after the message

2006-09-05 Thread Jim Wright
Josh Nathanson wrote: > So, on the average, it would seem putting the reply at the top would save the > most scrolling time. Of course, there won't be much scrolling if the person replying has properly trimmed the previous message to highlight the particular question or subject that they are r

Re: CFEclipse - FTP???

2006-09-05 Thread Jim Wright
Jim Wright wrote: > This should only copy changed > files (although I haven't tested that much with the FTP...the local copy > definitely only copies over changed files, but when I'm doing the FTP, > I've generally made a lot of changes, so I'm not positive.

Re: OT: can you resolve this domain?

2006-09-05 Thread Jim Wright
no - nc.rr.com Josh Nathanson wrote: > Hey all, > > We are having some dns issues where some ISP's can resolve our domain and > some can't. Something about nameserver records pointing to multiple > servers. It would be super duper if some folks could try to hit our domain, > and then just re

Re: CFEclipse - FTP???

2006-09-05 Thread Jim Wright
Rey Bango wrote: > Awesome. Thanks for the explanation Jim. I'll definitely take a look at > this later. > If you do decide to use this method, you will probably need this reference... http://ant.apache.org/manual/OptionalTasks/ftp.html ~

Re: ColdFusion as presentation engine and nothing more

2006-09-05 Thread Jim Wright
Tom Kitta wrote: > On SQL server there are 1000's of stored procedures which are used to > display form, validate, update, delete etc. Essentialy the form building is > done on SQL server without even looking at any CF code. CF is a black box > which rarely changes while 99% of development is i

Re: CFEclipse - FTP???

2006-09-05 Thread Jim Wright
Rey Bango wrote: > > 1) FTP to my site via CFStudio's FTP option > 2) Open the file > 3) Make my changes > 4) Test them in my browser > 5) If anything is wrong, go back to step 3 else I'm done > Using the ANT process is not too different... 1) Open the file from your local project 2) Make my ch

Re: CFEclipse - FTP???

2006-09-05 Thread Jim Wright
> > But...my development server is sitting in a remote hosting facility and > up until now, I've used CFStudio's FTP capabilities to hit it. I don't > plan on installing Subversion in the immediate future so how do I get > access to my dev files? Does CFE have FTP functionality? > Rey, I'm al

Re: OT: SQL Server CPU Utilization maxes at 25%

2006-09-01 Thread Jim Wright
Rick Root wrote: > I have a fairly large bulk insert DTS task in SQL Serve that loads 5 gig > or so of data into our database every morning. It drops the original > tables, bulk inserts the data, then recreates all the indexes. No > logging, etc. > > I'm trying to figure out a way to improve

Re: Rich text Editors

2006-08-31 Thread Jim Wright
> > - Doesn't use inline styles, i.e p,em,i,h1,h2,h3,h4,h5,h6 only > - Could load an external CSS stylesheet so what you see in the RTE > window takes on the necessary styles of the website in which you're > trying to edit > - Filters out cut and pasted formatting (but more specifically, word)

SOT:ektron

2006-08-25 Thread Jim Wright
Are there any ektron users out there? I have a client who is considering their CMS400.NET product, and I haven't worked with an Ektron product for about 6 years (back when they had CF only versions). Any feedback on how it compares to other content management systems out there? Is it worth

Re: Uploading X number of photos at one time?

2006-08-25 Thread Jim Wright
Andy Matthews wrote: > I'm building an admin section for a client to manage inventory of his > products. The products are higher-end so he'd like to have up to 10 photos > for each item. I will need to create multiple sizes of each picture using > Rick Root's Image.cfc. > > What might be the best

Re: HTML Emails

2006-08-24 Thread Jim Wright
Andy Matthews wrote: > Bryan... > > Does CFMAIL support multipart? If so, how do you do it? > Look up . ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your p

Re: OT:HTML Emails

2006-08-24 Thread Jim Wright
Tanguy Rademakers wrote: > > http://www.sitepoint.com/article/code-html-email-newsletters > Thanks, that is exactly the kind of info I was looking for. -jim ~| Introducing the Fusion Authority Quarterly Update. 80 pages of har

Re: HTML Emails

2006-08-24 Thread Jim Wright
Casey Dougall wrote: > http://www.responsys.com/ > > http://www.verticalresponse.com > > > I haven't used this yet but the services they offer at aweber seem really > cool! > http://www.aweber.com/?214075 > > I've had clients have good luck with: http://www.aweber.com/ http://www.constantcont

Re: HTML Emails

2006-08-24 Thread Jim Wright
Robertson-Ravo, Neil (RX) wrote: > You should note though that large email marketing services work closely with > ISP and Spam services to stop good emails being blocked. An email should not > be simply blocked just because it is HTML. > > if you want to be sure emails are being taken care off, us

OT:HTML Emails

2006-08-23 Thread Jim Wright
Does anyone know of a good technical reference for HTML Email best practices? I'm doing some HTML email newsletters for a client, and I'm trying to find out what kinds of things work best across email clients (basically, do I really need to dumb this down and rewrite things done as divs and cs

Re: Sorting by Column Headers

2006-08-23 Thread Jim Wright
Everett, Al (NIH/NIGMS) [C] wrote: > Well, yeah, because the form variables don't exist because you're not > submitting a form. > > There are a couple of ways I would attack this: > > 1. Cache the initial query to the session scope. Then do a query of > query to sort when one of the headers is cl

Re: creating a list from copy and pasted text from notepad...

2006-08-23 Thread Jim Wright
D F wrote: > Yah you're right it should be "\n" etc.. I tried both, no luck. > > I also tried search for the spaces, but no luck there either. > Try outputting the ascii of your var to see what it contains #i# - #asc(mid(myvar, i, 1)# ~~~

Re: SOT: grabbing remote images

2006-08-22 Thread Jim Wright
Bryan Stevenson wrote: > So does anyone have an automated method of grabbing those images form a > remote URL and saving them to our server's file system? > > I honsetly can't think of whether or not this is doable via CFHTTP...it's > been so long since I used it. > > Anyways...thanks in advan

Re: Getting todays orders?

2006-08-22 Thread Jim Wright
Will Tomlinson wrote: >> Sorry, I blanked on the fact that you were doing a QoQ there... use this >> (not a QoQ)... > > Dude, this works like a champ! Only one little problem left. THe date is ugly > in the cfchart. The data is all correct and grouped nicely tho'. > > Is there some way to chang

Re: Getting todays orders?

2006-08-21 Thread Jim Wright
> Jim, > > I get this error. > > Query Of Queries syntax error. > Encountered "(. Incorrect Select Statement, Expecting a 'FROM', but > encountered '(' instead, A select statement should have a 'FROM' > construct. > > Thanks, Will Sorry, I blanked on the fact that you were doing a QoQ there.

Re: Getting today''''''''s orders?

2006-08-21 Thread Jim Wright
Will Tomlinson wrote: >> Do you want to have a count or sum of the orders in the chart? > > A sum of the orders. I ALMOST have it with this. It's not grouping correctly > tho cause I have multiple rows for one particular day showing. > > > SELECT orderdate, ordertotal > FROM tblOrders >

Re: Quick CF & CSS question.

2006-08-20 Thread Jim Wright
could also use a .cfm file as the include... where style.cfm has a at the top of it. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Introducing the Fusion Authority Quarterly Update. 80 pages of har

Re: ColdFusion Time Capsule - Ft Collins DevCon 1998

2006-08-19 Thread Jim Wright
quot;push" technologies(not necessarily related, but using the terms seemed to be popular around the same time). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Introducing the Fusion Authority Quarte

Re: maxrows and group

2006-08-17 Thread Jim Wright
#Sub_cat# There is probably some more efficient way...the above might bog down a bit if you have lots of items in each category...I don't think there is a way to break out of the inner cfoutput like the cfbreak for a loop. -- Jim Wright Wrigh

Re: Select * in a view needs "recompiled"

2006-08-16 Thread Jim Wright
cedure when making changes...if you google on it, you can find scripts out there for looping through all views that reference a certain table and refreshing them. There is an option to create a view with SCHEMABINDING, but that actually locks the underlying structure, so you can't make change

Re: BlueDragon no seeing IIS on W2K3

2006-08-16 Thread Jim Wright
t; Eric, While you may get a good answer to your question here, it would be more appropriate for the BlueDragon list run by New Atlanta. You'll see a lot of the same faces over there, with the addition of some of the New Atlanta techs. http://www.newatlanta.com/products/bluedragon/self_he

Re: OT: MS SQL 2000

2006-08-15 Thread Jim Wright
ngs. (and don't choose the option to copy objects between SQL Servers in a previous step). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Introducing the Fusion Authority Quarterly Update. 80 pages

Re: SSL Certificates

2006-08-07 Thread Jim Wright
public perception is a factor, then I'd probably pay the VeriSign tax. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-

Re: OT ? Sql View Weird Item?

2006-08-07 Thread Jim Wright
specific error message? BTW, the CASE statements could be rewritten with COALESCE, which should be faster... COALESCE(classCartPrice.priceList,itemCartPrice.priceList,'0') AS priceList, COALESCE(classCartPrice.memberPriceList,itemCartPrice.memberPriceList,'0') AS memberPriceList -- Jim Wright Wright

Re: SQL Select date between two dates with possible NULL values.

2006-08-03 Thread Jim Wright
ght > was WHERE date > Effective_Date AND date < Deactive_Date, but that would not > work with the null values would it? > You could use COALESCE and some date in the future... WHERE date > Effective_Date AND date < COALESCE(Deactive_Date,'1/1/3000') or WHERE date &g

Re: Query problem with lists of values

2006-08-03 Thread Jim Wright
uid description deep_images table: deepimagesid someothercolumn deep_images_category table: deepimagesid uid Then you would query your table with something like: SELECT someothercolumn FROM deep_images a LEFT JOIN deep_images_category b ON a.uid = b.uid WHERE b.uid = #uid# -- Jim Wright

Re: Query problem with lists of values

2006-08-03 Thread Jim Wright
own quite a bit. It would be better to put category information into a separate table, if possible. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Introducing the Fusion Authority Quarterly Updat

Re: sql question.

2006-08-02 Thread Jim Wright
only > warranty\a, but don't get the other two (which makes me thing it is because > of the numbers in the string.. but doesn't make any sense). Please help > SELECT * FROM table WHERE CHARINDEX('\',thecolu

Re: CFIndex type=custom body

2006-08-02 Thread Jim Wright
> > I've already read that, but wanted to get a simpler translation. Does the > body tag tell the indexing which columns to include? I need a yes or not > answer and if no, what does it do. > Yes. -- Jim Wright Wright Business Solutions [EMAIL PRO

Re: Hey, does anyone have any ideas regarding a top 40 voting system?

2006-08-01 Thread Jim Wright
in a random order (random for each session, not the same random list for everyone). Rank would be based on yes votes/total votes for that particular song. They may get tired after 20, but since it is random, all the songs should get around the same level of exposure. -- Jim Wright Wright Busine

Re: CF and magentic stripe card reader

2006-07-31 Thread Jim Wright
, but it still was just keyboard input...no special interface required). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-t

Re: Why would this query do this?

2006-07-31 Thread Jim Wright
ou want). Order the query by insurance company, account, client, and then use the GROUP attribute of cfoutput to output the data. That would eliminate the cfloop and multiple trips to the db. -- Jim Wright Wright Business S

Re: Translation webservice?

2006-07-27 Thread Jim Wright
he only two that I know of that have a free website translation service (ie, put a link on your site, and it will allow visitors to view that page pseudo-translated). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~~~

Re: reading large text file

2006-07-26 Thread Jim Wright
> If you mean BCP then I would advise against it :-) it is not logged. BCP is logged...it can be minimally logged if certain criteria are met. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2

Re: copy sql table with indexes

2006-07-25 Thread Jim Wright
used them, but I do also give a big thumbs up to the Red Gate tools...but as Ben noted, they can be a little more powerful than you meant them to be if you aren't careful. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~

Re: copy sql table with indexes

2006-07-24 Thread Jim Wright
es). The create statements have the keys/indexes defined. And it will work with most popular databases out there (I'm using it for SQL 2005, SQL 2000 and MySQL 4 and 5...not sure if it will work with SQL 2005 Express). -- Jim Wright Wr

Re: SOT: card reader to interface with web browser

2006-07-24 Thread Jim Wright
the card is swiped, and you are all set. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information b

Re: WOT: Trying to delete messages from "Deleted Folders" in Outlook..."Folder is Full"???

2006-07-09 Thread Jim Wright
; Rick Do you have any add-ins installed(maybe a spam/virus filter)? Could be that an older add-in doesn't like the new architecture and is causing some conflict. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~

Re: Mortgage Formula

2006-07-05 Thread Jim Wright
check with your local lender for information." (from realtor.com) -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245446 Archives: http://w

Re: Mortgage Formula

2006-07-05 Thread Jim Wright
would also include escrow payments for taxes and hazard insurance (and possibly PMI). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:245

Re: OT: north carolinians at CFUNITED

2006-07-05 Thread Jim Wright
ion... unlike the olden days where it was concentrated up in Chapel Hill. The next meeting is going to be July 12th at Rudino's out in RTP. http://tacfug.org/ Keeping this on-list in case there are other locals who aren't in tacfug...and might want to be if the meetings are closer. Sorr

Re: T-Sql Division Help...

2006-06-30 Thread Jim Wright
pendent > queries and have CF do the division. > SELECT ((COALESCE(query1,0)) + (COALESCE(query2,0)) / 2) -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.co

Re: IFNULL in QoQ

2006-06-30 Thread Jim Wright
(NOT) NULL is supported, although COALESCE doesn't seem to be. Still, maybe you could do something like the following: select col1,col2 FROM sometable select '0',col2 FROM q1 where col1 IS NULL UNION select col1,col2 FROM q1 where col1 IS NOT NULL -- Jim Wright Wright

Re: House of Fusion Hacked?

2006-06-28 Thread Jim Wright
[EMAIL PROTECTED] designates 64.118.74.249 as permitted sender) Received: from LOCALHOST by LOCALHOST with ESMTP id 395B936BD7EB404C9EF78AEB73A85D46 Wed, 28 Jun 2006 08:50:05 -0400 -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-41

Re: vspider

2006-06-27 Thread Jim Wright
is in C:\CFusionMX7\verity\k2\_nti40\bin -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244879 Archives: http://www.houseoffusion.com/cf_lists

Re: Paste from Word Insanity!

2006-06-23 Thread Jim Wright
E 5.0 error html = html.replace( re, "" ) ; would make the output more to your liking. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cf

Re: FJAX - discuss amongst yourselves

2006-06-23 Thread Jim Wright
On 6/23/06, Andy Matthews <[EMAIL PROTECTED]> wrote: > http://www.fjax.net/ > While their site is down...here is some other reading material... http://www.webmonkey.com/06/25/index4a.html -- Jim Wright Wright Business Solutions [EMAIL PROTECTED]

Re: appending two queries

2006-06-22 Thread Jim Wright
logic could be encapsulated in a stored procedure, and the entire process could be handled in DTS (or as a pretty simple cfquery if using bulk insert). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Mess

Re: appending two queries

2006-06-22 Thread Jim Wright
ess it. Or possibly shell out to BCP.exe if you have that on the web server. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244574 Archives

Re: Image processing

2006-06-21 Thread Jim Wright
ot sure of their current state), but it is pretty easy to cfexecute. It supports around a hundred different formats (including PSD). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.h

Re: Recommendations: WYSIWYG/RTF applet that handles automatic image uploading...

2006-06-20 Thread Jim Wright
ut...however the tables were kept intact. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244303 Archives: http://www.houseoffusion.com

Re: virtual directory in IIS?

2006-06-14 Thread Jim Wright
.com/technet/prodtechnol/WindowsServer2003/Library/IIS/1805162e-6ac5-4a98-9a08-919c4c10827d.mspx?mfr=true -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/lin

Re: Batch file to Stop/Start ColdFusion MX...

2006-06-13 Thread Jim Wright
easy to turn on and off your dev environment while developing. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243402 Archives: http://www.hou

Re: SOT: Getting data into a web site

2006-06-13 Thread Jim Wright
line. I suppose the google spreadsheet is capturing the paste event and then parsing the input and putting the resulting fields in the correct places. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~~~

Re: TinyMCE GZip Compressor

2006-06-12 Thread Jim Wright
It means that an error is > happening somewhere in the Java. > Are you sure that your browser is announcing itself as accepting gzip? It would be odd for it not to be, but it looks like the java does test for that. BTW, in the interest of full disclosure, I don't have it working...I was going t

Re: TinyMCE GZip Compressor

2006-06-12 Thread Jim Wright
g late, so I might be a bit fuzzy on this...but wouldn't you expect to see the plain text? Isn't the unzipping of whatever files it has zipped up a browser function which happens in the background? -- Jim Wright Wright Busine

Re: Server firewall software

2006-06-12 Thread Jim Wright
filter/vpn (also has mail, http, ftp, etc...and you could probably install BD or MX on it!) -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:2

Re: RFC on my tentative database schema for a restaurant menu database

2006-06-09 Thread Jim Wright
raising or lowering the prices...rather than duplicating the item with a new price, you could tie it to the specific menu. -jim -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http

Re: Recordset Nav Question

2006-06-08 Thread Jim Wright
them using some variable to indicate the current position in the list (or array...or query). -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i

Re: OT: JS failing in IE

2006-06-06 Thread Jim Wright
On 6/6/06, Damien McKenna <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Jim Wright [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, June 06, 2006 5:27 PM > > > > IE is getting confused because you are using a variable "total_cases"

Re: OT: JS failing in IE

2006-06-06 Thread Jim Wright
count_cases').value; tc = (cases * aCase); document.getElementById('total_cases').innerHTML = tc; -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion

Re: CFSTUDIO THE CONCLUSION

2006-06-06 Thread Jim Wright
> Besides, I have no idea what CFE is .. > Constantly flowing emails? Continuing futile elocution? Couldn't forgo emailing? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242681 Archives: http://www.houseoffusion.com

Re: Verity and AND/OR

2006-06-06 Thread Jim Wright
>Is there a way around having to force the user to use AND/OR(or even >',') in their search string in Verity? > >In these days of "WYSIWYG" Google/Yahoo type searches, I just don't see >how I'm supposed to tell my users they have use those operators. Most >don't read anyways, so it would be sor

Re: Best Multipart File Upload Tool? Recommend ation Needed

2006-06-06 Thread Jim Wright
ord more, so we'll charge you more". Also note that the prices they list are not perpetual licenses, you have to renew each year, or pay 2.5X for a perpetual license. I wonder what happens to the perpetual license if your company grows? :) -- Jim Wright Wrig

Re: FDF and coldfusion

2006-06-06 Thread Jim Wright
y readily available code samples to give you for a demo, but if you can post what you have been trying, I might be able to see the problem. -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://

Re: Refresh a select list from child form

2006-06-05 Thread Jim Wright
self.close(); from memory...not tested... -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257 ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242476 Archives: http://www.houseoffusion.com/cf_lists

Re: ways to "time" a file upload?

2006-06-05 Thread Jim Wright
gt; An alternate version of this would be to do an asynchronous call on the onSubmit of the form, which calls a script that just sets some session variable to the start time. Then you can compare with that same session variable when the http post is finished and your upload page runs. -- Jim

Re: ISDEFINED for list member

2006-06-04 Thread Jim Wright
ow the number of list elements, you could just change that to: If the number of list elements is variable, you could use... If there are less elements in the list than the position you are looking for, the getToken function will return an empty string rather than an error. -- Jim Wright Wrig

Re: Generic database management tool

2006-06-04 Thread Jim Wright
On 6/4/06, Claude Schneegans <[EMAIL PROTECTED]> wrote: > >>I feel like these toolkit projects are probably more attuned to > performance and stability issues, as they are being used for some > fairly intense apps. > > Make no mistake, these tool kits (at least my ODBCMyAdmin) use a lot of > Javas

Re: MySQL query help

2006-06-03 Thread Jim Wright
I believe it would be... UPDATE contributors,contributor_sort SET contributors.namesort=contributor_sort.namesort WHERE contributors.name=contributor_sort.name -- Jim Wright Wright Business Solutions [EMAIL PROTECTED] 919-417-2257

Re: Generic database management tool

2006-06-03 Thread Jim Wright
een with various AJAX calendars running at the same time as gmail seem to validate that). I feel like these toolkit projects are probably more attuned to performance and stability issues, as they are being used for some fairly intense apps...whereas a cobbled together group of scripts might have u

<    1   2   3   4   5   6   >