Re: Adding Small sections of a query

2007-10-01 Thread Azadi Saryev
it should make no difference how many records you have in your table. Dale's code will return the results you want. Azadi Travis Haley wrote: Yes that works if there is only these three entries in the database however there are more than three here is a full sample of data Check_Num,

Re: Adding Small sections of a query

2007-10-01 Thread Azadi Saryev
depending on your database, you should have various functions available to you to extract just the date part from your datetime field. like DATE(yourdatefield) in mysql, for example... Travis Haley wrote: But I need the date, should I run this in a second query? Travis Haley -Original

CF8 get cfgrid totalrowcount with ajaxonload() function

2007-10-02 Thread Azadi Saryev
to fire too early, before the data is loaded into the grid... is this because of the grid being bound to a cfc? (i am trying to bind it to a js instead but am having separate issues with that...) any help will be very much appreciated... -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: How to determine Imagesize in Kilobyte?

2007-10-02 Thread Azadi Saryev
look up cfdirectory tag Azadi Stivn .. wrote: Hi all, i want to know how i can determine the imagesize in kilobyte of an existing image? I can select the path to the image from the database, now i need only the imagesize. Thanks in advance Nic.

Re: br / In Database but I can't retrieve it?

2007-10-02 Thread Azadi Saryev
am i correct to assume you are trying to display your text in a textarea? if it is not an FCKEditor-enabled text area, then it will not render your br /... you will have to replace all br / with #chr(13)# (or is it #chr(10)#? or both?... can't remember right now - too early in the morning

Re: code not working

2007-10-03 Thread Azadi Saryev
you can. try: cfqueryparam cfsqltype=cf_sql_varchar value=#form.availabletest# list=yes instead of your #form.availabletest# but i think you should also do: INNER JOIN dbo.People AS p ON p.people_Id = ps.peopleSummary_peopleId WHERE peopleSummaryPeriod =

ajaxonload() problem

2007-10-03 Thread Azadi Saryev
('resultsGrid'); var mygridData = mygrid.getDataSource(); var ttlrecords = mygridData.getTotalCount(); //var ttlrecords = mygridData.totalLength; alert(ttlrecords); //document.getElementById('ttlrows').innerHTML = ttlrecords; } -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: ajaxonload() problem

2007-10-04 Thread Azadi Saryev
but the call to get the data hasn't occurred yet. Since binded data is paged, it would return the wrong count anyway. If your grid is not using binding, then im not sure. Regards Dale Fraser http://learncf.com -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent

Re: ajaxonload() problem

2007-10-04 Thread Azadi Saryev
/07, Azadi Saryev [EMAIL PROTECTED] wrote: Thanks for your reply, Dale! yes, my cfgrid is bound to a cfc and you say it won't work then?... hmm... there must be a way if i understand you correctly: ajax UI stuff is loaded and rendered first, and then any data is loaded into ajax

Re: ajaxonload() problem

2007-10-04 Thread Azadi Saryev
Brian Kotek wrote: Hmmno idea on this one. I've never seen this error before. Any other info you can provide? i am making a sample app for you, but for now here the stack of AJAX debugger. Check out the error line in the middle of stack... a bit of info: from bottom of stack up: -

Re: ajaxonload() problem

2007-10-04 Thread Azadi Saryev
Brian Kotek wrote: Hmmno idea on this one. I've never seen this error before. Any other info you can provide? here are sample cfm cfc files... Azadi PS: not sure if i can attach files to posts to this list let's see... cfparam name=FORM.CompanyID default= cfparam

Re: ajaxonload() problem

2007-10-04 Thread Azadi Saryev
Dang! the damn things has instead put the files in-line! oh well... i hope you can see where cfm code ends and cfc starts Azadi ~| Enterprise web applications, build robust, secure scalable apps today - Try it now

Re: ajaxonload() problem

2007-10-05 Thread Azadi Saryev
Wow! That simple! Looking at it now I can't believe I didn't try that before... I can't say Thank you enough times, Brian! Azadi Brian Kotek wrote: Actually, it looks like using the callback won't work, but the solution looks even easier, just do it right in your function: getSearchResults

