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 TouchToneTommy 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 trueneutral

  1. trueneutral

    Postback script problems

    I am running a VBScript that hides or shows a number of controls when items in a dropdownlist are selected. It runs fine the when it loads up, but if a button is clicked, or any button on the datagrid I'm using is clicked, suddenly all the controls appear and the dropdownlist doesn't work...
  2. trueneutral

    Anyone know how to do drag and drop?

    I've heard that it's possible to drag text from one textbox and drop it into another textbox. I've looked for examples on this, and I haven't found anything yet that is helpful. Does anyone know either how to do this, or know of any good examples they could point me to?
  3. trueneutral

    Problems navigating frames using onclick

    True. I realize that, but at the same time I wasn't sure where the problem actually lied. In fact, I'm still a little unsure which aspect of the code is actually at fault. Because the behind processing was being done by ASP.NET and the frame navigation done by Javascript, the lines start to...
  4. trueneutral

    My datagrid is dissapearing!

    I fixed this now. Basically the thing I keep forgetting to do no matter how many times I use datagrids is that I forget to bind my using postback properly. Like this: If IsPostBack = True Then Else bindData() End If You can find a lot of issues I've...
  5. trueneutral

    Displaying titles from PDF files

    Okay I solved this. This one wasn't easy though. There's a very long thread where I worked this out and I have the solution near the bottom of the first page and in the second page. You find this thread at: http://forums.aspfree.com/showthread.php?s=&threadid=19740
  6. trueneutral

    Problems navigating frames using onclick

    Okay nevermind, I got it figured out. I don't know why, but for some reason whenever I sent a path file I would get this error. So I redid my code to accept a link instead and then convert it into a path file if needed. Very frustrating. Anyway For frames you can use this...
  7. trueneutral

    Problems navigating frames using onclick

    Okay I have a very odd error that nobody can figure out. I'm using frames, and I'm trying to send a string through the frames. <input onclick=&quot;window.parent.frames.item(1).location = '<%=forwardLink%>';window.navigate('topbar.aspx?file=<%=forwardFile%>') &quot; type=button...
  8. trueneutral

    Displaying titles from PDF files

    I'm trying to use the Title from a PDF file's &quot;PDF Propertites&quot; using ASP.NET . So far I've found little information about the problem. I know that it is possible to do using ASP, but since I am currently trying to convert a program from ASP to ASP.NET I can't do it that way. Does...
  9. trueneutral

    Datagrid Update problems

    I’m having some trouble with the Update function in my datagrid. It doesn’t seem to be getting the data from the textboxes for some reason, and I can’t understand why at all. Here’s the snippet of code where I try to get the data from the textbox. Dim itemValue =...
  10. trueneutral

    Trying to find the value of character

    Hey BoulderBum, Sorry I didn't respond earlier, I only work on weekdays :P I tried out your Char.IsPunctuation(charAr(0)) which produced much more encouraging results (besides, it's slimmer and easier to read) As for reading the array while debugging, that doesn't really work because my boss...
  11. trueneutral

    Trying to find the value of character

    I'll try that out. But as for the End If's, you can use a single line IF statement by using THEN. So for example: If (Stuff = true) then stuff = doMoreStuff
  12. trueneutral

    Trying to find the value of character

    I've been pulling some data from the database, and it's returning a string of 10 characters. (I can't modify the database, so I have to do this programically) If there is no value in the string, it still returns a length 10 string with 10 invisible characters (The data type from the database is...
  13. trueneutral

    My datagrid is dissapearing!

    I am having problems using a Datagrid I've followed many tutorials and as far as I can tell I'm doing everything I'm supposed to. 1. I've created the HTML part of the datagrid (There's a little more to it but there's no need to add it here): <Columns> <asp:EditCommandColumn...

Part and Inventory Search

Back
Top