Re: PostgreSQL vs. MSSQL

2007-01-10 Thread Matt Quackenbush
I just read through Chapter 7 of the PostgreSQL docs ( http://www.postgresql.org/docs/8.2/static/queries.html) regarding queries, and could find no examples or mention of a sub-query used in the select list. For example: SELECT t1.foo, (SELECT COUNT(t2.id) FROM tblTwo t2 WHERE t2.id = t1.id) AS

RE: JS and Radio Button Issue

2007-01-10 Thread Kevan Stannard
Hi Bruce, Something that you might want to look at is either the Prototype or jQuery (www.jquery.com) javascript libraries. They are just amazing in how they can manipulate a page. They are cross browser compatible too. For example, using jQuery you would write your code as follows (may not be

RE: JS and Radio Button Issue

2007-01-10 Thread Robertson-Ravo, Neil (RX)
I think what you have here is simply Prototype - you should not require jquery. -Original Message- From: Kevan Stannard [mailto:[EMAIL PROTECTED] Sent: 10 January 2007 09:27 To: CF-Talk Subject: RE: JS and Radio Button Issue Hi Bruce, Something that you might want to look at is

Re: Looking for Ray Camden's Application.cfc breezo

2007-01-10 Thread Assistenza Sito
http://ray.camdenfamily.com/presentations.cfm On 1/10/07, Mike Kear [EMAIL PROTECTED] wrote: I'm trying to find the excellent breeze presentation Ray Camden gave on Application.cfc - there's someone at my client's office i'd like to see it.Today it seems, google is NOT my friend because

Im a Flash nobie but need help

2007-01-10 Thread Dwayne Cole
I have been looking for a flash component that works like this www.fsu.edu but all the flash slideshows that I've found work for photo galleries. Does anyone no where I can find this or a list that I can post to. D. Cole ~|

Re: PostgreSQL vs. MSSQL

2007-01-10 Thread Jochem van Dieten
Matt Quackenbush wrote: I just read through Chapter 7 of the PostgreSQL docs ( http://www.postgresql.org/docs/8.2/static/queries.html) regarding queries, and could find no examples or mention of a sub-query used in the select list. quote 7.3.1. Select-List Items The simplest kind of select

Re: Looking for Ray Camden's Application.cfc breezo

2007-01-10 Thread Raymond Camden
Thanks for helping him Assistenza. I'm traveling this week so my online availability isn't great. (Hence the lack of 4-5 blog posts per day. Hopefully folks are enjoying a break from me. ;) On 1/10/07, Assistenza Sito [EMAIL PROTECTED] wrote: http://ray.camdenfamily.com/presentations.cfm On

Re: problems with cfqueryparam

2007-01-10 Thread Sigi Heckl
Hi there, I have a function which creates some xls-files and pack it into a zip-file. The created file is named 1234.zip and everything works correctly. Then I want to send this file with cfmail as an attachment. But when I receive the mail it contains a file named att54432.att which is

RE: App Organizational Question...

2007-01-10 Thread Peterson, Chris
Honestly, I would not rely on CGI.Anything to identify your users. Ask them to sign in once, or select their domain on the front end, and just create a cookie on their machine. If you have some other reason to stick with the CGI.HTTP_HOST, then I would look into doing a cfswitch statement,

retrieve db into variables

2007-01-10 Thread Daniel Kessler
I see, thank you for clarifying. I had wondered about the Variables scope. Then what is the advantage of explicitly putting them in the Variables scope if they automatically go in anyway? Is it the speed mentioned earlier? I'm only doing maybe 20 variables. And if I'm still referencing

cfdocument cutting off a row

2007-01-10 Thread Will Tomlinson
I've googled some and checked the archives but can't figure this out. It's just table rows outputting from my db. When they cross to the next cfdocument page, it cuts off the top, then the rest is on the next page. I've played with the margins but nothing seems to stop this. cfdocument

RE: cfdocument cutting off a row

2007-01-10 Thread Peterson, Chris
Did you apply the CFMX 7.02 updater yet? I believe this was addressed in that... Chris -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 7:18 AM To: CF-Talk Subject: cfdocument cutting off a row I've googled some and checked the

Re: slow query in cf but fast in Sql2k5 management studio.

2007-01-10 Thread Ken Wexel
I've seen this problem just recently when using a cfqueryparam as part of an IN () clause in my queries. With a large number of list values, the cfqueryparam version of the query took many times longer than using the list directly in the querydoesn't look like you have but a couple of values

Re: RDS in CFECLIPSE. What's Wrong?

2007-01-10 Thread Dwayne Cole
I did download the latest Flex. I am running eclipse 3.1 and cfeclipse 1.2. Are there any problems I should be concerned in making this switch? Plus should I try to unplug the all the rds plug-ins first? -- Original Message -- From: Tom Chiverton

cfeclipse lasted stable build?

2007-01-10 Thread Dwayne Cole
What's the lastest stable cfeclipse build and where can i find it? ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: cfeclipse lasted stable build?

2007-01-10 Thread Jacob Munson
http://www.markdrew.co.uk/blog/index.cfm/2007/1/9/How-to-get-CFEclipse-finally On 1/10/07, Dwayne Cole [EMAIL PROTECTED] wrote: What's the lastest stable cfeclipse build and where can i find it? ~| Create robust enterprise,

Re: cfeclipse lasted stable build?

2007-01-10 Thread Teddy Payne
http://www.cfeclipse.org/ On 1/10/07, Dwayne Cole [EMAIL PROTECTED] wrote: What's the lastest stable cfeclipse build and where can i find it? ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7

Re: Itext-Coldfusion Error

2007-01-10 Thread Janet MacKay
http://java.sun.com/docs/books/tutorial/java/javaOO/accesscontrol.html _Loosely_ translated, protected methods in the PdfWriter class can only be accessed by - another class within the (com.lowagie.text.pdf) package or - a subclass of the com.lowagie.text.pdf.PdfWriter class Short answer, you

Comparing a Number to a List in a Database

2007-01-10 Thread Brett Wiese
I need to compare a number to a list that is contained in a row in a database, to see if it's contained within the list, and therefor include it in the results. Using LIKE won't work in the long term beacuse it would also find 18 in 118 for example. I could use listfind() in the output of the

Client-Scope and Frames problem

2007-01-10 Thread Kris Jones
Hi all, We've got a page that calls a custom-tag that opens a frameset. The frameset has 2 frames, one displays a PDF, the other a form. Typically, the user is cycling through a set of images to look at and catalog. When they click on the submit button, which is outside of the frameset, (that

Re: Comparing a Number to a List in a Database

2007-01-10 Thread Gert Franz
Sure: look for: WHERE ',' + field + ',' Like '%,18,%' Greetings / GrĂ¼sse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deutsch: http://de.groups.yahoo.com/group/railo/ english:

A few Eclipse/CFEclipse questions...

2007-01-10 Thread Andy Matthews
So in my continuing task of learning Eclipse, I've got a few more questions... 1) in the CFEclipse (or any) perspective, is it possible to view invisible elements such as spaces and tabs? I could do this in Editplus and it was amazingly helpful. 2) In Editplus, I could pull launch either a

Re: Client-Scope and Frames problem

2007-01-10 Thread Teddy Payne
Kris, It seems the templates that are loaded into the framesets are stagnant long enough to time out. A quick suggestion, put a quick little JS updater or meta refresh to your templates inside of the framesets to refresh themselves prior to session timeout. I hope that helps, but I tend to agree

Re: A few Eclipse/CFEclipse questions...

2007-01-10 Thread Teddy Payne
1) Not sure, I will have to investigate. 2) Yes, Ctrl-F to open search box to Find and Replace. You do not have to close the window to edit the code. Ctrl-K to go to next related search criteria. You can change the key bindings for these by going to windows Preferences General Keys and then

Re: A few Eclipse/CFEclipse questions...

2007-01-10 Thread Barney Boisvert
Can't help you with #1. I don't know a way to do #2 either, but you can leave the box open, do your edits, and then hit CTRL-F again to refocus the box without the mouse. Also don't discount the 'incremental' checkbox on the find dialog. Also, there's a separate incremental find feature

Re: Comparing a Number to a List in a Database

2007-01-10 Thread Brett Wiese
I had considered something like that, but I did not know you could modify the existing entires in the database to add commas within the CFQUERY. Thanks for the very quick response! On 1/10/07, Gert Franz [EMAIL PROTECTED] wrote: Sure: look for: WHERE ',' + field + ',' Like '%,18,%'

Re: Client-Scope and Frames problem

2007-01-10 Thread Kris Jones
It seems the templates that are loaded into the framesets are stagnant long enough to time out. Well, if this were true, we'd be having a lot worse problems. The session timeout issue occurs even if I immediately submit the form. Nothing is actually, really, timing-out. Generally, I hate

Re: Comparing a Number to a List in a Database

2007-01-10 Thread Scott Weikert
I used to do just this sort of thing. Issue was, if the item you were looking for was at the start or end of the list, i.e. 1,2,3, you couldn't find it using '%,1,%'. So I would toss on extra commas (or whatever character I was using as a delimeter, like a pipe) on each end of the list string

Interview Joe Rinehart - Model Glue 2.0, CFWeekly Contest...

2007-01-10 Thread Michael Smith
In this week's Newsletter: * New Frameworks Conference Topics/Changes * Announcing CFWeekly contest * Foosball Tournament at Frameworks Conference evening event * Frameworks Hotel discount code cut-off date 01/09/07 * Frameworks Classes Contest ends 1/26/07 * Future of Fusebox survey due 1/12/07

Problems with CFFile. Error 997 Overlapping I/O

2007-01-10 Thread J W
Here is a strange one.. I have to copy files from on server to another using cffile. Under CFMX 6.1I just changed the CF services to login to an account that had rights to copy files from on server to another. Simple and easy. Now with CF7, I attempt to change the account to something other than

CFMAIL and SSL Google Apps for your Domain.

2007-01-10 Thread David Mineer
Is it still not possible to use SSL and CFMAIL. I want to use CFMAIL to connect to a gmail account and send emails. I am trying to integrate with Google Apps for your Domain. I have seen this article:

RE: App Organizational Question...

2007-01-10 Thread Rick Faircloth
I think you're right... I'll probably use the login of the user to identify them in the database and just put the DSN and website they're updating in the db... Just thought there might be a more automated way to do this with CGI variables, but I've seen that they're apparently not

how to make code display as text

2007-01-10 Thread Daniel Kessler
I have a web page where I describe how to use bits of code. I don't want the code to enact, but to just display the actual line of code. I thought that changing the file to .html will do it cause it won't go through the CF Server. But the html code is in a frameset that IS .cfm. I

Re: how to make code display as text

2007-01-10 Thread Barney Boisvert
htmlEditFormat() will escape all HTML metacharacters into their corresponding HTML entities, so they won't be interpreted by the browser. Probably want to drop the result into a DIV that has white-space:pre set on it to preserve formatting. cheers, barneyb On 1/10/07, Daniel Kessler [EMAIL

Re: how to make code display as text

2007-01-10 Thread Charlie Griefer
look up HTMLEditFormat() in the docs. Under string functions. On 1/10/07, Daniel Kessler [EMAIL PROTECTED] wrote: I have a web page where I describe how to use bits of code. I don't want the code to enact, but to just display the actual line of code. I thought that changing the file to .html

Re: how to make code display as text

2007-01-10 Thread daniel kessler
well I didn't get that to work, at least not right away. But it got me thinking and this did work: lt;cfinclude template=../common/include3.cfmgt;br Without the brackets, it's not interpreted. htmlEditFormat() will escape all HTML metacharacters into their corresponding HTML entities, so they

RE: how to make code display as text

2007-01-10 Thread Bobby Hartsfield
pre#replace(code, , lt;, all)#/pre -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 11:38 AM To: CF-Talk Subject: how to make code display as text I have a web page where I describe how to use bits of code. I don't want the code to

Using CFC to get image information, takes for ever.

2007-01-10 Thread heath stein
I'm currently working on a site were user submit information to be used in auction catalogs. The user is required to submit high rez images for the catalog. I'm using the image.cfc to get the image size in pixels and file size. We can then give the user some feed back and tell them if the image

RE: Getting changed fields from database using an audit table

2007-01-10 Thread Doug Bezona
Thanks Richard - this is just what I need, but there's a small bug. The NewValue field is outputting the name of the field and not its value. T-SQL is not something I have a lot of experience with, and I've been digging through the docs to see if I can figure out a solution, but no luck so far.

CFGRID and returning value from currently selected row

2007-01-10 Thread Tim Claremont
I am using a flash form, and trying to fight my way through the href nightmare. No matter what I try, I cannot double click on a row and get it to open a detail page containing the information in that row. I have tried changing from a flash format to an applet to XML, etc etc etc. Nothing seems

Re: Comparing a Number to a List in a Database

2007-01-10 Thread Jon Clausen
Brett, If both the list and the number are in the database, you can use: SELECT number FROM table WHERE number IN (SELECT number_list FROM other_table WHERE list_id = #list_id#) If it's not in the database you can use the following: SELECT list_id FROM other_table WHERE #numberVar# IN

Re: how to make code display as text

2007-01-10 Thread Charlie Griefer
but that's exactly what HTMLEditFormat() does. it escapes the brackets. can you clarify didn't get that to work? On 1/10/07, daniel kessler [EMAIL PROTECTED] wrote: well I didn't get that to work, at least not right away. But it got me thinking and this did work: lt;cfinclude

Re: CFMAIL and SSL Google Apps for your Domain.

2007-01-10 Thread Jochem van Dieten
David Mineer wrote: Is it still not possible to use SSL and CFMAIL. In general I would recommend against the conbination of SMTP and SSL. There are just too many broken implementations out there that will advertise to support it while they really don't. I want to use CFMAIL to connect to a

Web application (CF) and VOIP

2007-01-10 Thread Mehdi, Agha
Hi All, Just wanted to know if anyone here on the list has experience in VOIP setup for incoming calls integrating with webservices/web applications. Thanks Agha Mehdi IDT - eBusiness Program Manager Work: 408.284.8239 Cell : 510.493.0491 Fax : 408.284.2766

Re: PostgreSQL vs. MSSQL

2007-01-10 Thread Matt Quackenbush
Sweet! Sorry about that Jochem, I read the one Chapter (7), but didn't follow the referenced links. Obviously, I should have. Thanks, Matt ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with

Re: Using CFC to get image information, takes for ever.

2007-01-10 Thread Alan Rother
Just to ask the question Is it a one step process here, such as, User Fills Out Upload Form User Hits Submit Browser Uploads Very Large Images User Sees feedback page I guess my question is, where is it taking forever? The Upload or the CFC reading the image? Does it take a long time to

Flex?

2007-01-10 Thread Richard White
Hi, i have developed my web application using coldfusion, xhtml, and javascript but have been told that flex produces much more interactive web applications.just wondering if i could get some advice on what you guys think. is it worth the effort transferring my app to flex, or what things

Re: A few Eclipse/CFEclipse questions...

2007-01-10 Thread Jacob Munson
2) Yes, Ctrl-F to open search box to Find and Replace. You do not have to close the window to edit the code. Ctrl-K to go to next related search criteria. You can change the key bindings for these by going to windows Preferences General Keys and then look for the command Find Next.

CFMX datasource connection metric

2007-01-10 Thread Alex DeMarco
We have CFMX 7 deployed in a Jrun instance. I need to be able track the number of connections in use for a given CFMX datasource. I have metric turned on in Jrun and can succesfully track a Jrun data source via: attribute name=metricsFormatJDBC timeouts: {jdbc.suny_enrollmgt.timeouts} pool

Re: Using CFC to get image information, takes for ever.

2007-01-10 Thread heath stein
Well the users are uploading high rez images so the uploading is slow, but I figure there is not much I can do about that? My problem is that it takes a long time to get back the information on each of the uploaded images. There is a confirmation page that shows all the images that the user has

Re: CF7 trim/padding of sql case statement

2007-01-10 Thread Jen N
Teddy, No interuption at all, I appreciate the response :) Anyway, for now, that is exactly how we're handling it. We just decided to put a trim on the coldfusion side. After talking to some database folk it seems to be a known Oracle JDBC driver issue. I'm not sure if there are

RE: CFMX datasource connection metric

2007-01-10 Thread Dave Watts
We have CFMX 7 deployed in a Jrun instance. I need to be able track the number of connections in use for a given CFMX datasource. I have metric turned on in Jrun and can succesfully track a Jrun data source via: attribute name=metricsFormatJDBC timeouts: {jdbc.suny_enrollmgt.timeouts}

RE: Number to currency words

2007-01-10 Thread Everett, Al \(NIH/NIGMS\) [C]
Try DollarAsString http://www.cflib.org/udf.cfm?ID=58 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 08, 2007 11:53 AM To: CF-Talk Subject: Number to currency words Is there anything out there that will take a number and convert it to words

RE: Number to currency words

2007-01-10 Thread Everett, Al \(NIH/NIGMS\) [C]
Of course, if you wanted to roll your own, judicious use of NumberAsString() should serve you well. -Original Message- From: Everett, Al (NIH/NIGMS) [C] Sent: Wednesday, January 10, 2007 3:06 PM To: CF-Talk Subject: RE: Number to currency words Try DollarAsString

Re: CFMX datasource connection metric

2007-01-10 Thread Alex DeMarco
We have CFMX 7 deployed in a Jrun instance. I need to be able I think you can use JRun datasources directly within CF. You could change your CF datasources to JRun datasources for monitoring purposes. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the

RE: 64-bit

2007-01-10 Thread Jason Manaigre
Hi everyone, is CF 8 officially going to have a 64-bit version? Jason E.J. Manaigre Web Site Development Coordinator | Web God International Institute for Sustainable Development Winnipeg, Manitoba, Canada Main Web site: http://www.iisd.org Email: mailto:[EMAIL PROTECTED] | Phone:

vulnerability: source code disclosure (apsb07-02)

2007-01-10 Thread Chris Norloff
my email to Adobe (anybody experience similar?): Your instructions for ColdFusion MX 7.01 and 7.02 server in http://www.adobe.com/support/security/bulletins/apsb07-02.html don't appear to be correct. It specifies looking for a file in {jrun_root}, but there wouldn't be a jrun_root on a single

Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Matt Quackenbush
Hello, I have a heavily used and ever-growing MS SQL database that I would like to transfer over to PostgreSQL. It is currently 143mb (plus about 67mb in log files). The database is relatively basic, in that it does not currently use any stored procedures, and the tables makeup is pretty

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Matt Quackenbush
I have found this software, but it appears to be brand new. Has anyone had any experience with it? Or with something similar that you would recommend? http://www.download3k.com/Business-Finance/Database-Management/Download-MS-SQL-Server-PostgreSQL-Import-Export-Convert-Software.html

RE: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Joshua Cyr
I have used Aqua Data Studio for just that task. (mysql and mssql to postgre). I had to do it table by table, but I did it for millions of records with relative ease. Export to delimited text file or file with insert statements, then import to the other db. http://www.aquafold.com/ Joshua Cyr

CFHeader No Cache Sanity Check

2007-01-10 Thread Mark Leder
I don't know if its just me or the code I've used for a while, but seems like since the first of this year (or thereabouts) IE (6 or 7) seems to ignore page caching instructions and caches pages. (I'm not seeing this behavior in FF). Wondering if a MS Patch has caused a problem or if others have

sliding on image

2007-01-10 Thread Richard White
Hi, i have an image that is bigger than the tablecell of the interface that it will fit in. I would like the users to be able to scroll left, right, up and down to view the rest of the image that is not entirely in view firstly i would like to know how i can fit an image into a specified

Re: Flex?

2007-01-10 Thread Robertson-Ravo, Neil (RX)
Horses for courses matey, some say Flex is good, some say it's shit. I am sure your app is as good as what you could develop on Flex. Stick with yours. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Jim Wright
Joshua Cyr wrote: I have used Aqua Data Studio for just that task. (mysql and mssql to postgre). I had to do it table by table, but I did it for millions of records with relative ease. Export to delimited text file or file with insert statements, then import to the other db.

RE: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Joshua Cyr
Wasn't Aqua Data Studio free at one point? I swear I didn't buy it... but could be forgetting. I don't do the warez thing, so either it was legitimately free at one point or very inexpensive or I am losing too many brain cells on WOW. -Original Message- From: Jim Wright [mailto:[EMAIL

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Jim Wright
Joshua Cyr wrote: Wasn't Aqua Data Studio free at one point? I swear I didn't buy it... but could be forgetting. I don't do the warez thing, so either it was legitimately free at one point or very inexpensive or I am losing too many brain cells on WOW. Prior to the current version 6, it

Re: CF7 trim/padding of sql case statemen

2007-01-10 Thread Teddy Payne
No worries! Cheers, Teddy On 1/10/07, Jen N [EMAIL PROTECTED] wrote: Teddy, No interuption at all, I appreciate the response :) Anyway, for now, that is exactly how we're handling it. We just decided to put a trim on the coldfusion side. After talking to some database folk it seems to

Re: vulnerability: source code disclosure (apsb07-02)

2007-01-10 Thread Teddy Payne
Chris, I am not sure I understand. In the bulletin, it offers three different configuration installations. One for single server, multi-server JRun updater 5 and JRun Updater 6. It has been a while since I did a single server installation as I tend to use multi-server as my defacto, but I

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Matt Quackenbush
Joshua, Thanks for the pointer and the link. Jim, Are you referring to v6 RC1? That's all I've seen so far on their site. Thanks, Matt On 1/10/07, Jim Wright [EMAIL PROTECTED] wrote: Joshua Cyr wrote: Wasn't Aqua Data Studio free at one point? I swear I didn't buy it... but could

More Eclipse/CFEclipse questions...

2007-01-10 Thread Andy Matthews
1) Editplus has a pane splitter which allows you to view completely different portions of code on the same page, at the same time. Does Eclipse have this? Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax:

