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.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355333
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 level.

Really interested to know what others are doing


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:355184
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340927
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:340584
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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 Asymmetric Key Generator ---
cfset kpgo = createObject('java',
'org.bouncycastle.jce.provider.asymmetric.ec.KeyPairGenerator') /

!--- Get an instance of the provider for the RSA algorithm. ---
cfset kpg = kpgo.getInstance(RSA) /

!--- Get an instance of secureRandom, we'll need this to initialize the
key generator ---
cfset sr = createObject('java', 'java.security.SecureRandom').init() /

!--- Initialize the generator by passing in the size of key we want,
and a strong pseudo-random number generator (PRNG) ---
cfset kpg.initialize(2048, createObject('java',
'java.security.SecureRandom')) /

!--- This will create two keys, one public, and one private ---
cfset kp = kpg.generateKeyPair() /

!--- Get the two keys. ---
cfset privateKey = kp.getPrivate() /
cfset publicKey = kp.getPublic() /




cffunction name=encryptString access=public returntype=Any output=
false
!--- Take in the string to encrypt and the key to encrypt with ---
cfargument name=inputString type=string /
cfargument name=key type=any /

!--- Create a Java Cipher object and get a mode ---
cfset var cipher = createObject('java',
'javax.crypto.Cipher').getInstance(RSA) /

!--- The mode tells the Cipher whether is will be encrypting or
decrypting ---
cfset var encMode = cipher.ENCRYPT_MODE /

cfset var encryptedValue =  / !--- Return variable ---

!--- Initialize the Cipher with the mode and the key ---
cfset cipher.init(encMode, key) /

!--- Convert the string to bytes ---
cfset stringBytes = inputString.getBytes(UTF8) /

!--- Perform encryption ---
cfset encryptedValue = cipher.doFinal(stringBytes, 0, len(inputString))
/

cfreturn encryptedValue /
/cffunction
[/code]

I am actually trying to implement the example from this link
http://www.12robots.com/index.cfm/2010/7/19/Using-Asymmetric-Cryptography-in-your-ColdFusion-Application--Security-Series-1610


I need to use this as a webservice
My webservice will receive 3 parameters (randomTxt, username, password) and
based on that will return the session id along with the public key.

can someone direct me to the correct path?


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339452
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


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,

..
Regards,
AM


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329350
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 that I can use the cfpdfform action=populate with
cfpdfformparam values nested
That will be used for the form values. What if I have no form in my pdf at
all?
How do I created variables (to display, not form variables) in pdf file?
I see the textfield in livecycle designer in object library but again that
will create the texfield type form element in my pdf which I don't want. I
only want to display data there where the company name is not the input
field.


Thanks for your help once again.

Regards,
AM

 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, 
I'm unclear about your question. Are you asking how to create PDF forms in
LiveCycle Designer, or how to refer to fields within those PDF forms from
CF?  Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/  Fig
Leaf Software provides the highest caliber vendor-authorized instruction at
our training centers in Washington DC, Atlanta, Chicago, Baltimore,
Northern Virginia, or on-site at your location. Visit
http://training.figleaf.com/ for more information!


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329357
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 very easy chances, but if client add more sections that will
become very complicate. So, I want to see if I can have in design view just
drop variables and when new changes comes in, it will be easy to modify the
template.

Thanks,
AM


Is there a reason you can't just create the template with HTML and use
cfdocument to create the PDF?  mxAjax / CFAjax docs and other useful
articles: http://www.bifrost.com.au/blog/   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


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329359
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 does have
that capability.

Thanks,

..
Regards,
AM


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329334
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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,


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321992
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 standard CF8 install..
in Eclipse. the hostname is the ip of the server.
port is 80

no context root
then username/password.

in cf administrator. *Allow Line Debugging is checked
and under *Security  RDS
*Use a single password only (default) is selected.*

any help would be really appreciated.

-- 
...
Regards,


~|
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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293881
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:293729
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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,


