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: *

  1. timtom

    setting selectedvalue of dropdownlist inside a datagrid edittemplate

    Thanks for the help both of you, However, now I know I can pass the container item from the aspx page I have just added a selectedValue property like this <asp:DropDownList id="ddlProject" DataSource="<%# getProjects() %>" SelectedValue='<%# (int)DataBinder.Eval(Container.DataItem...
  2. timtom

    setting selectedvalue of dropdownlist inside a datagrid edittemplate

    Hi all, I've got an editable datagrid with various extra dropdownlist controls which I have added into template columns like so <asp:TemplateColumn HeaderText="Project"> <EditItemTemplate> <asp:DropDownList id="ddlProject" DataSource="<%# getProjects() %>" OnPreRender="setddlProjectIndex"...
  3. timtom

    loop through table executing a stored procedure for each result

    Hi, I have a stored procedure which I want to call from inside another stored procedure. I want to do this a number of times based on rows in a recordset. However, I don't know if this is possible. What I'd like to do is..... for each ShopId in (select ShopId from Shops where ShopActive = 1)...
  4. timtom

    Putting an ACTION on a &lt;p&gt; or and &lt;a&gt; in a HTMLText field

    Ah that's great oldnewbie - exactly what I needed and I have now implemented. Thanks a lot for your help. Sarah :)
  5. timtom

    Passing a Variable to Movie Clip

    Hi Lee, you have to scope your variables so that they are available in whatever movieclip or function that you need them. Search for &quot;scoping&quot; in your flash help files for more details. A quick work around is to make the variable global by creating it as...
  6. timtom

    Putting an ACTION on a &lt;p&gt; or and &lt;a&gt; in a HTMLText field

    Hi everyone, I'm building a long scrolling dynamic text field like this... artistlist.htmlText=&quot;&lt;P&gt;&lt;A HREF='http://www.cnn.com'&gt;&quot;+arrArtist[i]+&quot;&lt;/A&gt;&lt;/P&gt;&quot;+artistlist.htmlText; But I'd like to call ACTIONSCRIPT from each of the lines in my text field -...
  7. timtom

    how can I delete all variables?

    Oh hello, Is there a quick way to delete all my global variables? I know I can do delete variable1; delete var2; delete var3; etc. but can I just drop everything in one line of actionscript perhaps? cheers, Sarah
  8. timtom

    skewing a dynamically loaded image at runtime...

    oh christ I just realised I only have to skew the movieclip I'm loading the big image into. *feeling very stupid* S
  9. timtom

    skewing a dynamically loaded image at runtime...

    Hi, am doing a kind of gallery swf, and loading in thumbnails dynamically using loadMovie. When the user clicks on one of these thumbnails I'd like to load the bigger image into a kind of skewed picture of a mobile phone - so that it fits. Is there any way that I can skew the image when it...
  10. timtom

    loading a jpg from below the webroot

    thanks redrob, that sounds exactly right. we've temporarily got around this by loading aspx pages into flash which themselves read the images and output them as a jpg stream. this is ok for the moment, but it's hardly efficient. looking to the future, is there any flash 2004 server side...
  11. timtom

    loading a jpg from below the webroot

    hi, have been making a movie loading a bunch of images using loadMovie(mypic.jpg) I haven't had a problem in development - but when I go to move the site live there's a bit of a problem. The actual images to be loaded are in a folder below the webroot (in D://images/ rather than in...
  12. timtom

    Loading a variable from external file and using it in actionscript

    Hello I'm using a button to change the button of a box like this... on (release) { myColor = new Color(_root.mybox); var x; x= 0xfff545 myColor.setRGB(x); } This works fine, and when I press the button the box changes to a yellow color. HOWever, what I'm really trying to do is get the exact...
  13. timtom

    URL Data in Taskbar Group

    Thanks guys. I have looked literally everywhere to find the syntax for this! Why on earth I didn't give into my first instinct and look on good old tek-tips I'll never know. Phil, I completely agree. &quot;You must know how the Web site accepts queries to properly structure the...
  14. timtom

    drawing a dynamic fake tube map

    I'm starting a personal project (a photography portfolio) and want a flash movie to show a kind of map that looks something like the london underground map but is in fact based on my photo collection. For example, there'd be a 'line' for my landscapes category, another 'line' for my portraits...
  15. timtom

    systemCED Missing or Corrupt

    Our Windows 2000 Web Server was being terribly slow and wouldn't shut down or restart. Our only option was to switch it off and on again - but it wouldn't start-up. It gets to the 'starting windows' screen then says &quot;Windows 2000 could not start because C:\winnt\system32\config\SYSTEMced...
  16. timtom

    Massive Insert Statement not working....Help!!!

    It might be that there's no comma between these two values - strSQL = strSQL & request.form(&quot;cboDepartureTime&quot;) &&quot; &quot;& request.form(&quot;cboTime&quot;) & &quot;','&quot; Or it might be something else. Try writing the strSQL to the screen (as you've done) without executing...
  17. timtom

    Redevelop Access App in Web Matrix?

    The whole thing with XP HOME is that PWS/IIS won't run on it. You have to get XP Professional for that. If I install Apache then I have to stick Chillisoft on top of that and THEN add a database. I was really hoping for a standalone solution which I can create at home and then install on her...
  18. timtom

    Redevelop Access App in Web Matrix?

    Actually it doesn't, but thanks anyway.
  19. timtom

    Redevelop Access App in Web Matrix?

    I have a friend who runs a charity. All her work info is in an Access '97 application which was written ages ago and is falling apart. She's just upgraded to a machine running XP Home and wants the database redeveloped. My first thought was that I could do it in ASP but then I realised that...
  20. timtom

    Order Dates by Nearest to Today (not just asc and desc)

    Hi, I wonder if there's a way to order a group of dates (not including year) by 'nearness' to today's date? (With events just gone at the end of the list) So I could create a page displaying information like this... thing - 9th July thing - 20th August thing - 25th August thing - 15th...

Part and Inventory Search

Back
Top