Re: Flex?

2007-01-10 Thread Alan Rother
Gotta aggree with Neil. Generally speaking of course, whatever you did it in is probably the best thing to write it in. Flex is a pretty awesome tool, but like any other tool it has it's purposes and it's not meant to be used for everything. You wouldn't want to build a website in it for

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Jim Wright
Matt Quackenbush wrote: Jim, Are you referring to v6 RC1? That's all I've seen so far on their site. Yes, I believe that is the latest version...but I think the 4.7 version also had the export capability I was describing. I went ahead and started using the RC because I wanted to use the

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread David Livingston
Here is what I have done in the past. Use enterprise manager to script out the tables to a sql script. Then do a find an replace on the script to convert the data types and remove all of the MS specific stuff. Once you have a good generic SQL script run it on postgres to create all of your

Re: More Eclipse/CFEclipse questions...

2007-01-10 Thread Teddy Payne
If you use a versioning tool that supports SVN or CVS, you can compare native code with checked in code. Natively, CFEclipse has a built in diff to outline when lines are edited where the line numbers are. CFEclipse allows you to drag files up and down so that you can have a split pane view

Re: More Eclipse/CFEclipse questions...

2007-01-10 Thread Barney Boisvert
You can open multiple editor instance for a single document by right clicking on the editor tab and selecting new editor. Then just drag the second editor into position below the first editor. cheers, barneyb On 1/10/07, Andy Matthews [EMAIL PROTECTED] wrote: 1) Editplus has a pane splitter

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Matt Quackenbush
Am I correctly understanding what I'm reading on their site that Aqua Data Studio supports ALL of the listed databases in the same client? (As opposed to having a different one for each DB?) ~| Create robust enterprise, web