~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:292261
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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,


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:291744
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Yes Again CFWindow :(

2007-09-25 Thread Asim Manzur
Is there anyway to post the form from regular page to cfwindow?

my main page have a form. when this form submits, I want to open a
cfwindows, (so the action page for that form will be cfwindow)  do the
other steps and on closing the page. I can navigate the main page to
som where.

-- 
...
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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289409
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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


~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288890
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 making a call to the function
cfoutputmakeWindow('summary','Project
Summary','#request.self#?fuseaction=#attributes.XFA.btnSummary#project_id='+MyProjID,700,500);/cfoutput

The problem is when this window opens its not refreshOnShow.

if i open this window. Inside that window I have a form, i submit the form
saw the confirmation page, and closed the window.

now if ever I come back to same window, it shows me the confirmation page,
not the form page.


Also is there any way to get the window name from Javascript?

Any trick to close the window if you don't know the name of the window? or
just to check if this window is open or not?

Thanks.


~|
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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288489
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:288156
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 return only one row ) and need to
display that in different text boxes.

I am using the codes below. The error I am getting is
error:bind: Bind failed, element not found: proj_id

here are the codes.

CFC
--
cffunction name=getProjects access=remote returntype=query
cfargument name=userid required=no default=#session.userid#
cfquery name=qryGetProjects datasource=Bundler_Dev
SELECT a.*, b.type, c.status
FROM   project_master a, project_types b, project_status_types c
WHERE  a.pst_id = c.pst_id
ANDa.type_id = b.type_id
ANDa.user_id = #arguments.userid#
ORDER BY project_name
/cfquery
cfreturn qryGetProjects
/cffunction

cffunction name=getSpecificProject access=remote 
returntype=query
cfargument name=proj_id required=yes
cfquery name=qryGetProjects datasource=Bundler_Dev
SELECT a.*, b.type, c.status
FROM   project_master a, project_types b, project_status_types c
WHERE  a.pst_id = c.pst_id
ANDa.type_id = b.type_id
ANDa.project_id = #arguments.proj_id#
ORDER BY project_name
/cfquery
cfreturn qryGetProjects
/cffunction


here is the form.

cfform name=DataForm action= method=post
cfselect name=proj_id height=70
bind=cfc:MyCFCPath.getProjects(#session.userid#) value=project_id
display=project_name bindonload=true /


and this is the text field where I need to display the value on the
cfc function call


cfinput type=text name=title size=53
bind=cfc:MyCFCPath.getSpecificProject({proj_id}) bindonload=false


Thanks,





You've lost me. Are you syaing you want the cfinput to bind to the
select? Did you try bind={proj_id} in the text input?




~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287691
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 tried putting the onchange on cfselect, but how to bind that value
to the text cfinput field.

Appreciate any help in this.

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287544
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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.

-- 
...
Regards,


~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287307
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 rounds this.

Isn't it suppose to be the same result in CF7 and CF8 if its backward
compatible?

Thanks,



If it is just a dump change, then why do you care? Ie, is it still ok
in a simple cfoutput? cfdump is a debugging tool and changes from
version to version, so expectations on how it looks/displays may not
always be a good idea.





~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287313
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 perhaps set to 4?  I know in some prior
version of CF we had some values from Oracle start showing up with one
decimal place and it was due to a driver change in CF and how our columns
were defined in the database.  I thought though when that happened we had
no
precision/scale defined.





~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287317
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 cfoutput does it output ok?





~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287319
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287320
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284287
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284289
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284288
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276790
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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.
   Filename: #data.filename#
   cfmailparam file=#data.filename# type=text/plain
/cfmail
 /cffunction

The event is executing as soon as the new file created.
If I take the cfmailparam file=#data.filename# type=text/plain line
out everything works fine.
With this line in the code its generating the error in exception.log.

Error invoking CFC for gateway SendLogsEvent: String index out of range: -1
java.lang.StringIndexOutOfBoundsException: String index out of range: -1


Pelase advise.

-- 
...
Regards,


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276598
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: directory watcher

2007-05-01 Thread Asim Manzur
I took the line out for attachement and add the variable name
#data.filename# there.
The email I recevied it has a correct filename with the correct path.

It looks to me that everything is fine except when I add the attachement.

Just wanna make sure that there is no limitation using 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:



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276632
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: directory watcher

2007-04-30 Thread Asim Manzur
On my directorywatcher gateway I have a following CFC function.

cffunction access=public name=onAdd output=no
   cfargument name=CFEvent type=struct required=yescfset data=
CFEvent.data
 !--- log this action ---
   cflog file=TemplateCacheEvents application=No text=ACTION:
#data.type#; FILE: #data.filename#; TIME: #timeFormat(data.lastmodified)#

   cfmail to=[EMAIL PROTECTED]
[EMAIL PROTECTED]New Log File Created!
Msg: Log file attached.
Filename: #data.filename#
cfmailparam file=#data.filename# type=text/plain
   cfdump var=#data.filename#
   cfmailparam file=#data.filename#
/cfmail

/cffunction

The above codes is working if I take the cfmailparam out . But I need to
send the new file attached in the email.

This function is generating the following error (exception.log).

Error invoking CFC for gateway SendLogsEvent: String index out 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

 --
 ..
 Regards,




~|
Create Web Applications With ColdFusion MX7  Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276556
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:276381
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Image manipulation

2007-03-01 Thread Asim Manzur
What is the best tool in the market to resize/crop the uploaded images in
coldfusion.

The scnerio will be like the visitor will upload the image and then he/she
should have resize, rotate, crop and the other smiliar kind of functionality
available.

I don't mind buying any commercial CFX, 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/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:271173
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


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 is only
for up to 2 CPUs.

What will happen with this install (is CF going to stop working? will it
convert to the developer edition after 30 days?)

Can someone advise?

...
Regards,
Asim


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257879
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 through CFAdmin.

Russ




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257885
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


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 the style tag?

Thanks once again.

Regards,



document.getElementById(id).style.display = table-row;

Hmmm, the display argument in a style should be one of  inline block
or none I think.
I get the same error message with wrong values for display.

--
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.

~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223822
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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, what I was trying to do is once those qforms gonna make those
fields background red, just display that tr too.

and in IE its giving me an error, and in firefox it gives me an error
as well as it displays correctly too.

Please advise.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:223711
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


FlashForm

2005-10-28 Thread Asim Manzur
Hi all,
A quick question.

I have a flash form and on cfinput type=checkbox I have a function call
with a value on onClick event.
on that function I can alert(var) and its displaying the value.
The problem I am having is I need to run the query there with this var. i.e.
WHERE ID = var

its 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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:222550
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 provide some sample codes?
 --
Regards,


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:222554
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FlashForm

2005-10-28 Thread Asim Manzur
thanks for your help, I have a strong concept of remoting. so, I can write
something up.
 What I was wondering that I was using the following

cfgrid name=tracking height=250 visible=no
 Now that not gonna work becuase that query will generate dynamically from
remoting call.
 How can I assign 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 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:222560
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 j_image from getSQL)
/cfquery

 The error is
   Error Executing Database Query.
*Query Of Queries syntax error.*
Encountered name NOT IN ( select at line 0, column 0. Incorrect
conditional expression, Expected one of [like|null|between|in|comparison]
condition,   The error occurred in *C:\Inetpub\wwwroot\test3.cfm: line 31*

29 :select j_image from Judges
30 : /cfquery*31 : cfquery name=getList2 dbtype=query*
32 :select * from getImg
33 :where name NOT IN

  --
Regards,


~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220960
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 records.
 I need to create the third query which contains all the records but not the
one which are pulled from Judges table.
 in other words,
select * from getList, GetSql where getlist.name http://getlist.name 
getSql.image


--
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: http://www.houseoffusion.com/lists.cfm/link=i:4:220869
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218939
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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: http://www.houseoffusion.com/lists.cfm/link=i:4:215897
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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.
   
  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 been choose from the first dropdown, 
  then 
  this option should be taken out from the query, so this option will not 
  exist in the other dropdowns. and same with the second dropdown, and then 2 
  options (first option is already out ) will be out from the remaning 
  dorpdowns. 
  
  -- 
  Regards,
  
 
 
 
 -- 
 Regards,



~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215412
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 think flex doesn't recognize it and throwing the error.
so, once I change the option in drop down those routines are called four 
times (there are five dropdowns in total). and that var is not a global so, 
it initialize everytime and not keeping the old value.

Thanks,
 
  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.

   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 been choose from the first 
   dropdown, then this option should be taken out from the query, so this 
   option will not exist in the other dropdowns. and same with the second 
   dropdown, and then 2 options (first option is already out ) will be out 
   from 
   the remaning dorpdowns. 
   
   -- 
   Regards,
   
  
  
  
  -- 
  Regards,
  
 
 



~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:215413
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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, if an option 1 has been choose from the first dropdown, then 
 this option should be taken out from the query, so this option will not 
 exist in the other dropdowns. and same with the second dropdown, and then 2 
 options (first option is already out ) will be out from the remaning 
 dorpdowns. 
 
 -- 
 Regards,
 



-- 
Regards,


~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214997
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 been choose from the first dropdown, then 
this option should be taken out from the query, so this option will not 
exist in the other dropdowns. and same with the second dropdown, and then 2 
options (first option is already out ) will be out from the remaning 
dorpdowns.

-- 
Regards,


~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214807
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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,


~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214600
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 can provide some sample code
 -- 
 Regards,



~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214624
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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();
//txturl.setRequired = yes;
what do I put something here which set the second filed to required=yes 
dynamically.
}

-- 
Regards,


~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214218
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212851
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 39048 around line 0 exceeds 32K span. If
possible, please refactor this component.

I google it and found the following link explains the problem
http://www.designrepublik.com/

it says that 
You can avoid this problem if you set FrameProfilingEnable=0 instead of 1. 

But I think that is for the Flex installations, I seach and couldn't
find it on my cfmx installation directory nor on cfmx adminsitration.

please advise.

-- 
Regards,

~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212303
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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
freezes on the below scenario.

1). submit the blank form.
2). it will show you the error dialog box, just hit space once.
3). now try to hit the okay button on error dialog box, 

