Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. mokaplanjr

    Querystring causes server to return physical folder paths to browser

    Oh, one more thing. It is a Windows server, though I do not know what version of IIS it is running, if that makes any difference.
  2. mokaplanjr

    Querystring causes server to return physical folder paths to browser

    I don't know if my "subject" made any sense, so here is an example of what I am talking about. I have a site that is on a shared hosting service running CF7. Let's say the site is "example.com." The root folder for all the domains in my account is "htdocs" and the site files are in the...
  3. mokaplanjr

    Submitting form data to a web service that saves it... possible?

    philhege: Thanks, that is exactly what I was thinking and what I was getting at (perhaps not very well) in at the end of my post. I am going to send him some test files to install and try out based on this information. Fingers crossed...
  4. mokaplanjr

    Pricing of web programming and services

    This is really depends on your market location and what it will support. Hourly rates can range from $75/hr up to $125/hr, depending on the market. But it's all negotiable. You say it's expected to be a 40-hour/week job. So, ask yourself, how much would you expect to be paid for a full-time...
  5. mokaplanjr

    Submitting form data to a web service that saves it... possible?

    A client wants to add a form to their site that will post from the website (CF MX 6.1) to an asp.net web service that resides on their internal network and off the web. The network URL is something like "http://myintranet/formsaver". Why use a web service? I don't know; the site runs on a...
  6. mokaplanjr

    Copying Access column from one table to another using SQL

    I need to use SQL to copy a column from one Access table to another in order to get that column's properties (i.e. "Allow Zero Length"). Using alter table to add a column will not allow setting "Allow Zero Length". In other words I want to copy TableA.ColumnX to TableB.ColumnX. Once copied, I...
  7. mokaplanjr

    Concerns: upgrading CF 4.5 dev server to CFMX7 dev server

    I have been developing on the CF 4.5 enterprise development server -- installed on Win XP Pro with IIS -- for many years now. Even as I write, I am downloading CFMX 7 development server (about time, eh?). My question is pretty general. What should I know before installing CFMX7 on the same...
  8. mokaplanjr

    Mark are and select ALL object in that area?

    You can help yourself by building objects on different layers. To edit one layer, click on it in the layers list in the Object Manager, making sure it is visible and editable. To prevent messing up other objects on different layers, click the editing icon (little pencil in CD 8) to dim it...
  9. mokaplanjr

    Rotating and Sizing on own axis

    Have you tried grouping the objects first? Then, do a second click to get the rotate handles; grab the axis pivot point (the little target) in the center of the group and move it to recenter a new axis. Now the whole group will rotate around the moved pivot point, kind of like Curly spinning on...
  10. mokaplanjr

    Digitizing Tablets: Wacom vs. Aiptek... opinions?

    Howdy. First post this forum (I am a web developer and usually hang out in the ColdFusion zone.) Enough about me. My first love is graphics and I am considering the purchase of a digitizing tablet. I know Wacom is reputed to be the best, but I wonder if anybody out there has experience with...
  11. mokaplanjr

    need help with dynamic form field names

    Why not set a hidden field at the bottom of the form that carries a comma-delimited list of the formfield names which you could set up like: <!--- submitting_page.cfm ---> <!--- first create and empty value ---> <cfset fieldnamelist = ""> <!--- next, loop through your code that creates the...
  12. mokaplanjr

    RackSpace - anybody have a CF site hosted there?

    That is the question. We are considering placing sites at RackSpace, but need to know how well there servers handle CF sites, speed, reliability, etc. Let me know.
  13. mokaplanjr

    Excel list box that displays LABELS, but delivers VALUES on click.

    If this seems like a silly question, please don't yell at me. Just help me. I want to make a list box in Excel that will display a series of labels to click on, but once clicked, delivers other values (obtained from various cells with equally various formulas.) Example: A B 1...
  14. mokaplanjr

    I need a template that lists field information (data types, size, etc.

    I have a template that lists field names in a table. Works fine. But I would also like to get datatype and field size information. Anybody?
  15. mokaplanjr

    Formatting output from SQL Server TEXT datatype

    You should take a look at the ReplaceList function. You can replace any combination of characters (including hidden ones like carriage returns) with anything else. For instance, replace a carriage return with <br>.
  16. mokaplanjr

    Cold Fusion Page not returning INT datatypes

    Will it help if your output was formatted like: #NumberFormat(Fieldname, &quot;9999&quot;)# That will set the format to integer with no decimal.
  17. mokaplanjr

    Browser Back Button

    In the template that processes the form, why not place a query before the INSERT code that checks the database for the information on the form, then if it exists, bypass the INSERT and display a message. Something like: <cfif IsDefined(&quot;form.ID&quot;)> <cfquery...
  18. mokaplanjr

    Does &lt;cfscript&gt; improve performance setting application.cfm variables?

    Redid the variables in my application.cfm files to <cfscript>. And while it's generally difficult to tell the difference between zippy and zippier on my local development server, it went &quot;zing!&quot; (I swear I could hear the &quot;zing&quot; sound, but it could be I just need a bacon...
  19. mokaplanjr

    Does &lt;cfscript&gt; improve performance setting application.cfm variables?

    Just letting dasniper and CFHub know I've read your posts and appreciate them. Meanwhile, I am using the information (unfortunately to go back and rework a completed and live site). I will either post a &quot;thanks-it-works-great&quot; or a &quot;help-I-can't-get-rid-of-the-errors&quot...
  20. mokaplanjr

    Weird cffile issue [on MAC/IE]

    Instead of testing &quot;uploadfile&quot; to see if it is blank, instead check it for the existence of the string &quot;.tmp&quot;: <CFIF Trim(uploadfile) DOES NOT CONTAIN &quot;.tmp&quot;> <!--- upload the new file ---> <cffile action=&quot;UPLOAD&quot; filefield=&quot;uploadfile&quot...

Part and Inventory Search

Back
Top