COM Support in CF10 64 bit

2013-04-10 Thread Asim Manzur
Is there a COM support in CF10 64 bit? Was moving codes from CF8 32 bit machine to CF10 64 bit machine and codes error out. An exception occurred when instantiating a COM object. The cause of this exception was that: java.lang.RuntimeException: Can not use native code: Initialisation failed.

CDC in sql 2008

2013-03-28 Thread Asim Manzur
I need to keep track the changes in my all updates/deleted in sql. I was researching to find the solution and couldn't find anything useful. other than CDC in sql 2008. I don't want to handle this on application level .i.e. saving extra record in my audit table etc, I want to do it on database

Re: Mailing List program

2011-01-17 Thread Asim Manzur
I meant the program which I can use to sent mass mail out. like CFMagic List. I don't mind paying but need the solid app which I can modify later for custom requirements. ~| Order the Adobe Coldfusion Anthology now!

Mailing List program

2011-01-07 Thread Asim Manzur
Any recommendation for the CF mailing list application? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

RSA encryption/decryption coldfusion

2010-11-23 Thread Asim Manzur
Hi guys, Need some help on Asymmetric Encryption in coldfusion webservice first, I need generate rsa public/private key pair. I am using CF8 Enterprise version I download the Bouncy Castle API java cryptography library to do that. My code looks like this [code] !--- Get the Bouncy Castle

Re: PDF Generation

2009-12-29 Thread Asim Manzur
Thank you for the reference. I got LiveCycle setup in my machine and was trying to setup the PDF with LiveCycle Designer but Have no clue how to setup variables etc in PDF. I could not find any information about that anywhere. appreciate if someone share their experience. Thanks,

Re: PDF Generation

2009-12-29 Thread Asim Manzur
I am not creating forms. I have pdf which needs to feed the variables like Company Name: *ABC company* I need to put the company_name variable where ABC printed. I don't want to create a form element that should be rather than just #company_name# and not input type=text name=company As you said

Re: PDF Generation

2009-12-29 Thread Asim Manzur
Yes the problem is this pdf has lines, and sections and bar codes and bunch of other static stuff, which I can easily handle in pdf template but will become pain if I do in html. I am currently using this with ActivePDF but that where I am designing and drawing it line by line. Its now have

PDF Generation

2009-12-23 Thread Asim Manzur
I know that you can have a PDF form which can post the data to a server. But I am looking for something which allows me to create a PDF template and I can drop variables there and coldFusion can feed the data to that PDF template. Currently using ActivePDF for this but wondering if CF8 or CF9

triggerfield with coldext

2009-04-27 Thread Asim Manzur
anyone done that? What I am looking is to have a formfield like datefield which have an icon beside the field and once you click it popup a window. thought to checkout here might be someone done that with coldext thanks, ~|

RDS with Eclipse

2007-11-27 Thread Asim Manzur
using latest eclipse v3.3.1.1 Build id: M20071023-1652 trying to use the debugging option. for Ref. I use the Ben's post here http://www.forta.com/blog/index.cfm/2007/5/30/CF8-Debugger-Getting-Started But every time it comes back with the error unable to contact the rds server. It is the

Black Friday

2007-11-23 Thread Asim Manzur
Hmmm ... not many people are working today.. -- ... Regards, ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

CFGRID ajax loading icon

2007-10-29 Thread Asim Manzur
I am using HTML CFGRID using the ajax calls, and wondering that if there is any way to replace the loading image, (the one which is right beside the paging buttons) or any other way to display some kind of animation while the grid is being loading. Thanks,

CFGRID row color

2007-10-22 Thread Asim Manzur
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 background color if the task is urgent... Urgent is a field in the query object returned by CFC ... Regards,

