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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by gonzilla

  1. gonzilla

    Issues on Windows 98

    Hi VBRookie, Thanks for the suggestion. The viewstate is very large and strangely enough, I just added a filter feature for the client to help enter/update data anyway. He said he will try it again tomorrow so I guess I will find out if that does it. Thanks. -Tyler
  2. gonzilla

    DataGrid: Control in EditItem filled by javascript is empty at update

    Since you are using cboPaid and txbDatePaid as id's in your .aspx page, don't you need to assign values as such: paid boolean; datepaid string; paid = CType(e.Item.FindControl("cboPaid"), CheckBox).Checked; datepaid = CType(e.Item.FindControl("txbDatePaid"), TextBox).Text; Then do your...
  3. gonzilla

    Issues on Windows 98

    I am trying to figure out what is going on with my ASP.NET application and I am stuck. My client is using Windows 98 and when they put a datagrid in edit mode it gives a javascript object not found error. I had the client try the app from home on his XP machine and it works fine. I then had...
  4. gonzilla

    Max on 3 dimensional array???

    Hi, That does the job! So, as long as I move it outside of main or outside of a function body then I should be ok, correct? Thanks for the help. -Tyler
  5. gonzilla

    Max on 3 dimensional array???

    Hi, Thanks for the reply. I would love to post the entire thing but it is part of a business application that I can't post for security reasons. But, I just did some testing. If I define the array in a simple main() program all by itself without setting any values, it is fine. int...
  6. gonzilla

    Max on 3 dimensional array???

    Hi, Is there a max on defining a 3 dimensional array? For instance, is this too big of an integer array: int array[99][101][400]; Does anyone know the max? The reason I ask is that I am getting a core dump near here and I can't think of any other reason why it might be happening. Thanks...
  7. gonzilla

    Mask a text field

    Thanks for all of the help. Dave your solution was just about what I was looking for. -Tyler
  8. gonzilla

    Mask a text field

    Thanks. I wish I could use type="password" but I can't use that facility with the software product we use - basically it doesn't support that type of input box so we have to mimic it somehow. So, I know I can store the value in a hidden box and to handle backspaces (I think this...
  9. gonzilla

    Mask a text field

    Hi, How do you similate a password field in a input text box field without using type="password"? For instance, what if I wanted to maske it with a "-" instead of a "*"? I have it kind of working but I don't know if this is the best way to do it or if there was a...
  10. gonzilla

    Text wrap in e-mail funny

    Thanks for all of your responses. I'm going to mess around a bit with sendmail to see if I can get it to look better - otherwise, they are ok with what it looks like now. I would attach the file to the e-mail, but the project spec calls for it to be in the body of the e-mail. Thanks again...
  11. gonzilla

    Text wrap in e-mail funny

    Hi, I have a flat text file that I am reading into an array to use as the body of an e-mail: $bodyfile = 'bodyofemail'; open(BODY, &quot;$bodyfile&quot;) || die (&quot;$bodyfile $!\n&quot;); @bodyin = (<BODY>); close(BODY); I have some tags in this file that I am merging data from a database...
  12. gonzilla

    XP - security

    I kind of thought that would be a the case - just hoped someone would be able to give some clues first. I'll ask her some more information and get back here. Thanks.
  13. gonzilla

    XP - security

    Hi, I have a friend who had her boyfriend (a non-mutual friend) &quot;redo&quot; her computer. From what I can tell, he did a clean install of XP Pro and set up her DSL, Firewall and pretty much everything else on her PC (I can only go on what she has told me so far as I have not accessed the...
  14. gonzilla

    Upgrade Solaris 6 and 7 to 8 issues

    Thanks jad! That helps a lot. I will pass this on to our UNIX admins. -Tyler
  15. gonzilla

    Upgrade Solaris 6 and 7 to 8 issues

    Hi, Are there any major issues to consider when upgrading version 6 or 7 to version 8? I just mean general snags and areas of concern, not totally specific issues. Is there a list of known issues somewhere that I can download? Thanks for your help. -Tyler

Part and Inventory Search

Back
Top