Re: please help with CF8 install

2007-10-10 Thread Azadi Saryev
looking for two days now. -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now http://download.macromedia.com

Re: Why does this code disable styling?

2007-10-10 Thread Azadi Saryev
use REReplace() with a regex to replace spaces only outside and . will write one for you later if nobody else does... Azadi Rick Faircloth wrote: No, it's just text with the b style=color:red;SITE DEVELOPMENT/b around it. But after looking at the source I figured out what was going on.

Re: CFGRID Select Row

2007-10-11 Thread Azadi Saryev
i am working on the same issue... will post my findings [if any...] later... Azadi Dale Fraser wrote: Anyone know how to programmatically select a row in a grid. Sometimes you want to refresh the grid and then upon refresh select a specific row. Regards Dale Fraser

Re: CFGRID Select Row

2007-10-11 Thread Azadi Saryev
well, that's all good and all, but how about pre-selecting a specific row??? your code will return record store of the selected row... how about when no row is yet selected??? Azadi Andrew Scott wrote: Dale, Should read my blog more then:-) If you followon from my Grid example, and use

Re: CFGRID Select Row

2007-10-11 Thread Azadi Saryev
@ {cfwebroot}/CFIDE/scripts/ajax/ext/docs/output/Ext.grid.RowSelectionModel.html Azadi Saryev Dale Fraser wrote: Anyone know how to programmatically select a row in a grid. Sometimes you want to refresh the grid and then upon refresh select a specific row. Regards Dale Fraser

Re: CFGRID Select Row

2007-10-12 Thread Azadi Saryev
well, the full local docs are at {cfwebroot}/CFIDE/scripts/ajax/ext/docs/ they are frames-based, like the online ones, and i pasted the link to the actual info frame only. in the full docs interface, expand API Reference - Ext - grid to get to the main grid section hth Azadi Saryev Sabai

Re: Why does this code disable styling?

2007-10-12 Thread Azadi Saryev
do you always only have b .../b formatting in yout text, or can it be any html tag (hope not)? Azadi Rick Faircloth wrote: Hmmm... CF_REextract looks useful, but the problem is that I'd have to know enough regex to tell it what RE1 and RE2 should be. If I knew that, I could probably

Re: Is This Possible??

2007-10-14 Thread Azadi Saryev
without knowing your type of rdbms used, exact data schema and how your 3 tables are linked to each other it is not possible to give you an exact solution. but in general, i would suspect that you will need to INNER JOIN your training and emplyoees tables and LEFT OUTER JOIN your employees

Re: Why would this query not return the correct data?

2007-10-14 Thread Azadi Saryev
is this select distinct event_day from weekly_schedule order by event_day your actual sql statement, or just a 'simplified' version for the mailing list? Rick Faircloth wrote: @ All... This is just nuts... I can run this sql in an editor and get the correct results: select distinct

Re: Why would this query not return the correct data?

2007-10-15 Thread Azadi Saryev
to convert to a day of the week. Which worked fine in MySQL 4.1 and CF 4.5. ??? Rick -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Sunday, October 14, 2007 10:17 PM To: CF-Talk Subject: Re: Why would this query not return the correct data

Re: DataGrid with Dynamic Link

2007-10-15 Thread Azadi Saryev
read up on how to use hrefkey attribute of cfgridcolumn tag. you are using it wrong. there is no column named ID that it is tied to. -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| ColdFusion 8 - Build next

Re: DataGrid with Dynamic Link

2007-10-15 Thread Azadi Saryev
can answer my question on where the details show, ie pod, div or window (ajax or html) types then I can assist. Regards Dale Fraser http://learncf.com -Original Message- From: Azadi Saryev [mailto:[EMAIL PROTECTED] Sent: Tuesday, 16 October 2007 11:23 AM To: CF-Talk Subject

Re: parsing problem

2007-10-22 Thread Azadi Saryev
try this one: rereplace(web_export, (.[^,]*),[[:space:]]+(.[^\n]*)(.[^\n]*)[[:space:]]*(.[^\n]*), \1|\2|\4br, ALL) i used the br in replaced string to visually separate lines on screen. change it to \n or whatever you need to. cheers, Azadi -- Azadi Saryev Sabai-dee.com http://www.sabai

