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 Chriss Miller 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: dmears1
  • Content: Threads
  • Order by date
  1. dmears1

    Unable to play streaming video

    I am trying to stream video from a Flash Media Server using AS3. I am getting an error that I cannot figure out. In my NetStatusEventHandler I am getting event code "NetStream.Play.Failed". The error is: "Invalid tincan object name (stream ID: 1)" This means absolutely nothing to me and I have...
  2. dmears1

    SSL and Load Balancing

    I have a web farm which contains 3 web servers. I have a web site in IIS and have assigned it to a dedicated IP. I have installed a SSL Certificate for this site. However, the only way to get https to work is to set the IP address in the Multiple SSL Identites section to "All Unassigned". Once I...
  3. dmears1

    Disable rows in Gridview

    I would like disable rows in a gridview when a row is in edit mode. Sample code follows: <asp:GridView ID="grdContent" runat="server" AllowPaging="true" AllowSorting="false" AutoGenerateColumns="false" Width="100%" CssClass="GridLines" GridLines="None" DataSourceID="objDSContent"...
  4. dmears1

    LoadMovie Causing Projector file to Lag

    I have a flash projector file which is loading in 2 xml files: one containing text only, the other containing URL to both SWF & image files. This projector runs pretty much 24/7. We are running into issues where after 2-3 days the projector files starts lagging when loading in the images and/or...
  5. dmears1

    Google Hitting Page Once per second

    I have a google bot hitting one of our aspx pages once each second. The ip is: 66.249.65.76 It is a .net mobile page and the bot is simulating a NEC mobile device. Is this normal behavior? It is nice to get crawled, but pounding a page once every second is excessive.
  6. dmears1

    Case/Switch Statement

    I am reading data from a XML file. I need to test the value of one of the nodes and then use a Swith/Case statement to test the value of one of the nodes. Below is my code: _root.sixthnode = this.firstChild.childNodes[0].childNodes[6].firstChild.nodeValue; var tmpCity = _root.sixthnode...
  7. dmears1

    Connector Flash Exe to SQL Database

    Is it possible to connect a flash exe to a sql database? I am familiar with doing this in conjunction with web pages, however I am unable to find any documentation on connecting to databases when the flash movie is a standalone app. Any help is appreciated. http://www.RockfishInteractive.com
  8. dmears1

    DataLists and RepeatColumns

    I have a datalist set with RepeatColumns=3 and Width=100%. If there are 3 or more items everything displays correctly, meaning each itemtemplate is 33% in width for each row. However, if there are only 2 items, each itemtemplate is 50% in width and if there is only one the itemtemplate width is...
  9. dmears1

    DropDownList Populated from Database

    I'm populating a dropdownlist control from data in a database. This is working correctly. However, I'd like to add a list item for "Select Alll" as index 0. Is there a way to manually add list items even if you are using databinding? Any help is appreciated. http://www.Morter.com...
  10. dmears1

    Authentication &amp; Subdirectories

    I have a login in page which authenticates against an Active Directory. It works well until I authenticate to a subdirectory (named "policies"). Here is my relevant code from my web.config: ... <system.web> <authentication mode="Forms"> <forms name=".ADAuthCookie" timeout="10" />...
  11. dmears1

    Values of checkboxes to select list

    I need to be able to populate a dropdown list with values that are selected (checked) in checkboxes. Here's what I have so far: <script type="text/javascript"> <!-- function moveIt(numboxes){ var boxes = new Array(numboxes) for (var j = 0; j < numboxes; ++j) { boxes[j] =...
  12. dmears1

    Populate dropdown list w/values checked in checkboxes

    I need to be able to populate a dropdown list with values that are selected (checked) in checkboxes. <input type="checkbox" name="usergroup[]" value="<?=$usergroup_name?>"> Each checkbox value is placed in an array (usergroup[]). Is there a way to get the values of checked boxes without...
  13. dmears1

    SELECT menus

    I have a form containing 2 select menus. I need to be able to clear the value of "id" when the "report" select menu is changed. <form method="GET" name="form"> <select name="report" onchange="this.form.submit();"></select> <select name="id" onchange="this.form.submit();"></select> </form>...
  14. dmears1

    Problems with Form

    I have a pretty basic form here: http://www.bestlifetraining.com/bli-registration.php I am using a js function to validate the fields. I have a php statement to check and see if the submit button has been pressed: if ($submit) { //process form Here's the problem: when you click "Sign Me Up"...
  15. dmears1

    FLV 11 min. in Length

    I have been tasked with placing a video clip eleven minutes in length online. I have the FLV playing as an external progressive download. I took from reading Macromedia's documentation that progressive downloads are best for lengthy video. However, the audio and video in my SWF are out of sync...
  16. dmears1

    nextFrame() on FLV complete

    I need to be able to go to the next frame in a scene when FLV is completed. I've tried the following AS: var myListener = new Object(); myListener.complete = function(eventObject) { nextFrame(); }; video.addEventListener("complete", myListener); But it does not seem to work. You can view the...
  17. dmears1

    Help with SUM

    I need to pull info from 2 tables and then do a summation on one of the returned rows. Here is the SELECT statement I have which does pull the info I need:SELECT orders.orders_id, orders.date_purchased, orders_total.class, orders_total.orders_id, orders_total.value FROM orders, orders_total...
  18. dmears1

    podCast411's &quot;iTunes 1 Click&quot;

    Hey All, I noticed on podcast411.com that they have a way to launch their podcast feed directly into iTunes and I can't find any information anywhere on how this is done. You can see what I'm talking about by visiting http://www.podcast411.com and then look in the upper lefthand corner. There's...
  19. dmears1

    Formatting FORM fields

    I have a form with four Textfields & 1 TextArea. Using CSS I wanted to change the background colors of these fields. In FF it works as expected. However, in IE the 4 textfields do not apply the background color while the textarea field does. You can see what I'm talking about here...
  20. dmears1

    Googlebot's Visiting

    Hey Guys, Quick question. I launched a new site (http://www.DynamicLifeTraining.com) about 6 weeks ago. It ranks very well (in such a short amount of time) for the words/phrases we are targeting in MSN/YAHOO/GOOGLE. I've noticed that Googlebot/2.1 is visiting the index page 1-2 times a day...

Part and Inventory Search

Back
Top