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 bkrike 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: dzr
  • Content: Threads
  • Order by date
  1. dzr

    max filesize during capture

    I have a 90 minute long mini dv I'm trying to capture straight off the camera. The files are going to an external hard drive with 200GB free space on it. The capture goes just fine until the file reaches 4,115,657 KB at which time the capture stops and gives a "max filesize reached" error...
  2. dzr

    Delete all cookies I set???

    Can anyone tell me why this wouldn't work to delete all cookies? I displays them all fine.... thanks! function delete_all_cookies(){ //reading and splitting the whole cookie //reading and splitting the whole cookie var whole_cookie = unescape(document.cookie); var each_cookie =...
  3. dzr

    Need Advice: need to record page visit [cookies/sessions] for CD

    Please can anyone advise me as to the best way to go about this?? We have a step by step tutorial that is will be on CD. The process is linear but the user can break out of the steps and go to other chapters. We need to mark all pages they have visited as "you have visited this page before." I...
  4. dzr

    help! set selected items in listbox selected from database items

    I have an array of numbers 3,6,10,15 and they print just fine in a loop but when I try to set the multiselect items they match, I get a "Object reference instance of an object." error. html output: <select size="4" name="jobtypes" multiple="multiple" id="jobtypes"> <option...
  5. dzr

    TemplateField helper function passes variable name not value

    I have the field user_is_active in a table - 1 = active, 0 = inactive. I have a GridView set up and I want it to display text "active/inactive" instead of 1/0. Easy right? It seems to be passing the variable name "user_is_active" instead of the value 1 or 0 so all records are showing...
  6. dzr

    datareader making form checkbox checked

    i thought i had gotten this but it's acting weird. i'm getting a "1" displayed next to the last checkbox in a set of 3. 3 checkboxes - all seperate fields so no multi-select - just on or off.. each one looks like this: aspx form: <tr> <td align="right"> Training </td> <td...
  7. dzr

    Want to use and Update as an Insert... :-(

    Ok, I'm trying to actually code some stuff by hand since I can't seem to get simple enough directions on how to make a form that loads up all the current data from one table (as in an update) but instead of updating, it inserts the edits into another table (or at least a new row into the same...
  8. dzr

    need help w/ database issue vs. gridview &amp; add/edit forms

    program_table -- all program data topics_table -- program topics - 1 record for each row so 1 program may have 20 rows in this table with the foreign key = program_table.id so grid view only supports 1 table so add/edit forms have to be hand made do i put it all in a table and have the topics...
  9. dzr

    easy one? checkbox validation

    stumped again! trying to do validation on a check box - real simple - i just need to be sure the checkbox for the policy agreement is checked before submit is ok. -the best case scenario i have had is no error, but nothing - it allows submit -i have tried putting the test for checked in...
  10. dzr

    retrieve textbox value from form submit

    My textbox (textarea) isn't inserting any values into the database. the code below is what i'm using - it works for all the other fields: string program_desc = (Request.Form["program_desc"]); I did read somewhere that it's better to access the value with the .Text but that's giving me an...
  11. dzr

    reading fields submitted by a web form

    Getting fields submitted by a web form, I was wondering if there is a loop that can replacing doing this for every field: string email = (Request.Form["email"]) ?
  12. dzr

    Query Problem - Errors every step

    I tried to get be independant but, please oh please will someone help me out! I just can't seem to get a grip on the way to approach this and there is way too much chaotic info on the web... I need: 1. entry form submit -- 2 fields from form inserted into table 1 2. remaining form fields and...
  13. dzr

    what's the correct way to use scope_identity() (and SQL in general)

    One last questions... scope_identity() I can't seem to find a detailed yet simple overview on using scope_identity() My main questions is do I *have* to do it in a stored procedure? Can I get away with an entire application without ever using a stored procedure? (as well as all the fancy...
  14. dzr

    What is the correct way to Connect then Query ??

    Below is my db connection & insert code. It's working fine but I just kind of patched it together and am confused on how/what it's doing... I need to go --> insert into table 1, select_identity, insert into table 2 & 3... Is there a simpler way or better order so I don't have to copy all...
  15. dzr

    Help! Experience PHP programmer cannot get a grip on ASP

    I'm totally new at asp so pardon the obtuse questions... I need some hand holding. I tried the asp.net forum but they are kind of slow and unfriendly. I always had great luck in the tektips Flash forum so I'm hoping I can get someone here to take me under their wing. I have chosen C# code...
  16. dzr

    actionscripting 101 ... avoiding the timeline

    help for an idiot -- actionscripting 101 I'm not very good at flash. PHP by trade so forgive the ignorance. What I want to do is a basic slideshow with as much actionscripting as possible since I'm so bad at working w/ the stage. The images cannot be dynamically loaded. The problem is I don't...
  17. dzr

    CSS Gurus please oh please help me! bold font issue...

    So I have a web page and I'm trying to use css -- very very basic styles so I didn't even bother making seperate styles for IE, N4, Mac, PC... It was all good until the client tripled the text put into the same amount of space and wants different words bold... you can see the styles at...
  18. dzr

    CdRom- image loading -- going insane... help :-(

    i am new at flash. please, please help me!!! goal: create a swf photogallery that easily can be reused. to change it to a new gallery - the only code needing to be altered is directory name and file names. all photos will be the same size... end result: on a cdrom -> main menu with 4...
  19. dzr

    preloader- dynamic images .. arrgghh

    First of all, I promise I have been trying to read old posts and figure this out before I post but... I am make a resume cd for some photography of mine and used this photo gallery tutorial: http://www.kirupa.com/developer/mx/photogallery.htm I have made some changes and am happy with how it...
  20. dzr

    oh help~ preloader confusion

    I already posted this but I'm not sure it was conherent enough to answer... I have a flash slide show that uses loadMovie to dynamically load the pictures from an external directory. I have made this file into an exe and burned it onto a disk with and auto-run. All works great except it has...

Part and Inventory Search

Back
Top