Re: CFGRID row color

2007-10-22 Thread Azadi Saryev
check out this Ray's blog post: http://www.coldfusionjedi.com/index.cfm/2007/8/20/Custom-grid-renderers-with-CFGRID Azadi Asim . wrote: In the HTML CFGRID, is there a way to change the background color of a row dynamically? For example, if I had a list of tasks, I'd like to change the

Re: coldfusion query problem

2007-10-22 Thread Azadi Saryev
why do you need to use cast? can't you just use cfqueryparam cfsqltype=cf_sql_integer value=#form.test#? -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Check out the new features and enhancements in the latest

Re: cfdiv and anchors

2007-10-28 Thread Azadi Saryev
put your list of links in a regular scrollable div same hight as your cfdiv - you will then scroll links within your new div instead of with the whole page, and your both divs will be always visible. Azadi Chris Smith wrote: I'm have a issue with anchoring to a cfdiv area. Basically I

Re: SOT: Where to buy CF8 WACK (probably again)

2007-11-05 Thread Azadi Saryev
my order at amazon.ca shows Nov 22 - Dec 07 as estimated delivery dates after initial delay announced on Oct 16. i guess i will get a new delay notice soon... -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: Quirk in CFEclipse?

2007-11-05 Thread Azadi Saryev
no problem when i open the file in the Eclipse's RDS FileView view... -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Re: cfoutput group with totals

2007-11-08 Thread Azadi Saryev
yes - put the code in the proper place - the outer cfoutput - like in Janet's example -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Get involved in the latest ColdFusion discussions, product development sharing

Re: Quirks using cfdiv

2007-11-08 Thread Azadi Saryev
field in the FIRST ROW of you query's resultset ONLY. -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www.adobe.com

Re: greying out part of a form

2007-11-08 Thread Azadi Saryev
attributes of the container div. -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now http://download.macromedia.com/pub

Re: extra lines in rss

2007-11-09 Thread Azadi Saryev
have you tried cfprocessingdirective suppresswhitespace='yes' at the top of your page? -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Enterprise web applications, build robust, secure scalable apps today - Try

Re: Determing last record in a loop

2007-11-09 Thread Azadi Saryev
set some counter var and increment it by 1 with each loop iteration. compare it to query.recordcount to see if current record is the last one -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| ColdFusion 8 - Build next

Re: cfgrid showing number of records

2007-11-12 Thread Azadi Saryev
to build a full showing records X - Y of Z records thingy... of course, that thingy will be outside of the grid... hth, and hope it is not too jumbled to understand... -- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: Problems with CFMAIL

2007-11-15 Thread Azadi Saryev
other person is not - check mail relay is enabled on corresponding mail server hth Azadi Saryev ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta - Build next

Re: Problems with CFMAIL

2007-11-15 Thread Azadi Saryev
in cf admin - i think cf8 allows that - a different one, i.e. your other hosted mail server, or even gmail (you can do in cf8 since it has support for TSL/SSL connections) -- --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: cfinput type=file accept=application/msexcel

2007-11-16 Thread Azadi Saryev
it will allow the file to be uploaded. thought i should mention it just in case... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| ColdFusion is delivering applications solutions at at top companies around the world

Re: Referencing Components

2007-11-18 Thread Azadi Saryev
create a cf mapping to the folder where your cfc is, same mapping name on local and remote servers, pointing to appropriate folders (these may even be different). -- --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: VPS or Dedicated CF Hosts

2007-11-18 Thread Azadi Saryev
care to share what sort of problems you are having? i am considering their cf8 vps hosting for the next big project, and would like to know what to look out for... so far they seemed like a very good option... tia --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: VPS or Dedicated CF Hosts

2007-11-19 Thread Azadi Saryev
thanks for sharing the info! they definitely look less like a viable option for me now, despite the good price all... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Check out the new features and enhancements

Re: looping through each row

2007-11-24 Thread Azadi Saryev
and this should work on any system: cfloop list=#cfhttp.fileContent# delimiters=#chr(13)##chr(10)# index=thisRow cf treats consecutive delimiters as one, and here is a caveat with your proposed ListLen use: if your list = a,b,c,,,f then listlen(yourlist) will return 4, not 6. --- Azadi