RE: More Eclipse/CFEclipse questions...

2007-01-10 Thread Andy Matthews
Hmmm...that's not quite what I was looking for Barney, but that might suffice. Thanks everyone. I'll give the New Editor trick a try. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 4:10 PM To: CF-Talk Subject: Re: More

Re: sliding on image

2007-01-10 Thread Claude Schneegans
i would like to know how i can add scroll bars for the users to scroll around the image Look at overflow style. Probably add some style=overflow: scroll to the TD in your table, or may be to some DIV inside the TD. -- ___ REUSE CODE! Use custom tags; See

Re: Flex?

2007-01-10 Thread Richard White
that sounds like good advice thanks. just thought id get some opinions but it makes sense what your saying. thanks again ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Jim Wright
Matt Quackenbush wrote: Am I correctly understanding what I'm reading on their site that Aqua Data Studio supports ALL of the listed databases in the same client? (As opposed to having a different one for each DB?) Yes...it is very nice having the same interface for multiple database

Re: Looking for Ray Camden's Application.cfc breezo

2007-01-10 Thread Mike Kear
Thanks Ray and Assistenza. I've passed it on to the colleague. I figured it was far better to have Ray Camden explain this stuff to my colleague than to try to do it myself. Also I can get on with my work while Ray talks to him. And the best thing - while he's sitting at his desk with his

