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

    "uncopiable" CD deployment

    that is the problem, how much protection is to much. i have personally felt the wrath from ms on xp. i understand them trying to make life more difficult, but most schemes harm the users more than the pirate. those that pirate will no matter what, all copy protection does is stop those that...
  2. hutchkc

    Batch Update

    if boolean in db then null or "" wont change anything, bool values are by default regarded as false, so try updating the bool fields to false instead of null
  3. hutchkc

    Entering date in DTPicker control

    after reading it again, i determined that you wish for the user to enter the information in 050803 without having to arrow, not programatically. here is a snippet to help, obviously quick and nasty but should get you going in the right direction Option Explicit ' 'declare variables Private...
  4. hutchkc

    "uncopiable" CD deployment

    to the best of my knowledge, there is no way that a cd can be made so that it cant be copied. can you make it inconvient, yep, but impossible i am afraid not. <i>By the way: The most brilliant copy protection I have ever seen (because of its simplicity) was this: a loader program first...
  5. hutchkc

    Entering date in DTPicker control

    whoa lotta code if you want to put 050803 into a dtpicker, all your need to do is progmatically dtp_name.month = 5 dtp_name.day = 8 dtp_name.year = 2003 if you want the user to enter 050803 without tabbing then all you have to do is put code in the keypress event
  6. hutchkc

    help on a SQL query using CAST in SQR

    i would also like to know if it can be done. several of us have tried doing something similar under custom sql. unsucessfull. eventually we gave up and had to modify the db table
  7. hutchkc

    Passing value from EIS to Report

    i have not tried this so i cannot say for sure if it will work, however i can see no reason that it should not. you will probably have to make a global variable and pass the parameter that you wish to display to said variable. in your report you will have a field that has =global_variable. i...
  8. hutchkc

    Display Variable

    i hope i am not misinterpreting you, but if you are using console.write(ln) then the display will only appear in the console window (under view). to display a variable on the screen you must use a field. a label will not work, but fields will accept js code.
  9. hutchkc

    EIS - Brio Javascript - Handling Errors

    total guess here, but since noone else has suggested guess ill give it a go. :) you'll probably have to do a try catch statement. here is my guess of what you will need :label try { send info to db for connection connection.open //hopefully returns an integer for not connected, //if so you can...
  10. hutchkc

    Query on subform data produces unwanted duplicates

    ez access you are running into the same problem that we have found. having multiples causes problems in our report. the suppressing of duplicates hides the duplicates in the results but still shows on the results. if you are looking to have only one row without the duplicates you are going to...
  11. hutchkc

    View 7.0 reports with Active X viewer for 8.5 reports

    unfortunatly, we have/had the same issue. some other teams were using cr8 and we were using cr7. anyone that downloaded the cr8 controls were unable to view the cr7 reports. only way of solving this was formatting, reloading cr7 did no good. the consensus around here is that you have no...

Part and Inventory Search

Back
Top