Re: sql and order by ?

2007-11-28 Thread Azadi Saryev
you could add 2 columns in your sql: 1 with left(serial_number_column, 4) [if the year part of sn is always 4 digits], the other with the rest of the serial number, and sort the results first by one and hen y the other. exact sql syntax would be db-specific -- --- Azadi Saryev Sabai

Re: Eclipse CFEclipse

2007-12-04 Thread Azadi Saryev
have you seen one on ibm website? i think ben forta blogged it... yes, here: http://www.forta.com/blog/index.cfm/2007/11/8/CFEclipse-Article-On-IBM-developerWorks don't remember if it covered svn, though... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: Convert Letters to Numbers in Phone Numbers

2007-12-04 Thread Azadi Saryev
because they think the question was unanswered. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates

Re: Cover border lines of drop down with images

2007-12-07 Thread Azadi Saryev
have you seen this one : http://ajax.phpmagazine.net/2007/07/select_box_replacement_with_jq.html or this one: http://jquery.sanchezsalvador.com/page/jquerycombobox.aspx --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: Drag Image

2007-12-09 Thread Azadi Saryev
(look for jQuery puzzle). i am sure if you google it, you will find more examples solutions --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Greg Edmonds wrote: Hi All, I have a project I am working on and was hoping someone could point me in the right direction. A user

Re: CF8 Hot Fixes installed or not, that is the question!

2007-12-10 Thread Azadi Saryev
mine (updated to HF2) shows /C:/ColdFusion8/lib/updates/chf802.jar in the Updates Level hth --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8

Re: Can someone test this piece of code under CF 7 for please?

2007-12-11 Thread Azadi Saryev
of those people who do not like others to know how they managed to solve the problem... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins

Re: One step upload and rename with CFFILE?

2007-12-11 Thread Azadi Saryev
Dave l wrote: fileType = right(#file.serverfile#, 3) now, wouldn't that leave you with x.peg if i uploaded a x.jpeg ? and do you really need the and # there? and file has been deprecated for a couple of cf versions now, i believe - use cffile instead. Azadi Saryev Sabai-dee.com

Re: cfdocument PDF creation - formatting issues

2007-12-13 Thread Azadi Saryev
afaik, it is a known bug, but it manifests itself only with some font/fontsize combinations. try using a different (probably larger) font size. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Justin Brown wrote: Didn't work. Replaced test test test test emtest/em test test

Re: or statement problems

2007-12-13 Thread Azadi Saryev
Thank you Ian. I was literally foaming @ some of the responses before you came in... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Ian Skinner wrote: Orlini, Robert wrote: I don't do enough CF work to get all the little things right. I just wanted to point out

Re: cfdocument PDF creation - formatting issues

2007-12-13 Thread Azadi Saryev
), and been emailed several hotfixes BEFORE they were posted on he official website --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Justin Brown wrote: Thanks, that did the trick... Played with fontsize/font and got the spacing to be better. Is there a good website out

Re: or statement problems

2007-12-13 Thread Azadi Saryev
cfset ..., cfif .., cfdump ..? TAGS within a cfscript block? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Todd wrote: Why? This only works within a cfscript block. cfset stuff = 1 cfset stuff2 = 1 cfif stuff != stuff2 cfset foo = boo! cfelse cfset foo = yay! /cfif cfdump

Re: ColdFusion.Window.getWindowObject causes exception on IE

2007-12-14 Thread Azadi Saryev
check your post on the adobe forums - i have answered there --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Dustin M. Snell wrote: How could you guys not answer this? I have been on and off this list since 1998. The least I would expect is for someone to try it and either

Re: ColdFusion.Window.getWindowObject causes exception on IE

2007-12-14 Thread Azadi Saryev
cfscriptajaxOnLoad('moveListener');/cfscript just before the closing /body. worked like a charm for me... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Dustin M. Snell wrote: How could you guys not answer this? I have been on and off this list since 1998. The least I would expect

Re: What do I have to do to get toolbars to show in a cftextarea?

