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 Mike Lewis 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. GryphonsClaw

    Infinite Loop on Data Grid Cell Edit

    Private Sub dgPW_RowValidating(ByVal sender As Object, _ ByVal e As System.Windows.Forms.DataGridViewCellCancelEventArgs) _ Handles dgPW.RowValidating Dim sErrorMsg = "" With Me.dgPW If Not IsNothing(.Rows(e.RowIndex)) Then...
  2. GryphonsClaw

    Infinite Loop on Data Grid Cell Edit

    I am having an issue with a data grid. When the cursor is in cell edit mode and the user clicks outside the grid say to another textbox or button, the data grid enters and infinite loop. I have a RowValidating procedure that is called, and completes with an e.Cancel = true. This is to catch...
  3. GryphonsClaw

    Clicking Server Certificate closes Internet Services Manager

    I have IIS 5.0 and I want to add a certificate. Problem, when I click Server Certificate button, the Internet Services Manager window just closes. No errors or anything in the logs that I see. Anyone experience this before, is my IIS corrupted. I also have no option to edit the SSL ports...
  4. GryphonsClaw

    Adding two Numbers in a CFSET

    If you <cfset variableSomething = "#Accrued# - #Used# = #DollarFormat(Accrued -Used)#"> Then you can do <cfoutput>#variableSomething#</cfouput> and you will get 10 - 5 = $5.00
  5. GryphonsClaw

    Adding two Numbers in a CFSET

    <cfset "#Accrued# - #Used# = #DollarFormat(Accrued -Used)#"> Is what I think you are going for. Of course NumberFormat or Decimal Format would work as well.
  6. GryphonsClaw

    transferring/uploading files - cfftp or cffile

    RAM on the server could be an issue if you do a lot of files at one time for CFFILE moves the file to RAM, then to disk. 5 files at 6 MB when 3+ GB of RAM wouldn't suggest and issue. Timeouts could be your biggest issue as suggested before.
  7. GryphonsClaw

    CFMail Send Excel document in Email

    I want to send a report with an excel document in it. I do not want to attach the file from the server, which involves using the CFFILE tag to write it and doing some kind of clean up afterwards after the mail has left the queue. What I have so far works with GMAIL but not thunderbird. I'm just...
  8. GryphonsClaw

    Snap Server and Windows 2K Network Login

    Not sure this is so much a Snap Server issue than a Windows 2K issue. I have a snap server drive. I can connect to it using Domain authentication. Using my user name I can access the snap server from other Win 2K servers and my XP machine. Using Terminal Services or just logging into the...
  9. GryphonsClaw

    Best Practices for Business Logic

    What is the best practice for separating business logic from presentation? I do a lot of simple programming on our intranet site, mostly form submit to query a database and display a report. I have a CFC that does the query and a cfm that loops through the returned query variable and displays...

Part and Inventory Search

Back
Top