RE: Get ID element from CFC

2009-10-06 Thread Marius Milosav
As far as I know you have to send the whole string as an argument to your cfc and then (assuming that the id is the last one) get it: cfset var ID = listLast (arguments.myArgumentList) / Marius -Original Message- From: Adam Parker [mailto:adgpa...@iupui.edu] Sent: October 6, 2009 9:49

RE: stop cursor typing past 500 characters

2009-09-11 Thread Marius Milosav
Actually Text data type is a variable-length type that can hold up to 2147483647 characters The 16 characters is just a pointer to location where the text field data is stored Marius -Original Message- From: Damo Drumm [mailto:damien.dr...@quinn-group.com] Sent: September 11, 2009 9:51

RE: CFMENU - message submenu collapsed. click to expand submenu

2009-08-29 Thread Marius Milosav
Nope, no message (FF 3.5 or IE 8). Also on 8.01 Marius -Original Message- From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] Sent: August 29, 2009 4:09 PM To: cf-talk Subject: CFMENU - message submenu collapsed. click to expand submenu could someone cut and paste the the code

RE: format time to local

2009-07-26 Thread Marius Milosav
Not sure how you are trying to do it, but this should work: cfoutput#dateAdd(h, 5, Jul 26 2009 23:48)#/cfoutput Marius -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: July 26, 2009 11:18 AM To: cf-talk Subject: format time to local hi we have a website used

RE: User Authentication without Session Expiration

2009-06-13 Thread Marius Milosav
Some pointers here: http://www.bennadel.com/blog/1131-Ask-Ben-Ending-ColdFusion-Session-When-Use r-Closes-Browser.htm The idea is to set up the session expiration in CF admin to a few hours (which should give the users enough time to complete the form), authenticate the user using whatever

RE: redirect page

2009-05-22 Thread Marius Milosav
You hav eto go up one directory,try: cfif name ='David' cflocation url=../index.cfm /cfif -- Marius -Original Message- From: Pranathi Reddy [mailto:rk.prana...@gmail.com] Sent: May 22, 2009 12:48 PM To: cf-talk Subject: redirect page Hi , I am trying to move back one directory and

OT Can the user who installed VICO at 172.22.1.150 contact me off list

2009-02-03 Thread Marius Milosav
Thank you Marius ~| 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:

RE: OT Can the user who installed VICO at 172.22.1.150 contact me off list

2009-02-03 Thread Marius Milosav
I now. But it's s user from this list that has installed our app on one of their servers and it's sending an email error notification to me every 5 minutes for the last few days. Marius -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: February 3, 2009 3:15 PM To:

RE: CF Calendar Options

2008-09-23 Thread Marius Milosav
Regards Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: September 23, 2008 3:14 PM To: CF-Talk Subject: CF Calendar Options I'm looking for some good ColdFusion calendar options. Anyone have any good

Re: ANN: Open source ColdFusion CRM solution

2008-08-25 Thread Marius Milosav
I'm sorry Michael, you are right. Believe it or not my first impulse to contact you before hand. CfTalk is a rock solid list for CF development and should remain that way. Anybody who is interested in the first announcement please contact me of list. Thank you Marius -Original

ANN: Open source ColdFusion CRM solution

2008-08-24 Thread Marius Milosav
Hello Everybody, I'm on cf-talk for a lng time and since I remember there were discussions (and complaints) about the lack of cf based open source applications. After some soul searching I have decided to release VICO solution as an open source application under the GPL3 license. VICO is a

RE: Replacing Strings

2007-11-01 Thread Marius Milosav
Try: cfoutput#REReplace('dills','',',ALL)#/cfoutput Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com -Original Message- From: Rick Sanders [mailto:[EMAIL PROTECTED] Sent: November 1, 2007 8:47 AM To: CF-Talk Subject: Replacing Strings Hey list, I'm trying to replace a double

RE: date format display

2007-10-04 Thread Marius Milosav
cfoutput#dateformat(CreateDate (thisYear, thisMonth, thisDay),-MM-DD)#/cfoutput Marius -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: October 4, 2007 9:23 AM To: CF-Talk Subject: RE: date format display Thanks Paul. How is this incorporated into the

RE: date format display