2007-12-15 Thread Azadi Saryev
while stand-alone fckeditor does have image upload functionality, it has been disabled in its implementation in CF8. however, Rakshith from Adobe CF team has posted on his blog how to enable it:http://www.rakshith.net/blog/?p=41 hth --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: What do I have to do to get toolbars to show in a cftextarea?

2007-12-16 Thread Azadi Saryev
did you read the blog post i mentioned ? it outlines 5 steps you need to take to enable file/image browser in CF8 fckeditor richtext textarea. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Rick Faircloth wrote: I was able to modify the toolbar to include the Imagebutton and Image

Re: What do I have to do to get toolbars to show in a cftextarea?

2007-12-16 Thread Azadi Saryev
u r welcome. for future reference, / at beginning of relative path always denotes web root. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Rick Faircloth wrote: Got it figured out, Azadi... Step 5 was referring to placing the userfiles directory under my webroot directory, which

Re: Resizing images Godaddy Linux Coldfusion hosting?

2007-12-17 Thread Azadi Saryev
cfimage totally kicks a#$ in comparison. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Casey Dougall wrote: On 12/17/07, Ryan Stille [EMAIL PROTECTED] wrote: This is CF7 hosting, they do not offer 8 at this time

Re: CFSELECT Validation Still Broken in CFMX8?

2007-12-17 Thread Azadi Saryev
= it will never be a default selected option even if no other options are selected --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Philip Hayes wrote: According to the new CFDOCS for CFMX8, the REQUIRED attribute should work: Note: This attribute has no effect if you omit the size attribute

Re: Filtering with a session variable in CFGRID and Paging

2007-12-26 Thread Azadi Saryev
}, '#session.user.userid#') in your cfc treat the added argument as regular cfargument. 2) hyperlinking cfgrid rows: look up the HREF and HREFKEY arguments of CFGRID tag in the docs. hth and sorry if this has already been answered... merry xmas! --- Azadi Saryev Sabai-dee.com http

Re: How to retrieve URL when passed via ColdFusion.navigator?

2007-12-27 Thread Azadi Saryev
can't you just call a js function without coldfusion.navigate? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don L wrote: I think I'm a bit confused. What _exactly_ are you trying to do? You say you want to pass a url param to the parent. Are you saying you want a child window

Re: template fresh within a cfwindow

2007-12-28 Thread Azadi Saryev
close cfwindow Don L wrote: ok, it looks like cfwindow source=Main.cfm Main.cfm has a link to SubjectMatterXYZ.cfm what sort of link? an a href... link? a ColdFusion.navigate? an ajalink()? where does this link open: new window? same window? an ajax container? which contains the following

Re: template fresh within a cfwindow

2007-12-30 Thread Azadi Saryev
want to reload the source page of your cfindow? if so, use the ajaxlink() function. more info in the docs. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don L wrote: So, Azadi, does the process go like close this cfwindow and reload it? And since we don't have some function

Re: CFGRID in CF8 cannot get links with dynamic variable to work

2007-12-30 Thread Azadi Saryev
... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Michael Grove wrote: I am trying to us a CFgrid, Format HTML using a CFC and Bind. The grid renders fine, but I want to include a few columns that either display a small image or a static X. Each of these columns should point to a specific url

Re: Forms within CFWINDOW

2008-01-08 Thread Azadi Saryev
iirc, where your form in a cfwindow submits to (that cfwindow or the master page) depends on if you use form ... or cfform ... hth --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Pete Ruckelshaus wrote: I would like to have a small form (normal HTML form) that is contained within

Re: Submitting a form inside of cfdiv

2008-01-09 Thread Azadi Saryev
i think you will find that using form ... instead of cfform ... (or is it the other way around?) will do the trick. using one submits the form to cfdiv, the other replaces the main page --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: CFAjaxproxy weird issue.

2008-01-09 Thread Azadi Saryev
try commenting out/deleting the onRequest() method from your Application.cfc. iirc, onRequest() and onRequestEnd() [but you have it with output=no, so it should not matter in your case] can interfere with ajax calls --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: Submitting a form inside of cfdiv