That error dialog box will never disappear and locks up the cfform.

-- 
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: http://www.houseoffusion.com/lists.cfm/link=i:4:212112
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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: http://www.houseoffusion.com/lists.cfm/link=i:4:212124
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 first select box. how can I get the Distinct value of the
states

CFQUERY DATASOURCE=#DSN# NAME=TestQuery
  SELECT *
  FROM List
/CFQUERY

CF_ThreeSelectsRelated
Query=TestQuery
Display1=State
Display2=City
Display3=Name
Value1=State
Value2=City
Value3=Name
EmptyText1=Pick a State
EmptyText2=Pick a City
Emptytext3=Pick a Name


-- 
Regards,

~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208711
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: ThreeSelectRelated Distinct value

2005-06-06 Thread Asim Manzur
Thanks Elena,

I tried it in this way, and the result was same, it didn't work.
any otherway to run the query, which give me the distinct value, i.e. QoQ?

Thanks




CFQUERY DATASOURCE=#DSN# NAME=TestQuery
Select distinct state, city, name from list 
/CFQUERY

Or try the select distinct * from 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,

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208721
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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
  SELECT *
  FROM List
/CFQUERY

CF_ThreeSelectsRelated
Query=TestQuery
Display1=State
Display2=City
Display3=Name
Value1=State
Value2=City
Value3=Name
EmptyText1=Pick a State
EmptyText2=Pick a City
Emptytext3=Pick a Name