Re: sliding on image

2007-01-10 Thread Richard White
thanks very much claude ill look into it ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with Flex 2

Flash Forms size limit

2007-01-10 Thread Jacob Munson
I've got a large Flash form in the works that is about half done (it will get significantly larger as I finish). Yesterday the form stopped loading (blank screen, always gives you a warm and fuzzy feeling). A peek in the CF logs says this: Member function init is larger than 32K. A colleague of

Re: CFHeader No Cache Sanity Check

2007-01-10 Thread James Holmes
Is there a reason to set http-equiv meta tags when you are setting the actual headers already? On 1/11/07, Mark Leder [EMAIL PROTECTED] wrote: I don't know if its just me or the code I've used for a while, but seems like since the first of this year (or thereabouts) IE (6 or 7) seems to ignore

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Jon Clausen
On Jan 10, 2007, at 5:13 PM, Matt Quackenbush wrote: Am I correctly understanding what I'm reading on their site that Aqua Data Studio supports ALL of the listed databases in the same client? (As opposed to having a different one for each DB?) Yes. It rocks! Dave L's instructions are

Re: More Eclipse/CFEclipse questions...

2007-01-10 Thread Tom McNeer
Teddy, On 1/10/07, Teddy Payne [EMAIL PROTECTED] wrote: CFEclipse allows you to drag files up and down so that you can have a split pane view horizontally, vertically or multiple overlaying panes to split. Do you mean you can have a split-pane view of the same file in the same editor

