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 strongm 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: malonep
  • Order by date
  1. malonep

    Reset position

    Hi, I am currently trying to convert from a vfp database to a sql-database I am trying to return a recordset which I can pass through multiple times and build tables off of. I am need to be able to reset the recordset to the beginning and scan through it a second time. I set the recordset...
  2. malonep

    SQL-Server Recordset

    I found and read the thread 333-987548 Record count. I just wanted to clarify. I don't really care about the record count. I just want to be able to open a record set and scan through the entries to build a List. I ran the test rs.Supports(adBookmark) Or rs.Supports(adApproxPosition)...
  3. malonep

    SQL-Server Recordset

    Hi, I am trying to connect to a SQL-Server stored procedure and return a recordset. I can access a stored procedure which returns a number, successfully, but I am unable to return a record set my stored procedure is very simple CREATE PROCEDURE dbo.sprGetProjects ( @ID INT=0 ) AS BEGIN...
  4. malonep

    window resizing

    Hi, I have a program that on logout. It closes the browser and opens a new window the same size (to prevent use of the back button). But if the window was maximized the new window opens a tiny bit smaller than maximized and on my frames page the bottom frame disappears although there is...
  5. malonep

    Popups on startup

    Hi, I turned on my computer this morning and it loaded fine. But then advertisements popped up about system failure and other things. Every time I restart my computer they reappear. I never opened my internet explorer and they appear. Also the first time I opened my browser my homepage was...
  6. malonep

    Catching enterkey pressed

    Hi, I asked this question in the javascript forum and they said that I should ask this question here ...so here it is i have a page that when the enter key is pressed it moved down to the next textbox. It works good for windows netscape/ie and mac ie but when I test it on a mac using safari...
  7. malonep

    catching enter key pressed

    Hi, i have a page that when the enter key is pressed it moved down to the next textbox. It works good for windows netscape/ie and mac ie but when I test it on a mac using safari when the enter key is pressed the whole page refreshes and any information that is entered is lost. I have caught...
  8. malonep

    Nested DataLists

    Hi, I am trying to create a page with nested data lists to show nested information. I have a stored procedure that returns a data set with 4 tables in it. I am creating the data relations as follows oRelation = New DataRelation("ReportPeriods", oDS.Tables(0).Columns("iClassID")...
  9. malonep

    File Controls

    Hi, I have a list of known files and I know the directory/path where they are located. What I need to to is list the files and have a link to them so the user can open the file (or save to disc - which ever is easier). Right now I am listing the files in a datagrid, but, I am unsure how to...
  10. malonep

    Opening/Viewing a file

    Hi, I am new to asp.net and I am trying to create an asp.net page that will display a list of files (currently in a datagrid). I would like have the name of a file as a link that would open and/or save the file. I can get the names to link to a real url but I am unable to get the link to work...
  11. malonep

    pass a url encoded string

    Hi, I want to pass a url encoded string to a new window that is opened with javascript but, when the page opens the string is displayed in the address bar as the original symbols. Main Page strCaption = "!@#$%^&*()" strCaption = convertURL(strCaption) 'strCaption is now =...
  12. malonep

    url escape characters

    on the main page I go in javascript (for debugging it is actually the following line) window.open("details.asp?caption=!%40%23%24%25%5E%26*()","Details"); and when I link to the the details.asp page the url shows http://localhost/details.asp?caption=!@#$%^&*() and I show it by strCaption =...
  13. malonep

    url escape characters

    what is HTML encoded strings and how do I use them?
  14. malonep

    url escape characters

    I go strCaption = Request.QueryString("caption") %> <tr> <td>Name: </td> <td><%=strCaption%></td> </tr> when the addressbar shows !@#$%^&*() I only see !@ but, if I type into the address bar !%40%23%24%25%5E%26*() I will see the whole string
  15. malonep

    url escape characters

    I am trying to pass a string with special characters to another page. I build my next page and pass it in the string "details.asp?caption=!%40%23%24%25%5E%26*()". When I link to that page the url of that page will show in the address bar as "details.asp?caption=!@#$%^&*()" and when I try to...
  16. malonep

    Accessing other frame

    Do I use getElementbyID for the frame or the drop down box? Could you please show me an example of how to set the dropdown box on the othe frame Thanks a million,
  17. malonep

    Accessing other frame

    Hi, I have two frames and one changes the value in a drop down box in the other. I have it working on pc ie but when I run it on mac IE it never changes the drop down box. I can get it to print out the correct value on the mac but it won't change it For the mac section I have...
  18. malonep

    string parsing problems

    Hi, I changed index to be idx and the same issue is occurring Thanks,
  19. malonep

    string parsing problems

    Hi, I have this small function to replace characters so symbols can be properly displayed in a textarea. In one function it is called multiple times comment = replaceAll(comment,'&#35;','#'); comment = replaceAll(comment,'&gt;','>'); comment =...
  20. malonep

    Converting from asp

    Hi, this is a general question. When converting from asp to asp.net, I know you can either rewrite from scratch or you can just convert an asp with a name and syntax changes. My question is if you just change from asp to asp.net by changing name/syntax is there any benefit (eg...

Part and Inventory Search

Back
Top