-- 
Regards,

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208620
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 goback and change it.
 Now here I am having a problem. Once user upload the file(s), he will see 
the preview of those images which he uploaded.
I have put the file names in the session and preview them after uploading.
 Now how this thing works, that if user need to change the images?
should I give the hyperlink to the user on image where he can click on the 
preview page, go to the next page and change the picture?
should it be form radio button to select the image and click change?
 I mean what is the best logic that I can use here.
 Thanks,

-- 
Regards,


~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208019
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 the preview to the user that these are the files that 
 he uploaded. He can confirm at this stage or goback and change it.
  Now here I am having a problem. Once user upload the file(s), he will see 
 the preview of those images which he uploaded.
 I have put the file names in the session and preview them after uploading.
  Now how this thing works, that if user need to change the images?
 should I give the hyperlink to the user on image where he can click on the 
 preview page, go to the next page and change the picture?
 should it be form radio button to select the image and click change?
  I mean what is the best logic that I can use here.
  Thanks,
 
 -- 
 Regards,
 



-- 
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208025
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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, which doesn't gives the security error?
 Thanks


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208139
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205901
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: HASH() reverse

2005-05-06 Thread Asim Manzur
So, it means there is no software/tool available for reversing the hash() value?
Anybody aware anything about it?



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,


-- 
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205907
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202112
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200222
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