Re: Flex?

2007-01-10 Thread Richard White
Hi, i was just wondering. I got a link before: http://www.cynergysystems.com/blogs/page/andrewtrice?entry=gantt_charts_in_flex_datagrids which shows how to implement flex grids that are like gantt charts. This is exactly what i need however i cant seem to find exactly how i can use flex

Re: More Eclipse/CFEclipse questions...

2007-01-10 Thread Jacob Munson
CFEclipse allows you to drag files up and down so that you can have a split pane view horizontally, vertically or multiple overlaying panes to split. Do you mean you can have a split-pane view of the same file in the same editor instance, the way you could in Homesite? If so, could

RE: Flex?

2007-01-10 Thread Brad Wood
I'm sure people here will tell you what they know, but you might find more people with knowledge of Flex on the Flex mailing list for what it's worth. http://www.houseoffusion.com/groups/flex/ ~Brad -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: More Eclipse/CFEclipse questions...

2007-01-10 Thread Tom McNeer
Hi Jacob, Thanks for your response. On 1/10/07, Jacob Munson [EMAIL PROTECTED] wrote: Right click the editor tab for the one you want to split view and click New Editor. But is this simply another view? Isn't it essentially another copy of the file contents? I could be wrong, but I thought

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Matt Quackenbush
Sweet (regarding the single interface)! Jon, I was under the impression that varchar() was still a valid datatype in Postgre, and would not require changing to 'character varying'. http://www.postgresql.org/docs/8.2/static/datatype-character.html Am I mis-reading that? Dave, Thanks for the

