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 SkipVought 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
  • Order by date
  1. dzr

    max filesize during capture

    oh and of course, thank you for responding!!
  2. dzr

    max filesize during capture

    so it sounds like I'm unabled to do anything about it?? you are correct - it's FAT 32 but when i looked at Scenalyzer it seemded like it cut according to scnes, but because I'm transfereing music videos, the scenes arent what i'm worried about, it's the start/end of the video i would need to...
  3. 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...
  4. dzr

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

    I got it working.... I found an awesome set of functions. Very straightforward... Cookie Toolbox http://www.felgall.com/javadom5.htm
  5. dzr

    Delete all cookies I set???

    but how do i get all the names? plan was use the document.cookie to get all the cookie names and values, them and put them in array, split array values so i only have the name... i will have no idea how many cookies are set ... could be 2, could be 50... thanks!
  6. 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 =...
  7. dzr

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

    i figured... any other input on the best way to go about this??
  8. 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...
  9. dzr

    help! set selected items in listbox selected from database items

    there were some typos in my above post... this is more clear: everything below works as expected until #6 where I try to have the multi-select listbox display the selected items in an edit form. 1. form code --i'm populating the listbox with items from the 'jobs' table using a select statment...
  10. dzr

    datareader making form checkbox checked

    the 1 was weird... here's my solution (so simple!) - forgot to add the ToString() on value test. C# codebehind: if (dbDataReader["tbl2_training"].ToString() == "1") { training.checked= true; }
  11. dzr

    help! set selected items in listbox selected from database items

    job types is the array of job titles a user has selected - comma delimited, coming from the DB and split up into just number values. Field is nvarchar in the DB. all the examples on the web are from post-back forms so i couldn't figure out if i needed to loop through the multi-select items and...
  12. 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...
  13. 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...
  14. 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...
  15. dzr

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

    ok, i think i get this. i'll give it a shot...! i really would prefer to use the tools that asp offers... (too bad it won't let me code in php. then i would feel smart again!)
  16. dzr

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

    I Got It! I don't know whether to celebrate or hang my head in shame. I keep the same textbox code as on my input form. <asp:TextBox ID="contact_name" runat="server" Width="250px"></asp:TextBox> On page load, do my select, get results... and then set the variable value... with a data reader...
  17. dzr

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

    my insert looks like this: <asp:TextBox ID="contact_name" runat="server" Width="250px"></asp:TextBox> how can I combine the 2 ways? does it need to be within formview tags? could I do something like this? <asp:TextBox ID="contact_name" runat="server" Width="250px" ><%#...
  18. dzr

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

    Yes that's it Isadore! My insert form works fine, I just want to take that form and fill it up with a record's data to make the edit form but I need more control so, on submit - i can do things ie. send email...
  19. dzr

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

    The below works very close to what I want to do. I did this "updatecommand="insert into..." and it works great! Currently it lists one program at a time and you click 'edit' to get the form fields. I want to 1) have the ID passed in via querystring so the user reaches a page with the...

Part and Inventory Search

Back
Top