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

    Automate mp4 conversion to flv?

    Is it possible to automate the conversion of a mp4 file to a flv file on the backend?
  2. Tr0

    Simple Gridview Page not Updating?

    I'm creating a simple gridview and when I submit the update the threshold value doesn't update in the database. Before I was recieving a scalar variable error, then I added the update parameters and now nothing happens when submitted. Any suggestions??? Here's the code: <%@ Page...
  3. Tr0

    Error Checking in Javascript?

    Awesome, the second reccomendation works great! Thanks for your help.
  4. Tr0

    Error Checking in Javascript?

    Thanks man! It still doesn't work, but it tells me that its something on the back end. Just wanted to make sure my JS was right. Thanks again.
  5. Tr0

    Error Checking in Javascript?

    I'm new to JavaScript. I am trying to do some error checking on a page. The goal is when a user hits the submit key it checks for a certain option value. If that value is the default value it will alert the user to select another option. The problem is i'm doing this on an asp file that was...
  6. Tr0

    Character Filtering in a Text Box?

    I'm a newbie to ASP. I was wanting to do some character filtering in a text box and wondering what the best way to do it is? For example, I have a text box and lets say I want to filter out curly brackets "{" if someone enters that character. If they were to enter this character in the text...
  7. Tr0

    Change Alpha value on Mouse Roll Over?

    Nevermind I figured it out. Here's the code incase anyone is interested: var newbutton:Sprite = new Sprite(); addChild(img1_btn); img1_btn.addEventListener(MouseEvent.MOUSE_OVER,doOver); img1_btn.addEventListener(MouseEvent.MOUSE_OUT,doOut); function doOver(event:MouseEvent) {...
  8. Tr0

    Change Alpha value on Mouse Roll Over?

    I'm a total newb to flash, I am using ActionScript 3.0 and all I'm trying to do is when the mouse rolls over a button it changes the alpha value to 50%. Here's the code I'm using: function onRollovr(evt:MouseEvent):void { this.alpha = 50; }...
  9. Tr0

    PHPbb Forum Upload Question?

    I'm in the process of building a forum using PHPbb. I was curious if it is possible to allow users to upload pdf files? Any help would be appreciated! Thanks.
  10. Tr0

    Email without using mailto() function....

    I have experience with ASP so I will do a little research :) thanks so much.
  11. Tr0

    Email without using mailto() function....

    I would like to create a submit button for my web page that will email me text from a text box when the user hits the submit button. I would like it to not bring up outlook express or any other software. I just want it to send the text value directly to my email address. Is there any way to...
  12. Tr0

    Connecting to sql server 2005 DB through asp

    Thanks for your opinion anon I will keep that in mind.
  13. Tr0

    Connecting to sql server 2005 DB through asp

    Thanks for the link to the page... Its everything I could ever want :)
  14. Tr0

    Connecting to sql server 2005 DB through asp

    I am trying to create a connection to a SQL Server 2005 DB within an ASP page using the following code: Set Conn= Server.CreateObject("ADODB.Connection") Conn.Open "Provider=SQLOLEDB; Data Source = "" Initial Catalog = ""; User Id = ""; Password=''" The error message I am receiving says that...
  15. Tr0

    ASP Dynamic Video Upload Form

    Thanks for the link it was very helpful.
  16. Tr0

    Upload Video

    Thanks for the link...seems like a really helpful guide.
  17. Tr0

    Upload Video

    I want to create a dynamic web form that allows an admin to browse for a video on his/her local pc and then upload that video to be displayed in a downloadable list on another public web page. I'm a noobie to php and don't know how to approach this. Is php the best way to go? Also, are...
  18. Tr0

    ASP Dynamic Video Upload Form

    I am trying to create a dynamic web form using asp. I want the user to be able to browse for a video file then upload it to a web page. Once the video is submitted on the web page anyone could then click the video and view it in their browser. I am a noobie to asp and would really appreciate...
  19. Tr0

    Linking JSP Files From Different Sources

    Here is the .jsp file that creates the SOAP envelope also: <% int doctorId = 0; String strFacilityId = null; String strFacilityGrpId = null; String strApptTime = null; String strCheckStatus = null; String strDate = null; String strDoctorId = null; String strXml = null; String...
  20. Tr0

    Linking JSP Files From Different Sources

    I'm not sure that we are on the same page so let me explain my problem a little more clearly: There are 2 servers (we'll call them servers A & B) On server A I want to put an html file that will access a .jsp file on server B. If I put in this address in my web browser on server A...

Part and Inventory Search

Back
Top