Re: More Eclipse/CFEclipse questions...

2007-01-10 Thread Jacob Munson
Yes, it's just another view of the same file, so if you change one half the other is updated. Personally I just use this feature for looking at two different parts of the file, and I don't care to keep the 'old version' when I make edits. One weird thing, when you do make the edits in one side,

Re: sliding on image

2007-01-10 Thread Casey Dougall
#PicDiv DIV { width:150px; height:335px; overflow: auto; } div ID=PicDiv img src=Image.png alt= / /div Don't forget to figure in 20 px for the scroll bar. Margin Padding settings in the above css would take care of that. Casey On 1/10/07, Richard White [EMAIL PROTECTED]

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread Jon Clausen
No you're right - now days. I've had some issues with older drivers where they would throw a syntax error on me so I always use character varying with Pg just to be on the safe side. On Jan 10, 2007, at 6:10 PM, Matt Quackenbush wrote: Sweet (regarding the single interface)! Jon, I was

Re: Transferring from MS SQL (2000) to PostgreSQL

2007-01-10 Thread David Livingston
I concur with Jon. I'd use Character Varying. Dave On Jan 10, 2007, at 5:31 PM, Jon Clausen wrote: No you're right - now days. I've had some issues with older drivers where they would throw a syntax error on me so I always use character varying with Pg just to be on the safe side. On Jan