X-Mailer value

2005-03-19 Thread Asim Manzur
Is there anyway to change the X-Mailer value?

I tried 

cfmailparam 
name = X-Mailer 
 value = Put some text here  

but in result it shows two X-Mailer in the header of the email
X-Mailer: ColdFusion MX Application Server 
X-Mailer: Put some text here 

Is there any way to replace 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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199466
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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
 value = Put some text here 
 
 but in result it shows two X-Mailer in the header of the email
 X-Mailer: ColdFusion MX Application Server
 X-Mailer: Put some text here
 
 Is there any way to replace 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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199469
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199470
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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

2005-02-17 Thread Asim Manzur
Thanks guys, atleast I've hope now that it is possible.

I setup the trial version of BlueDragon and playing with that now.

First I do not have to translate all the C# codes in coldfusion.
because I just have a web application. secondly. When I look for the
aspx codes I saw that developer is using the parameter Codebehind
which confirms that the codes are compiled.

Now what i need to do is I need to import those codes somehow in
Coldfusion so I can add more functionality in the applicaiton.

in the aspx the developer used
%@ Page language=c# Codebehind=Login.aspx.cs
AutoEventWireup=false Inherits=PFWeb.Login %

I was trying
cfobject component=TTWeb.Login action=create name=templogin

I am using BlueDragon and I got the error
A request was made to a resource that could not be located

Somehow I can't use the cfinclude page= because it contains all
the html as well. ( i think ) when I use include it shows me the login
page with all the tables and so on. which is not defined in the aspx
file.

What I was thinking that if I created the file test2.aspx and put this
code in that file in ordre to import the C# codes
%@ Page language=c# Codebehind=Login.aspx.cs
AutoEventWireup=false 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): 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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195186
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 language=c# Codebehind=MyFile.aspx.cs
AutoEventWireup=false Inherits=PFP.CreateUserDocument %


How is this possible to do in coldfusion, is it something which I need
to use and register the COM Object??

Am I going to the right path?

-- 
Regards,

~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195100
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 Firstname  
LNAME  My Lastname
STATE  ON  
ZIP  myzip/postal code.

when i try to reference that variable directly like 
#lines[2]['Address']#

it gives me an error.
Element Address is undefined in a CFML structure referenced as part of
an expression.


When I tried 
#lines.2.address#

Element 2.ADDRESS is undefined in LINES. 

can someone point me out where I am wrong in this case?

Thanks

~|
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194304
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Weired Problem with Structure

2005-02-11 Thread Asim Manzur
yes when I dump the lines
it shows me the structres under strcuture.

