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 Wanet Telecoms Ltd 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: *

  • Users: KizMar
  • Content: Threads
  • Order by date
  1. KizMar

    Barcode Fonts

    Anyone have usefull information when your company decides to start adding bar codes to documents that are created using Word & .NET? Things like; which kind is the best, where to buy, can you get them for free?
  2. KizMar

    HTML Links with iFrames

    It is possible to link someone to a an index page with a 'main' iframe and send them to a certain page within that iframe? Example: http://www.balloonattics.com I want to be able to send someone to this page, and have the iframe load a page other then the "src" page in the iframe.
  3. KizMar

    JavaScript & Netscape 7+

    Why is it that the following line: <script language=&quot;JavaScript&quot;>t.submit();</script> ...will submit the form in IE 6, but Netscape just sits there, like the form isn't submitting?
  4. KizMar

    Refresh on Focus

    How do you code a page so when the window &quot;focus()&quot; is set the page will refresh?
  5. KizMar

    Why would it be that when I call a

    Why would it be that when I call a function: &quot; function validateZip(textObj) { // Must be all numbers and 5 digits var str = textObj.value var aChar = &quot;&quot; var formObj = document.frmAbstractor if (str.length != 5) { alert('Please enter a valid Zip Code.')...
  6. KizMar

    Session Variables (passback)

    I'm having an &quot;I've never done this before&quot; issue: I'm using 2CheckOut to do credit card verification for me. When the transaction is complete, I'm having them redirected back to my page. They say they pass back the customer's variables that I can pull at that point. The problem is, I...
  7. KizMar

    Session Variables (Request)

    I'm having an &quot;I've never done this before&quot; issue: I'm using 2CheckOut to do credit card verification for me. When the transaction is complete, I'm having them redirected back to my page. They say they pass back the customer's variables that I can pull at that point. The problem is, I...
  8. KizMar

    CGI &amp; Forms &amp; Validation

    I'm used to using JavaScript to validate data input when the &quot;Submit&quot; button is clicked, if validation checks out, I change a hidden field to &quot;ON&quot;, and submit again to catch the VBScript / PHP function that actually builds and sends the e-mail with the form input in HTML...
  9. KizMar

    TransparencyKey

    I'm trying to make a form that has an irregular shape and I'm not quite understanding how this works. I can get the Transparency Key to work for the form background (make the background of the form see through). When I put an image on the form it doesn't work. I am reading a book that says what...
  10. KizMar

    Padding?

    Problem: I have a column that's a float (currency), so I could have &quot;110.01&quot; or &quot;1.2&quot; or &quot;12&quot; in the fields. I need this field to show as 11 characters set. Ex. &quot;00000123456&quot; - where the last two digits are the cents. I have the front of the string...
  11. KizMar

    Command Button Access Keys

    Lets say I have two buttons on a forms called cmdZoomIn and cmdZoomOut. These buttons have images rather then text to denote the action of the button. Is it still possible without using the &quot;Text&quot; property (ex. &quot;Zoom &In&quot;) to assign an access key to the button?
  12. KizMar

    Transparent iFrame Backgrounds

    Is it possible to throw an iFrame in an HTML page and make the iFrame's background transparent so it shows the background of the parent HTML page?
  13. KizMar

    Converting INT to DATETIME

    How would you convert an 8 digit int '20020912' (represents a date) into a datetime data type?
  14. KizMar

    Microsoft Exchange Forms Designer

    Does anyone know anything about this program?
  15. KizMar

    Padding Zero's

    Using SQL Query Analyzer: How can I pad zero's in front of a varchar/str field to make the length 10 no matter how many characters are pulled in the query? Ex: Pulling &quot;U123&quot;, want it to display as &quot;000000U123&quot; &quot;LOCA01&quot;, want it to display as...
  16. KizMar

    Searching Database Records

    Pop Quiz: What's wrong with this code? When I compile and run it, it tells me &quot;Object variable or With block variable not set, then it points at the &quot;>>>>>&quot;'s. Private Sub cmdSearch_Click() Dim strSQL As String Dim strType As String Dim strName As String Dim strColor As String...
  17. KizMar

    Crystal Reports 9 - White Text in Text Object

    I'm having a problem... I have a lot of reports that we use a colored background and white text on. I'm noticing in CR9 that when you edit a Text Object with white text in it, you can't see what is in the box because the background of the text object is white. Is there a way around this
  18. KizMar

    Passing Parameter Values to Multiple Reports

    I'm trying to find out if there is a way to select say a group of reports in a folder and throw a parameter value list in a common parameter between all reports. For example, we have a parameter of &quot;Customer&quot; and about 40 reports that have that same parameter. I have a .txt list of...
  19. KizMar

    SQL Code for Turn Around Time

    Does anyone have a good chunk of SQL code for a stored procedure that I can use for calculating a turn around time on a DateTime field including days, hours, and minutes? I need business days only, and minus holidays.
  20. KizMar

    Calculating Turn Around Time

    I have a report I'm creating where I'm pulling a check in date (start date) and check out date (end date) that are datetime fields. What's the best way to calculate the turn around time (time lapsed between in and out) within Crystal (8.5)?

Part and Inventory Search

Back
Top