Re: Flex?

2007-01-10 Thread Casey Dougall
Well, if you are looking for Gantt Charts how about Shlomy's Custom Tag? http://www.shlomygantz.com/customtags/CF_Gantt20/gantt_readme.cfm Casey ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7

RE: CFHeader No Cache Sanity Check

2007-01-10 Thread Mark Leder
Don't know. If they are of equal value I suppose one or more should be deleted. But which one(s)? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 5:43 PM To: CF-Talk Subject: Re: CFHeader No Cache Sanity Check Is there a reason to set

Re: CFHeader No Cache Sanity Check

2007-01-10 Thread James Holmes
Use the cfheaders and remove the meta tags. On 1/11/07, Mark Leder [EMAIL PROTECTED] wrote: Don't know. If they are of equal value I suppose one or more should be deleted. But which one(s)? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10,

RE: sliding on image

2007-01-10 Thread Bobby Hartsfield
Make that overflow:auto; -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 5:21 PM To: CF-Talk Subject: Re: sliding on image i would like to know how i can add scroll bars for the users to scroll around the image Look at overflow

Re: Looking for Ray Camden's Application.cfc breezo

2007-01-10 Thread Raymond Camden
I have to admit - that is a bit freaky to read. ;) On 1/10/07, Mike Kear [EMAIL PROTECTED] wrote: Thanks Ray and Assistenza. I've passed it on to the colleague. I figured it was far better to have Ray Camden explain this stuff to my colleague than to try to do it myself. Also I can get on

  1   2   >