2008-01-09 Thread Azadi Saryev
that is only true for CFFORM tag, not FORM tag read here: http://www.coldfusionjedi.com/index.cfm/2007/8/5/Reminder-about-forms-and-ColdFusion-8-Ajax-Containers --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Cutter (CFRelated) wrote: Either way really. Here's the blurb out

Re: Some help on passing a parameter in text HTML?

2008-01-10 Thread Azadi Saryev
??? http://www.w3schools.com/htmldom/dom_reference.asp google is a great thing... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ismail cassiem wrote: There's probably a window.url or something you can parse. Have you looked in a decent DOM reference ? Hi, Thanks more

Re: Some help on passing a parameter in text HTML?

2008-01-10 Thread Azadi Saryev
i think this is what you are looking for: http://www.w3schools.com/htmldom/prop_loc_search.asp you can get the query string into js and then parse it with js string functions get the value you need --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: Some help on passing a parameter in text HTML?

2008-01-10 Thread Azadi Saryev
what output exactly do you desire? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk

Re: OT: Hosting

2008-01-13 Thread Azadi Saryev
look at hostnexus.com and their cf plans - the basic one starts from 9.95/month. their tech support is superb. been with them for over 3years now. http://www.hostnexus.com/solutions/coldfusion.htm cfmx7 only (for now) hth --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: POI, Excel and row limitations

2008-01-14 Thread Azadi Saryev
afaik, that's excel's limit. it is also limited to 256 column/worksheet http://office.microsoft.com/en-us/excel/HP051992911033.aspx http://support.microsoft.com/kb/264626 http://office.microsoft.com/en-us/excel/HA101375451033.aspx hth --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: beat a dead horse?

2008-01-14 Thread Azadi Saryev
-compliant browser)... 'coz later, when (or rather if) IE finally becomes standards-compliant, your app will stop working... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Adobe® ColdFusion® 8 software 8 is the most

Re: beat a dead horse?

2008-01-14 Thread Azadi Saryev
i never had any problems with cfwindow in FF... what exactly is not working in your case? can you post sample code to test? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don L wrote: Thank you both, usually that's the case for me as well, however, for this particular app, cfwindow

Re: designing db tables for calendar events

2008-01-15 Thread Azadi Saryev
what are you ideas so far? what design have you come up with on your own? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Ravi Shankar wrote: I would like your expert help in the same. I am working on a project in which i have to design the web-page for scheduling the meetings

Re: CFFile Hangs ColdFusion

2008-01-19 Thread Azadi Saryev
your questions aside, why are you checking for a file existence in the part of code that runs only when the directory where you are checking for the file existence does not exist??? i suspect the main cause of your cf hanging troubles IS your temp directory 'hack'... --- Azadi Saryev Sabai

Re: Coldfusion Tutorial Collections (web_based tutorials)

2008-01-20 Thread Azadi Saryev
have a print or print view link/button that will display full tutorial on one page without (or with significantly less) ads... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ~| Adobe® ColdFusion® 8 software 8 is the most

Re: cfwindow again

2008-01-20 Thread Azadi Saryev
what's the problem exactly? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don L wrote: I'm not sure if I'm kind of stretching cfwindow tag or simply not knowing its intricacy with javascripts enough. In essence, I have the core of an app running within a cfwindow (let's called

Re: date problem

2008-01-20 Thread Azadi Saryev
if it is same for dateformat() and lsdateformat(), why would they return different results then? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Jim Davis wrote: This is what I was remembering - from the docs for lsdateformat and dateformat: When passing date/time value

Re: cfwindow again

2008-01-20 Thread Azadi Saryev
can you post your code? as usual, it can be a million different things at play here... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don L wrote: Azadi, Let me try to describe it as follows: With cfdebug on, a) when the the AppCore.cfm is lauched, it defaults to the {main} tab

Re: date problem

2008-01-21 Thread Azadi Saryev
yes, obviously. --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Tom Chiverton wrote: On Monday 21 Jan 2008, Azadi Saryev wrote: if it is same for dateformat() and lsdateformat(), why would they return different results then? Because those functions do different things

Re: livedocs.adobe.com