struct 
2 struct 
ADDRESS  10 CENTRAL PKWY  
CITY  MISSISSAUGA  
COMPANY  IBM  
COUNTRY  CANADA  
FNAME  DAVID  
LNAME  COPPER  
STATE  ON  
ZIP  L2x2w7  
 
3 struct 
ADDRESS  [empty string]  
CITY  [empty string]  
COMPANY  MICROSOFT  
COUNTRY  CANADA  
FNAME  [empty string]  
LNAME  MILLER  
STATE  ON  
ZIP  TORONTO  
 

infact when I run 
#StructFindValue(lines,david)#

It gives me 
array  
1 struct 
key FNAME  
owner struct 
ADDRESS  10 CENTRAL PKWY  
CITY  MISSISSAUGA  
COMPANY  IBM  
COUNTRY  CANADA  
FNAME  DAVID  
LNAME  COPPER  
STATE  ON  
ZIP  L2x2w7  
 
path .5.FNAME  
 



How are you creating your initial struct? It sounds like you have a
structure that is being built like an array, are you looping over an
array when you build your 'lines' struct? When you cfdump 'lines' does
it show the elements within '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 on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194321
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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#, ,))
   cfoutput#(lines[i][#hd['#gtr#']#])#/cfoutput
  /cfloopBRBR
/cfloop

thanks

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194323
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194327
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191814
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Export to Excel

2005-01-26 Thread Asim Manzur
I just need the simple excel output.

This is what I am using and no error and no excel file.

meta http-equiv=pragma content=no-cache
cfheader name=Content-Type value=application/x-msexcel; charset=UTF-8 
cfheader name=Content-Disposition value=MyExcel.xls 


thanks

PS: Again no result if I post 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,
 didn't showed up, tried again from website didn't comes up either. now
 sending through email.
 


-- 
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 it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191835
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189372
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 = Server.CreateObject(ADODB.RecordSet)
dbrs.Open SQLstr, dbConn, , , adCmdText
dbrs.Close
Set dbrs = Nothing

please someone help. 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189295
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 executables
then it started working like a charm.

gabe