2007-10-04 Thread Marius Milosav
Try removing the quotes around get.enddate #dateformat(get.enddate,MMDD)# Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com It's not about technology, it's about people -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: October 4, 2007 8:43 AM To: CF-Talk

RE: How do I properly check for an empty string?

2007-07-19 Thread Marius Milosav
Probably you will have to trim them first, because an empty space will go through: cfif Len (trim (instructorid)) AND Len(trim (lastname)) ... Add data to the db cfelse Build a query in cf memory of bad data /cfif Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com -Original Message

RE: CFQUERY where id = #valuelist(values from form scope)#

2007-07-06 Thread Marius Milosav
Use cfqueryparam CFQUERY name=upd_vote_yes datasource=#datasource# update dbo.tbl_contest_2007 SET cb_vote1 = 1 WHERE cbcont_id IN cfqueryparam cfsqltype=cf_sql_int list=yes value=#FORM.vote# /CFQUERY Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com It's not about technology, it's about

RE: SSL Installation

2007-06-22 Thread Marius Milosav
Check the port. Something like this: cfif cgi.server_port neq 443 cflocation url=https://www.domain.com; /cfif HTH Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: June 21, 2007 5:26 PM

RE: need help with updating date field

2007-05-30 Thread Marius Milosav
You are missing a comma after '#form.Fax#' Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com -Original Message- From: Imperial, Robert [mailto:[EMAIL PROTECTED] Sent: May 30, 2007 12:21 PM To: CF-Talk Subject: need help with updating date field I know this is probably obvious

RE: Project Time Tracking Software?

2007-05-22 Thread Marius Milosav
either as SaaS or deployed on your servers. If you (or anybody else wants) more information please let me know. Best Regards Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com mmilosav at scorpiosoft.com It's not about technology, it's about people -Original Message- From: Joe Rinehart

RE: Where do you buy ColdFusion?

2006-12-06 Thread Marius Milosav
This one is pretty good too: http://www.softwaremedia.com/category/175.html Marius -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: December 6, 2006 9:26 PM To: CF-Talk Subject: RE: Where do you buy ColdFusion? Just wanted to point out, in case this was not clear,

RE: CF Project Management Tool

2006-09-29 Thread Marius Milosav
Hi, We have a project management module, part of the VICO suite. Let me know if you want to see a demo or need more information. Best Regards Marius Milosav ScorpioSoft Corp. www.scorpiosoft.com mmilosav at scorpiosoft.com It's not about technology, it's about people -Original Message

RE: CSS and list items

2006-06-29 Thread Marius Milosav
Try: ul li style=vertical-align:middle;list-style-image: url(images/icons/home_icon_16x16.gif);something/li /ul And see if it works. Marius -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: June 29, 2006 11:46 AM To: CF-Talk Subject: CSS and list items OK I am

SOT: Adobe Bridges Flash, Flex with AJAX

2006-03-08 Thread Marius Milosav
http://www.eweek.com/article2/0,1895,1935479,00.asp /regards Marius Milosav www.scorpiosoft.com It's not about technology, it's about people ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234733 Archives: http

Is there a Cumulative Hotfix Patch #2 for CFMX 7.01?

2006-01-27 Thread Marius Milosav
Some of our users have start receiving the 500 Resetting to invalid mark error after upgrading to 7.01 This forum thread http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=3threadid=1103217enterthread=y explains the problem and apparently there is a fix for it, but I cannot

RE: Are there any CRM solutions in CF?

2005-10-24 Thread Marius Milosav
specific features you are looking for or if you want more information. /regards Marius Milosav www.scorpiosoft.com It's not about technology, it's about people -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: October 23, 2005 10:26 PM To: CF-Talk Subject: OT

RE: Coldfusion Blog Software sans DB

2005-10-20 Thread Marius Milosav
Thank you, much appreciated. Marius -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: October 20, 2005 1:02 PM To: CF-Talk Subject: Coldfusion Blog Software sans DB Good evening y'all I was wondering if any of the CF based blog stuff can run without a DB? (But what

RE: Coldfusion Blog Software sans DB

2005-10-20 Thread Marius Milosav
Sorry, disregard my previous message. Wrong thread. Marius -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: October 20, 2005 1:02 PM To: CF-Talk Subject: Coldfusion Blog Software sans DB Good evening y'all I was wondering if any of the CF based blog stuff can run

RE: Outlook integration?

2005-10-08 Thread Marius Milosav
- From: Marius Milosav [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Fri Oct 07 16:11:55 2005 Subject: RE: Outlook integration? Hi, We are doing integration with Outlook as we speak with a company called Infotriever. Contact me off list if you want and I will connect you with the right

RE: Outlook integration?

2005-10-07 Thread Marius Milosav
Hi, We are doing integration with Outlook as we speak with a company called Infotriever. Contact me off list if you want and I will connect you with the right person. /regards Marius Milosav www.scorpiosoft.com It's not about technology, it's about people -Original Message- From: DRE

Re: Empty list for an IN clause

2005-03-28 Thread Marius Milosav
try this: cfset mdlList = valueList (Safetrace.R_MDL_MOBLID) cfif listLen (mdlList) gt 0 run your normal query cfelse select * from your table where 0 = 1 /cfif Marius Milosav www.scorpiosoft.com It's not about Technology, it's about people Virtual Company (VICO) Application demo

Re: Two Selects

2004-12-23 Thread Marius Milosav
CF_TwoSelectsRelated tag should work on CFMX no problem. You should enable JavaScript debugging and see if you get any js errors on the page. Marius Milosav www.scorpiosoft.com It's not about Technology, it's about people Virtual Company (VICO) Application demo www.scorpiosoft.com/vicodemo

Re: Two Selects

2004-12-23 Thread Marius Milosav
use JSStringFormat and not evaluate Marius Milosav www.scorpiosoft.com It's not about Technology, it's about people Virtual Company (VICO) Application demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Rick [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent

Re: SPAM-BULK: Forcing text to wrap in table cell

2004-11-01 Thread Marius Milosav
Add the following to your table definition: table style=table-layout: fixed Marius Milosav www.scorpiosoft.com It's not about Technology, it's about people Virtual Company (VICO) Application demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Will Tomlinson [EMAIL

Re: access memo to sql

2004-10-29 Thread Marius Milosav
text or ntext Marius - Original Message - From: Coleman, Brian [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, October 29, 2004 4:12 PM Subject: access memo to sql I'm not sure what to do on this one. I have an access database populated with data that has 5-6 memo

Re: what is it called..?

2004-10-21 Thread Marius Milosav
cfif bitAnd (yourVariable, 2^0) gt 0 ... /cfif Replace 0 in 2^0 with whatever power you want to test for. Marius - Original Message - From: Richard Meredith-Hardy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 21, 2004 11:51 AM Subject: Re: what is it called..?

Macromedia is Flex-ing some muscle

2004-03-29 Thread Marius Milosav
It seems that Flex has been released: http://www.macromedia.com/devnet/flex/?promoid=home_dev_flex_032904 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: cfqueryparam using list attribute NOT IN

2004-01-17 Thread Marius Milosav
You missed the braces: AND g.GenreParentDescription NOT IN (cfqueryparam value=MENU,Genres cfsqltype=CF_SQL_VARCHAR list=Yes) Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

OT .Net? Java? No Thanks, We'll Take Macromedia Instead

2003-09-18 Thread Marius Milosav
Interesting article: http://update.internetweek.com/cgi-bin4/DM/y/ecvx0BddvJ0V30B8Mu0AF Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: Moving from MySQL to MS SQL Server 2000

2003-08-14 Thread Marius Milosav
If you set up a ODBC datasource in Control Panel, make sure that the default database is the one you are connecting to and not the master. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo

Re: Money Datatype Problem

2003-06-14 Thread Marius Milosav
get rid of the quotes. And maybe you should trim the value before so you don't trim it twice, one in the if statement an dthe second one when you insert. cfset hourlyWage = trim(form.HourlyWage) cfif len(hourlyWage)#numberFormat(hourlyWage,999.99)#cfelseNULL/cfif Marius Milosav

Re: Stoneage Print Server

2003-06-12 Thread Marius Milosav
try: [EMAIL PROTECTED] Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Ian Lurie [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, June

Re: conversion of Access datatypes in the query

2003-06-11 Thread Marius Milosav
use the convert function select convert (varchar (11), datetimefield) + stringfield + convert (varchar (10) ,integerfield ) Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: conversion of Access datatypes in the query

2003-06-11 Thread Marius Milosav
Opps, I didn't see the Access requirement. The convert function is working in SQL, I don't know about Access - Original Message - From: Matthew Small [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 10:11 AM Subject: conversion of Access datatypes in the

CFID\CFTOKEN being overwritten from debugger

2003-06-10 Thread Marius Milosav
In the debug window,there are a number of items available for inspection. each of the items can be expanded/closed by clicking on the + (-) sign. Each click is saves the item in the application cookie. If more than 10 items are expanded/closed the cookie written by the debugger JS, will eventually

Re: quick query param question

2003-06-01 Thread Marius Milosav
=#SESSION.Username# /cfquery Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Dave Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, May 31

Re: Request for Review: Variables in CFML

2003-03-29 Thread Marius Milosav
site. thanks. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 29

Possible bug in Updater 3

2003-03-24 Thread Marius Milosav
Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Re: Possible bug in Updater 3

2003-03-24 Thread Marius Milosav
Hi Collin, Thanks for the quick response. Actually the real name of the query is not q. I just used q for the example and the behavior still the same. thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo

Re: mx cfapplication weirdness

2003-03-08 Thread Marius Milosav
check this thread it may help you http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threadid= 410762highlight_key=ykeyword1=null (watch for wrapping) Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo

Re: CFMX Insert query problem

2003-03-04 Thread Marius Milosav
Marius - Original Message - From: Bud [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 2:00 PM Subject: Re: CFMX Insert query problem On 3/3/03, Marius Milosav penned: use: cfqueryparam cfsqltype=cf_sql_varchar value=#form.product_name# and it should take

Re: CFMX Insert query problem

2003-03-03 Thread Marius Milosav
use: cfqueryparam cfsqltype=cf_sql_varchar value=#form.product_name# and it should take care of the problem It is a change in behavior between CF5 and CFMX Thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo

Re: CFMX Insert query problem

2003-03-03 Thread Marius Milosav
I think in 4.5 Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Bud [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 03, 2003 10:11

Re: CFC's and transactions

2003-02-28 Thread Marius Milosav
this for the last two updaters...) At least MM should say if they intend to do it or not and if yes in what time frame. Thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: Convert format

2003-02-05 Thread Marius Milosav
yor query will always return a row and as such the test will fail even if the return item is null replace with this: cfset SESSION.ecom.ordernumber=val(qLastOrderNo.newOrderNumber) + 1 plus the lock if you are on cf mx Marius Milosav www.scorpiosoft.com It's not about technology, it's about

Re: cfqueryparam and unicode

2003-01-31 Thread Marius Milosav
think it will be wise if MM will add that as a note in the cfqueryparam docs. thanks Marius - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 31, 2003 5:11 AM Subject: Re: cfqueryparam and unicode Marius Milosav wrote: Paul

CFMX dies with java.lang.OutOfMemoryError

2003-01-30 Thread Marius Milosav
other setting that have to be adjusted in order to fix this problem? CFMX Updater 2, on W2K sp 3 Thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: CFMX dies with java.lang.OutOfMemoryError

2003-01-30 Thread Marius Milosav
, 2003 2:08 PM Subject: RE: CFMX dies with java.lang.OutOfMemoryError Sounds like there is a memory leak somewhere. Any COM/DLL or cfexecutes in your code? What process is consuming the Memory? WG -Original Message- From: Marius Milosav [mailto:[EMAIL PROTECTED]] Sent: 30

cfqueryparam and unicode

2003-01-30 Thread Marius Milosav
if the following line is part of an insert statement works fine with double byte: N'#doublebytestuff#' but it displays if cfqueryparam is used: cfqueryparam cfsqltype=cf_sql_varchar value=#doublebytestuff# Can cfqueryparam be used to save doublebyte? Thanks Marius Milosav

Re: cfqueryparam and unicode

2003-01-30 Thread Marius Milosav
Can you give me an example or a pointer. Thanks Marius - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 4:46 PM Subject: Re: cfqueryparam and unicode Marius Milosav wrote: if the following line is part

Re: cfqueryparam and unicode

2003-01-30 Thread Marius Milosav
the information is not saved properly and the display shows only So obviously I am missing something Marius - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 5:03 PM Subject: Re: cfqueryparam and unicode Marius

Re: cfqueryparam and unicode

2003-01-30 Thread Marius Milosav
Paul I have tried you example and I have the same result as before. With N'#text#' is working (with or without cfprocessingDirective) with cfqueryparam is failing (with or without cfprocessingDirective) CFMX has updater 2 (version 6,0,0,55693) Thanks anyway. Marius - Original Message -

Re: HELP!!! Character Encoding still

2003-01-18 Thread Marius Milosav
Try to add the following in the head section of the page: meta http-equiv=content-type content=text/html;charset=iso-8859-1 Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: UDF question -- make num a string

2003-01-17 Thread Marius Milosav
try : outNum=finalResult '%'; Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Owens, Howard [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

Re: -OT- Javascript Question

2003-01-16 Thread Marius Milosav
you can use this.name Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Thane Sherrington [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

Re: How do I pick out part of the string?

2003-01-11 Thread Marius Milosav
listLast (/cfdocs/lifemoves/html/announcements.cfm , /) Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Rick Faircloth [EMAIL PROTECTED] To: CF-Talk

Re: Query-of-Query All but [empty string]

2003-01-06 Thread Marius Milosav
try != (not equal): cfquery dbtype = query name = qEMAIL SELECT PERSON, EMAIL FROM qry_PERSON WHERE EMAIL != '' /cfquery Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo

cfchart bug that brings the server down

2002-12-23 Thread Marius Milosav
and no other page can be processed and no error is being thrown, either on the screen or in the logs. The only way to fix the problem is to restart the CFMX service. The problem can be re-created very easy. Has anybody seen this behavior? Is MM aware of it? any fixes? Thanks Marius Milosav

Re: CFC's and transactions

2002-12-08 Thread Marius Milosav
It's a known problem. cfunctions are not transaction aware, meaning the any query inside a cffunction will be automatically committed\rollback . I really hope that this issue will be fix in the next updater. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual

Re: character sets

2002-11-21 Thread Marius Milosav
Keep in mind that the double byte info saved with CF5 won't be properly read by CFMX. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: S. Isaac Dealey

Re: What in the world is this?

2002-10-28 Thread Marius Milosav
there will be increased pressure on MM to deal with the issue. I really hope that this bug is fixed ASAP. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From

Re: Query Problem

2002-10-27 Thread Marius Milosav
you may having. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Jillian Carroll [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, October 27

Re: Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Marius Milosav
by MM as bugs Thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Vernon Viehe [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October

Re: How about Macromedia provide a more detailed configuration document for CFMX?

2002-10-19 Thread Marius Milosav
Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Mike Chambers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, October 19, 2002 7:35 PM

Re: cfczone.org?

2002-10-15 Thread Marius Milosav
can we see anywhere the topics discussed? thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: cfczone.org?

2002-10-11 Thread Marius Milosav
No pressure Michael. I think everybody appreciates the amount of work that you are devoting to keep the lists up and running and the benefits it provides to the CF community. thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO

Re: cfczone.org?

2002-10-10 Thread Marius Milosav
can we see anywhere the topics discussed? thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Rob Brooks-Bilson [EMAIL PROTECTED] To: CF-Talk

Repost: CFCs and transaction spanning across methods

2002-10-09 Thread Marius Milosav
. thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm

CFC's methods and cftransaction

2002-10-06 Thread Marius Milosav
. thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm

Re: Making use of cached queries

2002-10-04 Thread Marius Milosav
replace the double quotes around Yes with single quotes 'Yes' and it should run OK. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: W Luke [EMAIL

Re: Help - Graphs not showing up

2002-10-02 Thread Marius Milosav
we had a similar problem with one customer. They had set a test new environment and the server was never connected to the internet. Because the graphs were flash and they didn't have flash installed the graphs were not displayed. After installing flash everything was OK. HTH Marius Milosav

Mime type

2002-09-25 Thread Marius Milosav
Does anybody knows what is the mime type for chm (compressed help file). thank you Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: Mime type

2002-09-25 Thread Marius Milosav
Thanks, but unfortunately application/mshelp is not the one for compressed help files, just for normal ones (hlp) Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original

OT:CF_HTML2Word

2002-09-22 Thread Marius Milosav
Can somebody send me the CF_HTML2Word tag. For some reason I cannot find it on the MM Exchange. thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: Help troubleshooting MX freezing up each day

2002-09-18 Thread Marius Milosav
While locking the applications doesn't hurt, I think you should lock the cffile process (with named locks) when writing to the log file. This way you are single threading access to the file. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO

CFMX unicode problem

2002-09-10 Thread Marius Milosav
are there. Any help, pointers are greatly appreciated. hopefully somebody from Macromedia can help. I really hope that Macromedia will fix these issues (related to Unicode discrepancies) in the sp1. BTW is there a final date for CFMX sp1? thank you Marius Milosav www.scorpiosoft.com It's not about

Re: CFMX unicode problem

2002-09-10 Thread Marius Milosav
and everything works OK Thanks Marius - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 10, 2002 1:35 PM Subject: Re: CFMX unicode problem Marius Milosav wrote: I really hope that somebody can shed some light with this issue

Re: CFMX unicode problem resolved

2002-09-10 Thread Marius Milosav
The problem was resolved by adding the following to the form page. cfprocessingdirective pageencoding=utf-8 I want to thank you Damon Cooper and Wayne Pozzar who took the time to work with me on this issue. thank you Marius - Original Message - From: Paul Hastings [EMAIL PROTECTED] To:

Re: bug tracking software.

2002-09-05 Thread Marius Milosav
Issue Ticket part of the VHD application. web and build in CF If you want to see a demo let me know. thanks Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message

Re: programmer vs. developer

2002-08-28 Thread Marius Milosav
What about a new term: develogrammer or prograloper For sure will impress managers looking for new buzzwords Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message

Re: WDDX - deserializing error - invalid character code - bug ???

2002-07-16 Thread Marius Milosav
This patch may help: http://www.macromedia.com/v1/Handlers/index.cfm?ID=22955Method=Full Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From

Re: Retrieving foreign characters from DB

2002-07-01 Thread Marius Milosav
/html; charset=your char set cfset setEncoding(URL, your char set) cfset setEncoding(FORM, your char set) Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message

Re: dynamic select

2002-06-30 Thread Marius Milosav
select but you have to manually loop over your query Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Douglas Brown [EMAIL PROTECTED] To: CF-Talk

Re: refresh parent after query update

2002-06-29 Thread Marius Milosav
After the update is completed you can run the following code: script language=JavaScript opener.location.reload(true); close (); /script This will also close the child window. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application

Re: CFTree and IE6 - broken and MM dont seem to be doing anything about it ..

2002-06-22 Thread Marius Milosav
on the tree. I am not sure if it was (is) a browser or CFtree implementation , but the customer doesn't really care. And as you said there was no feedback from MM so we decided to move to a JS/DHTML solution. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual

Re: CFTree and IE6 - broken and MM dont seem to be doing anything about it ..

2002-06-22 Thread Marius Milosav
You will want to replace it with a similar solution ( a tree view representation of your data so the user can select items). There are a number of JS/DHTML or applet solutions available on the web and you can build a CF wrapper against them to achieve the same result as cftree. Marius Milosav

Re: CFEncrypt Utility

2002-06-21 Thread Marius Milosav
*.cfm /v 2 /r should do it. Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm - Original Message - From: Robert Everland [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent

Re: CFMX and unicode

2002-06-07 Thread Marius Milosav
Some of the initial data was stored in char, varchar. But the bulk of it (95%) was n type from the beginning. Since then we had updated all the fields to nchar, nvarchar I hope that we don't have to translate everything again. We were supposed to go live in June and delayed to July to take

Re: CFMX and unicode

2002-06-07 Thread Marius Milosav
The original translation was on an English server with the default installation: Language: English, Code Page CP 1252 So the data that was saved in the database even in nchar (nvarchar) type fields cannot be properly interpreted by CFMX? I know that Unicode is the way to go, but I didn't

CFMX and unicode

2002-06-06 Thread Marius Milosav
success. Probably I am missing something very simple but I can figure out what. thank you Marius Milosav www.scorpiosoft.com It's not about technology, it's about people. Virtual Company (VICO) Application Demo www.scorpiosoft.com/vicodemo/login.cfm

Re: connection error

2002-04-22 Thread Marius Milosav
When the ODBC DSN was set up, the default database is master, so you are trying to connect to the Events table in the master database which doesn't exist. The solution will be to edit the ODBC DSN to point to the proper database HTH Marius Milosav www.scorpiosoft.com It's not about technology

  1   2   >