2008-01-23 Thread Azadi Saryev
when i press SHIFT+F1 in my DWCS3 with CF8 DW Extensions/Update installed (free from adobe.com), CF8 help opens up in my local Reference DW panel... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Chad Gray wrote: Is it me, or does the livedocs for CF8 take FOREVER to load? Im

Re: CFSelect Required not working right?

2008-01-25 Thread Azadi Saryev
and where's you blank option which is required for the 'required' attribute to work? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com C. Hatton Humphrey wrote: I'm working on a CFForm with a CFSelect that is required. According to the LiveDocs you the required attribute requires

Re: date problem

2008-01-28 Thread Azadi Saryev
. hmmm very good point, thanks, what is a date pickup system? i believe Claude meant a date picker, like a pop-up calendar you can click on a date in and it will populate your date input field for you with the chosen date in a pre-defined format. --- Azadi Saryev Sabai-dee.com http://www.sabai

Re: date problem

2008-01-28 Thread Azadi Saryev
date pick up system - is that a fancy way to say car? :-) hmm.. come to think of it, date picker does not sound much better... conjures images of some random number system... hmm... maybe it's just me... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Claude Schneegans wrote: i

Re: Help witha query

2008-01-28 Thread Azadi Saryev
try using parenthesis to group relevant parts of the FROM clause... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Toby King wrote: I thought I had the query working but its NOT quite right. I have been working on a smilar query and tried building the query with a query builder

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Azadi Saryev
and, if i am not mistaken, any time you enter a valid licence key, your trial/dev edition turns into a standard/enterprise one. and if you remove the licence key it reverts back to dev edition (?) --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Todd wrote: And, after 30 days, Trial

Re: CF8 and MySQL Zero 0000-00-00 Dates

2008-01-29 Thread Azadi Saryev
zeroDateTimeBehavior=convertToNull add it to the jdbc url's query string part. maybe entering it into the Connection String box (under Advanced Settings in the CF Administrator)'s Data Sources page) will work too, but i have not tried it. --- Azadi Saryev Sabai-dee.com http://www.sabai

Re: ext20 cf

2008-01-31 Thread Azadi Saryev
see if this helps: http://feeds.feedburner.com/~r/ajaxian/~3/213173675/ext-20-and-coldfusion --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com ColdFusion wrote: Anyone using the ext js functions on a CF site

Re: Currency Exchange rates - XML format

2008-02-01 Thread Azadi Saryev
i use the Dynamic Converter on one of the sites: http://dynamicconverter.com it's free at under 10,000 requests/month with attribution OR US$13/month for unlimited requests and no linkback hth --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Matthew Friedman wrote: Does anyone know

Re: CFPOP and Yahoo! mail - possible?

2008-02-01 Thread Azadi Saryev
you should be able to, but i think you may need to sign up for Yahoo POP access, which is part of their premium services or whatever they are called now... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Mike Kear wrote: Is it possible to get access to a Yahoo! mail box using CFPOP

Re: Funny questions in latest CF9 surveys*

2008-02-05 Thread Azadi Saryev
not sure about Q8, but Q13, presumably, implies some sort of single tag/range of tags in cf9 to use those ws?... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Tom Chiverton wrote: 8. Do you want coldfusion to be supported on AMD platform? Are Adobe really suggesting there J2EE

Re: Missing template handler issues

2008-02-05 Thread Azadi Saryev
the standard cf missing template (file not found...) warning you see: is it for the requested page or for some template cfinluded in your missing template handler page? just a thought... --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Don wrote: I would like to add to this that we

Re: File upload

2008-02-05 Thread Azadi Saryev
to upload a file only because someone before has uploaded a file with same name? --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Rick Sanders wrote: Hi Rick, It doesn't solve the problem though. Here's the problem: 1. User #1 uploads a file called Movie.wmv. The file is uploaded

SOT: top file extensions on the nt

2008-02-06 Thread Azadi Saryev
- top 30 file extensions on the net. i am not gonna bother you with the complete list, just top 5: HTML 4,960,000,000 HTM 1,730,000,000 PHP 1,050,000,000 ASP 831,000,000 CFM 481,000,000 --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

  1   2   3   4   5   6   7   8   >