-Original Message-
From: Andy Allan [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 23, 2004 10:10 AM
To: CF-Talk
Subject: Re: How to make mx run all .php extensions

cfmxroot/wwwroot/WEB-INF/web.xml

Though I'm sure you're aware you can't actually process PHP code via CFMX

Andy


On Thu, 23 Dec 2004 10:04:28 -0500, gabriel l smallman [EMAIL PROTECTED]
wrote:

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188700
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188541
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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#]')
  
  This is giving me the following error
  
  Parameter 1 of function IsDefined, which is now 
 form[Desc_ID1], must be a syntactically valid variable 
 name.
  
  

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188571
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 anything yet.

Can someone point me to the right direction?

Thanks

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188371
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 fill up all the fields and when he submit the button he 
was prompt to re-login.

I want to show the use right when he come back he should see the logout page.

how to re-direct the browser automatically to the loguout page when session 
expired.

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188268
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Force user to the login page automatically

2004-12-20 Thread Asim Manzur
You mean to put the blow code in application.cfm??


InvalidTag language=JavaScript!--
setTimeout('Redirect()',4000);
function Redirect()
{
 location.href = '../htmljavascript.htm';
}
// --/script




Use a timed javascript redirect.  Set the timeout length the same as the
session length.  You 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 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 fill up all the fields and when he submit the
button he was prompt to re-login.

I want to show the use right when he come back he should see the logout
page.

how to re-direct the browser automatically to the loguout page when session
expired.

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188279
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 
funciton ? ?



Thanks Pascal, This is exactly what I want.

Really appriciate that.





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187795
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187557
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 Occurred While Processing Request  
Form entries incomplete or invalid.  
Dry Van
Yes
The value entered for the BILLED field ('0') is not correctly formatted.
 
 


Maybe?

cfloop index=field list=#queryname.columnList#
cfoutputinput type=hidden name=#field# 
value=#queryname[field][1]#/cfoutput
/cfloop


Jerry Johnson
Web Developer
Dolan Media Company

**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 Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187563
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187558
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 are not allowed as part of a form 
 field name.
 
 That is not your error, though.
 
 It looks like you are doing some sort of error checking on the 
 receiving page. It seems that the data in your query is failing that 
 validation.
 
 I am stuck, too. Hopefully you can get some ideas why this isn't 
 working from others on this list.
 
 Can you list the field names? can you list the value passed for 
 BILLING? can you list the expected value for BILLING?
 
 Jerry
 
 Jerry Johnson
 Web Developer
 Dolan Media Company
 
  [EMAIL PROTECTED] 12/14/04 10:48AM 
 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.  
 
 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187573
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 default=_asim
type=string
   cfset var key = 
   cfset var newkey = 
   cfset var value = 
   cfset var fieldnames = 
   cfif Len(extension) AND NOT StructIsEmpty(stForm)
   cfloop list=#StructKeyList(stForm)# index=key
   cfif key NEQ fieldnames
   cfset newkey =
REReplaceNoCase(key,#extension#$,)
   cfif newkey neq key
   cfset value = stForm[key]
   cfset StructDelete(stForm,key)
   cfset stForm[newkey] = value
   /cfif
   cfset fieldnames =
ListAppend(fieldnames,newkey)
   /cfif
   /cfloop
   cfset stForm.fieldnames =
ListSort(fieldnames,textnocase)
   /cfif
   cfreturn true
/cffunction

Pascal



~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187604
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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, _integer, _float,
_time, _range (check the docs to see if the list is complete)

Looking at your error, I suspect you have billing_date as a form field.

This will give you problems with your automated cfquery2form. As a
workaround, you could add a custom extension (like _asim at the end of
the form vars and strip it of in the action page:

cffunction name=Query2Form returntype=string output=false
   cfargument name=query required=yes
   cfargument name=extension required=no default=_asim
   cfset var i = 
   cfset var out = 
   cfif query.recordCount
   cfloop list=#query.columnList# index=i
   cfset out = out  'input type=hidden
name=#i##extension# value=#HTMLEditFormat(query[i][1])#'
   /cfloop
   /cfif
   cfreturn out
/cffunction
cffunction name=CleanForm returntype=struct output=false
   cfargument name=stForm required=yes
   cfargument name=extension required=no default=_asim
   cfset var stTmp = StructNew()
   cfset var key = 
   cfloop collection=#stForm# item=key
   cfset stTmp[REReplaceNoCase(key,#ext#$,)] =
stForm[key]
   /cfloop
   cfset stForm = stTmp
   cfreturn true
/cffunction

Pascal

PS I wrote the code in the mail and didn't test it at all.

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.

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187591
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 number (it need to be increament to 200412130002
for the next number).

The query I have above how do I modify in order to get the same
sequence (which jumps to the 14 on tomorrow rather than 13

Can some one advise please.

--
Regards,

~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187430
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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,

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:187428
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFMX Shopping Cart?

2004-12-09 Thread Asim Manzur
Is it something else without the fusebox??



I've had nothing but success with CFWebstore www.cfwebstore.com. Support
is excellent, code is well documented.  Easy to use and customizing it
is great.

Take a peek.  It's not free, but it's definitely not expensive.  Amazing
value for what you get.

-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 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

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186826
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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??

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186831
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186668
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 of this problem. Is it a java script technique 
or do we have something in coldfusion? 

Thanks everyone. 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186346
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 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 of this problem. Is it a java 
 script technique or do we have something in coldfusion? 
 
 Thanks everyone. 

~|
Special thanks to the CF Community Suite Silver Sponsor - RUWebby
http://www.ruwebby.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186347
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


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 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 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 of this problem. Is it a java 
 
  script technique or do we have something in coldfusion? 
  
  Thanks everyone. 

~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186348
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   3   >