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!

Search results for query: *

  • Users: malonep
  • Content: Threads
  • 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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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")...
  8. 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...
  9. 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...
  10. 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 =...
  11. 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...
  12. 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...
  13. 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,'#','#'); comment = replaceAll(comment,'>','>'); comment =...
  14. 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...
  15. malonep

    remote procedure call failed

    Hi, Over the last while when I try to install new programs on my computer (windows xp pro sp2). The installation program freezes and when I "end program" with the task manager. I get a pop stating "An error occurred while launching the setup. The remote procedure call failed." The same...
  16. malonep

    comparing times

    Hi, I have a start and end date time set in a cursor and I want to see if "now" is between the start and end. How do I compare times while ignoring the dates? I have been using datetime but it compares dates before time.
  17. malonep

    new window stay on top

    Hi, I have a page that on submit button press redirects to the submit page. When the submit page is done it sets the page back to the page that called the submit and opens a new window. The new window is opening first and when the first window reloads (takes longer) it ends up on top. Is...
  18. malonep

    URLS, Netscape and paths

    Hi, I determine a path to an uploaded file in asp and then link to it. It works fine in IE but when I try to view it in netscape I get file not found. <% lcPath = http:" & "\\Pluto\Upload\" lcFileName = "temp.html" %> <a href="http:<%=lcPath%><%=lcFileName%>">Temp File </a> In IE the...
  19. malonep

    font sizes

    I have a web page to maintain that is designed to be displayed in medium font. If a user has their browser set to larger/largest font buttons etc are out of the display area. I have tried to force the font to be medium with no luck I have tried #normal{ font-family:Verdana, Arial...
  20. malonep

    vfp 7 call another vfp7 dll with dcom

    Hi, I have two dll's written in vfp 7. They are going to be stored on two different computers and I have the first dll calling the second. But, I want the second dll to run on the machine it resides on (dcom), when the first dll would use the createobjectEX but I cannot figure out how to...

Part and Inventory Search

Back
Top