Yes Again CFWindow :(

2007-09-25 Thread Asim Manzur
. -- ... Regards, Asim Manzur ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

CFWINDOW name

2007-09-20 Thread Asim Manzur
Is there any way to get the name of the current window? I have a dynamic window based on timestamp which I am not sure what is the name of the window as its being created from multiple buttons (multiple windows for Add/Edit). Is there anyway to know what is the name of that window? Thanks

CFWindow Refresh problem

2007-09-14 Thread Asim Manzur
Having issue with cfwindow. Created the function called function makeWindow(windowname, windowTitle,goWhere,width4window, height4window) { ColdFusion.Window.create(windowname,windowTitle,goWhere, {refreshOnShow:true,center:true,modal:true,width:width4window,height:height4window}); } and

CFWINDOW form action?

2007-09-11 Thread Asim Manzur
I have a form inside cfwindow, when the form submit, it refresh the main page, not just the window. how can I just limit the form submission just only inside the cfwindow? Thanks, ~| Get the answers you are looking for on the

Re: CF8 AJAX

2007-09-04 Thread Asim Manzur
I have a cfc which have two function, function one returns a query (more than one rows) which I am using to populate the cfselect. Then I have some form fields, once the cfselect dropdown have a selected value, I need to call the other function and pass the value of the cfselected ( which will

CF8 AJAX

2007-08-31 Thread Asim Manzur
I have cfselect statement: cfselect name=proj_id height=70 bind=cfc:MyCfcPath.MyCFCFunction(#session.userid#) value=project_id display=project_name bindonload=true / I have a cfinput type=text which will take the value from cfselect and call another function in cfc and display the value. I

CF8 returns float value in query

2007-08-28 Thread Asim Manzur
I have a same cfquery running in cf7 and cf8 CF7 dump shows it have int values like 1 and 2 and 3 etc. CF8 dump shows that the values being returned as 1. and 2. and 3. etc Can someone help please? Is there any settings that I need to change? Using Oracle Database. --

Re: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Thanks for your reply Ray, The problem is my values changed here in CF8. This query runs on CF7 and returns me value lets say 346 I am using this value to the next query to pulling up the projects. now in CF8 this value in the query object returns 346.0 I can't go and change 325 values to

Re: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Thanks Aaron, Yes the scale and precision has been set in the oracle database. Now the question is I don't want to change the DB structure, is there anyway to tell coldfusion to ignore the precision and scale? Will appriciate your responses. thanks, Is the scale for the number column

Re: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Ray, When I use the cfoutput I also get the same result as on the dump i.e. project_id shows 346 in Database, in Dump it shows 346. and in cfoutput it also shows up as 346. thanks, But did you see my question though. Is this output ONLY in cfdump? If you output it in a normal

Fwd: CF8 returns float value in query

2007-08-28 Thread Asim Manzur
Ray, When I use the cfoutput I also get the same result as on the dump i.e. project_id shows 346 in Database, in Dump it shows 346. and in cfoutput it also shows up as 346. thanks, ~| ColdFusion is delivering

GoogleCentral Invitation required

2007-07-20 Thread Asim Manzur
I appreciate if someone can send me the invitation. Thanks, ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Fwd: GoogleCentral Invitation required

2007-07-20 Thread Asim Manzur
[EMAIL PROTECTED] ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more productivity. http://www.adobe.com/products/coldfusion?sdid=RVJW Archive:

Re: GoogleCentral Invitation required

2007-07-20 Thread Asim Manzur
my email is below. On 7/20/07, Asim Manzur [EMAIL PROTECTED] wrote: I appreciate if someone can send me the invitation. Thanks, ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more

Re: directory watcher

2007-05-02 Thread Asim Manzur
Andrew, I have no clue what are you talking about??? where I am using param?? Can you please explain??? -- Regards, why do you not try attachment instead of param... On 5/2/07, Asim Manzur wrote: ~| Upgrade to Adobe

Re: directory watcher

2007-05-01 Thread Asim Manzur
my typo error on posting. the codes are: cffunction access=public name=onAdd output=no cfargument name=CFEvent type=struct required=yes cfset data=CFEvent.data cfmail to=[EMAIL PROTECTED] from=[EMAIL PROTECTED] subject=New Log File Created! Msg: Log file attached.

Re: directory watcher

2007-05-01 Thread Asim Manzur
the cfmailparam within the cfc executed by the gateway instance. Thanks for you reply, but my probelm still the same. -- Regards, it looks like the data.filename is not containing what you think it should On 5/1/07, Asim Manzur wrote

Re: directory watcher

2007-04-30 Thread Asim Manzur
of range: -1 java.lang.StringIndexOutOfBoundsException: String index out of range: -1 Please help. -- ... Regards, On 4/27/07, Asim Manzur wrote: is there any sample code available for directorywatcher application anywhere ? Thanks

directory watcher

2007-04-27 Thread Asim Manzur
is there any sample code available for directorywatcher application anywhere ? Thanks -- ... Regards, ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe Coldfusion MX7 with

Image manipulation

2007-03-01 Thread Asim Manzur
, but like to know someone's experience. -- ... Regards, Asim Manzur ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex 2. Free Trial http://www.adobe.com/products

Licensing Issue

2006-10-24 Thread Asim Manzur
Hi All, We are building a new server and experiencing a licensing problem. We have a Xeon dual processor machine and have an appropriate enterprise license as well. During the installation the installer prompt and shows the error message says that this machine have 4 CPUs and the provided license

Re: Licensing Issue

2006-10-24 Thread Asim Manzur
Yes this is a cfinstaller ver 7. We put the serial # at the time of installation, and that time this error was generated. Hmm... I've never seen that type of error message. Are you sure this is the CF installer you're talking about? We usually install the trial and then update the licenses

Re: qForm issue

2005-11-10 Thread Asim Manzur
you were right, once I changed it to inline it works without any error, but now the format is not correct i.e. its putting that error msg into one cell and multiple line(because the cell width is not that big). thats why I have the table-row parameter there. Is there any way to do the colspan in

Re: qForm issue

2005-11-09 Thread Asim Manzur
Actually I've added these three lines. var id = this.obj.name + 1; document.getElementById(id).style.visibility = visible; document.getElementById(id).style.display = table-row; I've added the td id=formfieldname1 right under the row where the form field is and put the visibility=hidden. so,

FlashForm

2005-10-28 Thread Asim Manzur
not working in this way, how can I do that. Regards, Asim Manzur ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client

Re: FlashForm

2005-10-28 Thread Asim Manzur
I assume that actionscript function will run on the client but subsequent query has to run on the server. if I could run the query in advance, turn the query into arrays, and make them available to my actionscript. then how can I filter that query later based on the Situation above? Can somebody

Re: FlashForm

2005-10-28 Thread Asim Manzur
the query object which is received by the Flash Remoting? I tried myGrid.query = myService.getCRM(id.text); Didn't work Does anybody?? -- Regards, Asim Manzur ~| Find out how CFTicket can increase your company's customer support

Re: SQL issue: filter query

2005-10-13 Thread Asim Manzur
I tried below and got an error cfquery name=getImg dbtype=query select * from getList where name NOT like 'tn_%' order by name /cfquery cfquery name=getSQL datasource=#DSN# select j_image from Judges /cfquery cfquery name=getList2 dbtype=query select * from getImg where name NOT IN (select

SQL issue: filter query

2005-10-12 Thread Asim Manzur
Hi, I have two queries. cfquery name=getImg dbtype=query select * from getList where name NOT like 'tn_%' order by name /cfquery cfquery name=getSQL datasource=#DSN# select * from Judges /cfquery in GetImg recordset I have some data in there, in GetSQL recordset I am pulling another series of

Flash form timeout

2005-09-22 Thread Asim Manzur
Hi, could somebody advise me the max # which I can use in timeout parameter in flash forms? I am having a flash form expired issue. -- Regards, ~| Logware (www.logware.us): a new and convenient web-based time tracking

remove license cfmx7

2005-08-22 Thread Asim Manzur
how to remove the license from the machine. -- Regards, ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message:

Re: multi select related flash form

2005-08-17 Thread Asim Manzur
Is there any tool available which allows me to take the actionscript code from the cfm file and debug it and modify it. I mean the IDE which helps to write actionscript codes. Thanks, I am having problem using this tag, its works fine original , but I need the opposite result.

Re: multi select related flash form

2005-08-17 Thread Asim Manzur
Thanks Fernandes, regarding the sample code your provide, I have to add the values of the dropdowns in some global variable first, thats how I can take those values out from the other dropdown menus. isn't it. And thats the part where I get stuck on, I declare the variable with _global which I

Re: multi select related flash form

2005-08-15 Thread Asim Manzur
nobody??? I am having problem using this tag, its works fine original , but I need the opposite result. http://www.asfusion.com/blog/index.cfm?mode=entryentry=52A45F0A-3048-525A-B2223CDF0A32A366 What I want is I have a query and there are four select dropdowns using the same query,

multi select related flash form

2005-08-12 Thread Asim Manzur
I am having problem using this tag, its works fine original , but I need the opposite result. http://www.asfusion.com/blog/index.cfm?mode=entryentry=52A45F0A-3048-525A-B2223CDF0A32A366 What I want is I have a query and there are four select dropdowns using the same query, if an option 1 has

FORM scope into SESSION

2005-08-11 Thread Asim Manzur
Hi, What is the easiest way to take all the form variables (probably loop over) and put it on the session. or maybe put the whole form object into session something like that. I appriciate if someone can provide some sample code -- Regards,

Re: FORM scope into SESSION

2005-08-11 Thread Asim Manzur
Thank you guys, I used cfset session.myForm = form and it works great. Thanks alot. Hi, What is the easiest way to take all the form variables (probably loop over) and put it on the session. or maybe put the whole form object into session something like that. I appriciate if someone

flash form property

2005-08-09 Thread Asim Manzur
Does anyone have an idea that how can acheive this. Two input fields (pdfurl and txturl) in flash form. onChange event of the first input field the following function if ((domain == www.yahoo.com http://www.yahoo.com) || (domain == www.google.com http://www.google.com)) { txturl.setFocus();

CFMX7 presentation

2005-07-26 Thread Asim Manzur
A quick question. does anyone knows any nice presentation (ppt etc) on the web, regarding the CFMX7 for non-technical people. Regards, ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

CFMX 7 flash forms error

2005-07-20 Thread Asim Manzur
I appriciate that if someone can answer this. I am getting the following error. Errors, warnings or exceptions were found when compiling /cfbci-tlc/admin/index.cfm. Visit the online Flex documentation or API reference for further information. 1 Error found. Error Branch between 6248 and

CFFORM freeze

2005-07-18 Thread Asim Manzur
cfform name=myform height=200 width=400 format=Flash cfformgroup type=hbox cfinput type=text name=Name validate=telephone required=yes cfinput type=submit name=myBtn value=Submit / /cfformgroup /cfform The above sample code to generate the flash form, works fine, but

test

2005-07-18 Thread Asim Manzur
test -- Regards, ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message:

Re: ThreeSelectRelated Distinct value

2005-06-06 Thread Asim Manzur
I know this is just a matter to write the query. Can someone help me to sort this out? -- Regards, Hi I am using the three select related select box. I have one table, which has, State | City | Name fields. The CustomTag works fine, except there are multiple states are showing in the

RE: ThreeSelectRelated Distinct value

2005-06-06 Thread Asim Manzur
list Elena -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Monday, June 06, 2005 12:19 PM To: CF-Talk Subject: Re: ThreeSelectRelated Distinct value I know this is just a matter to write the query. Can someone help me to sort this out? -- Regards

ThreeSelectRelated Distinct value

2005-06-05 Thread Asim Manzur
Hi I am using the three select related select box. I have one table, which has, State | City | Name fields. The CustomTag works fine, except there are multiple states are showing in the first select box. how can I get the Distinct value of the states CFQUERY DATASOURCE=#DSN# NAME=TestQuery

Logic requried

2005-05-31 Thread Asim Manzur
I have a secnerio where user is allowed to upload upto 3 files (images). If he upload 1 file and come back later, he will not allowed to upload again, its one time process. I also need to show the preview to the user that these are the files that he uploaded. He can confirm at this stage or

Re: Logic requried

2005-05-31 Thread Asim Manzur
Any sample code will be really appriciated. On 5/31/05, Asim Manzur [EMAIL PROTECTED] wrote: I have a secnerio where user is allowed to upload upto 3 files (images). If he upload 1 file and come back later, he will not allowed to upload again, its one time process. I also need to show

Re: Logic requried

2005-05-31 Thread Asim Manzur
Hi, Thanks for reply Jochem, thats exactly what I wanted, but in firefox its not working, and in Java console it says that Security Error: content at http:// .cfm may not load or link to file://C: Is there anyway to resolve this issue, on some other way, some layer concept,

HASH() reverse

2005-05-06 Thread Asim Manzur
is there any possiblity to reverse the hash() I have a value 1xc231vx231cx2v1x2cv132xc1v23 thats hash, how can I revert back into the normal text. Thanks -- Regards, ~| Discover CFTicket - The leading ColdFusion Help Desk and

Re: HASH() reverse

2005-05-06 Thread Asim Manzur
, -- Regards, Asim Manzur http://www.LogikZone.com ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try

PDFLIB Sample with ColdFusion

2005-04-09 Thread Asim Manzur
Does anyone have any experience with PDFLIB, could someone have any samples which uses the java component of PDFLIB. Thanks -- Regards, ~| Logware (www.logware.us): a new and convenient web-based time tracking application.

OT- Reseller CFMX hosting

2005-03-28 Thread Asim Manzur
Is there any hosting service available for coldfusion which offers some sort of refferal service. i.e. receive some % on your refferal hosting a/c. -- Regards, ~| Logware (www.logware.us): a new and convenient web-based time

X-Mailer value

2005-03-19 Thread Asim Manzur
the value of X-Mailer? -- Regards, Asim Manzur ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try

Re: X-Mailer value

2005-03-19 Thread Asim Manzur
That does the same thing It put two X-Mailer values. X-Mailer: ColdFusion MX Application Server X-Mailer: Put some text here On Sat, 19 Mar 2005 19:06:18 -0500, Asim Manzur [EMAIL PROTECTED] wrote: Is there anyway to change the X-Mailer value? I tried cfmailparam name = X-Mailer

Re: X-Mailer value

2005-03-19 Thread Asim Manzur
Sorry that works fine, I overlooked it. I was using as a cfmailparam When I used it with CFMAIL with mailerid it works fine Thanks ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: way to import the C-Sharp code in ColdFusion.

2005-02-17 Thread Asim Manzur
Inherits=TTWeb.Login % Then in the .cfm file how can I get the contents. i.e. I can't use cfinclude page= do it? how can I create the cfobject Thanks once agian for your help -- Regards, Asim Manzur ~| Logware (www.logware.us

way to import the C-Sharp code in ColdFusion.

2005-02-16 Thread Asim Manzur
I am converting an application from ASP.NET to coldfusion. I was wondering that is there anyway that I can import the C-Sharp codes into the coldfusion template. Like usually in ASP we do #include filename CFM we do cfinlcude ASP.NET some ppl use behind code technique. which is %@ Page

Weired Problem with Structure

2005-02-11 Thread Asim Manzur
I am having a weired problem. I have a structure lines when I dump that it shows me structure under structure. when I dump lines.2 it also shows me the other elements inside that structure. like struct ADDRESS ABC BLVD CITY Toronto COMPANY ABC Company COUNTRY CANADA FNAME My

Re: Weired Problem with Structure

2005-02-11 Thread Asim Manzur
'lines.2'? On Fri, 11 Feb 2005 13:34:28 -0500, Asim Manzur [EMAIL PROTECTED] wrote: from gmail ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent

Re: Weired Problem with Structure

2005-02-11 Thread Asim Manzur
Thats how i am creating the structure. cfloop from=2 to=#listlen(myfile, chr(10))# index=i cfset thisline = listgetat(myfile, i, chr(10)) cfset lines[i] = structnew() cfloop from=1 to=#ArrayLen(hd)# index=gtr cfset lines[i][#hd['#gtr#']#] = trim(listgetat(thisline, #gtr#,

Re: Weired Problem with Structure

2005-02-11 Thread Asim Manzur
Thanks Adam, Yes that was a space issue after the end of the variable name. Those variable names are also dynamic. somehow the space doesn't trimmed out. Thanks once again. ~| Discover CFTicket - The leading ColdFusion Help

Export to Excel

2005-01-26 Thread Asim Manzur
Any recomanded tag to export the html result to excel sheet? preferably free tag. thanks PS: Second attempt. I post this message yesterday from the website, didn't showed up, tried again from website didn't comes up either. now sending through email.

Re: Export to Excel

2005-01-26 Thread Asim Manzur
from website, I am again using my email to post the message. On Wed, 26 Jan 2005 10:28:56 -0500, Asim Manzur [EMAIL PROTECTED] wrote: Any recomanded tag to export the html result to excel sheet? preferably free tag. thanks PS: Second attempt. I post this message yesterday from the website

ASP help

2005-01-05 Thread Asim Manzur
could someone please tell me the following code in ASP??? Thanks once again. CFIF IsDefined(pid) do this cfelseif IsDefined(jid) do this cfif ~| Discover CFTicket - The leading ColdFusion Help

ASP Query

2005-01-04 Thread Asim Manzur
is this something wrong with this query? SQLstr = INSERT INTO projectSupportDoc (fileName, projectID) VALUES (' n ',' Request.QueryString(pid) ' the complete code is SQLstr = INSERT INTO projectSupportDoc (fileName, projectID) VALUES (' n ',' Request.QueryString(pid) ' Set dbrs =

Re: How to make mx run all .php extensions

2004-12-23 Thread Asim Manzur
It didn't work for me, I tried to use another extension than php. but it shows the same error. What a cheap server! j/k servlet-mapping servlet-nameCfmServlet/servlet-name url-pattern*.php/url-pattern /servlet-mapping Worth mentioning, had to alter iis as well to allow scripts and

IsDefined with dynamic variable

2004-12-22 Thread Asim Manzur
Cfif IsDefined('form[Desc_ID#x#]') This is giving me the following error Parameter 1 of function IsDefined, which is now quot;form[Desc_ID1]quot;, must be a syntactically valid variable name. ~| Special thanks to the

Re: IsDefined with dynamic variable

2004-12-22 Thread Asim Manzur
Both options works, Thanks Qasim and Raymond Change it to one of these two things: cfif structKeyExists(form,desc_id#x#) or cfif isDefined(form.desc_id#x#) On Wed, 22 Dec 2004 11:08:50 -0400, Asim Manzur [EMAIL PROTECTED] wrote: Cfif IsDefined('form[Desc_ID#x

FEDEx tracking

2004-12-21 Thread Asim Manzur
A while ago somebody was talking about the fedex tracking shipments and show the status in the custom application in coldfusion. I am working on a project where I need to track the shipment and update the status in local database. I was googling from the last two days and couldn't find

Force user to the login page automatically

2004-12-20 Thread Asim Manzur
I have an Application.cfm which timeout the session in 15 min. How is it possible to redirect the user to the logout page automatically when the session expires. i.e. user is on add.cfm page. and he left the screen there and came back to computer after 25 min and he is still on this page. he

Re: Force user to the login page automatically

2004-12-20 Thread Asim Manzur
could even do it with a meta refresh. emmet -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:15 AM To: CF-Talk Subject: Force user to the login page automatically I have an Application.cfm which timeout the session in 15 min. How

Re: QUERY2FORM

2004-12-15 Thread Asim Manzur
The last thing which needs to be done is I have two different table which has same field names. when I am using the function Query2Form, and these two variables comes to the loop it becomes a comma delimated value. How can I prevent to re-declare the already declared variable in Query2Form

QUERY2FORM

2004-12-14 Thread Asim Manzur
Is there any UDF or basic login for that? I have a query with one record, I want to dynamically convert that query into a form hidden fields. how is it possible?? Thanks ~| Special thanks to the CF Community Suite Silver

Re: QUERY2FORM

2004-12-14 Thread Asim Manzur
Thanks I tried that but got the error. Somehow its trying to do the server side validation. Howto prevent that Form entries incomplete or invalid. Dry Van Yes The value entered for the BILLED field ('0') is not correctly formatted. Please go back and correct the problem. Error

Re: QUERY2FORM

2004-12-14 Thread Asim Manzur
**logic not login ;) Is there any UDF or basic login for that? I have a query with one record, I want to dynamically convert that query into a form hidden fields. how is it possible?? Thanks ~| Special thanks to the CF

Re: QUERY2FORM

2004-12-14 Thread Asim Manzur
Billing is a BIT field so it can only have 1 or 0 One note I did not mention, The rules for valid field names in a query, and the rules for valid form field names are different. It is allowable to have spaces and other characters as part of a sql column name, but those same characters

Re: QUERY2FORM

2004-12-14 Thread Asim Manzur
Thanks Pascal, This is exactly what I want. Really appriciate that. If you are still interested, I tested and debugged it: cffunction name=CleanForm returntype=boolean output=false cfargument name=stForm required=yes type=struct cfargument name=extension required=no

Re: QUERY2FORM

2004-12-14 Thread Asim Manzur
Hi that was the problem the table field was named bill_date and your function works fine only had the problem with cleanForm but I have changed the field name in the table This is due to CF automatic server side validation. You can't have any form fields that end in _date, _eurodate, _required,

MAX Query modification

2004-12-13 Thread Asim Manzur
I have a following query SELECT MAX(S_Number) as currentNo FROM Table Which is doing what I want. But the S_Number has a logic behind. Let say today is December 13. The First S_Number should be 200412130001 where 2004 is the year and 12 is the month and 13 is the date and then 0001 is the first

Can't Signin

2004-12-13 Thread Asim Manzur
I don't know something is wrong with the website. I can't signin. There is no text boxes there to put the username/password there. Whenever I go there it just have a link says Back to previous section Is anthing wrong with houseoffusion website? -- Regards,

Re: CFMX Shopping Cart?

2004-12-09 Thread Asim Manzur
. -Blaine -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 08, 2004 12:48 PM To: CF-Talk Subject: CFMX Shopping Cart? Is there any CFMX Shopping Cart available which can be easily merged in the existing application? I have a project where customer

SYSTEM font list?

2004-12-09 Thread Asim Manzur
is it possible to get the list of the installed font in coldfuison?? I want something like cfloop index=fontname list=list_of_fonts delimeter=, font name=#fontname##fontname#/fontBR /cfloop how is it possible can someone advise??

CFMX Shopping Cart?

2004-12-08 Thread Asim Manzur
Is there any CFMX Shopping Cart available which can be easily merged in the existing application? I have a project where customer is asking to put the shopping cart capability. I was wondering that if something avaiable on internet/community so I don't have to re-invent the wheel. Thanks

FORM Refresh Input fields gone

2004-12-06 Thread Asim Manzur
Hi all, I have a HTML Form, which has couple of input fields and in the middle of the form I have a drop down menu, when user select the item from the drop down menu the page refresh. Prblem is If user has entered half of the form, those fileds are gone after refresh, what is the way aroung

Re: FORM Refresh Input fields gone

2004-12-06 Thread Asim Manzur
gone means when user fill up the form and he change the dropdown value form refresh and the value that user types is gone. Hi all, I have a HTML Form, which has couple of input fields and in the middle of the form I have a drop down menu, when user select the item from the drop down

Re: FORM Refresh Input fields gone

2004-12-06 Thread Asim Manzur
The problem is I can't use IsDefined of each and every form field. Those are 97 form fields. Can't check each and every field that if its IsDefined then use the same value. Is there any easiest way to preserve the form fields?? gone means when user fill up the form and he change the

  1   2   3   >