IE frame around flash and ASP

HI,
Does anyone know how to remove the ugly frame around flash
when using ASP?
I know the solution when using HTML but I need to embed teh
flash file in a .aspx page.
thanks

.Aspx files just render HTML. View Source on both to see the
differences,
and adjust accordingly
Jeff
"golem2" <[email protected]> wrote in
message
news:f0r0dk$rei$[email protected]..
> HI,
> Does anyone know how to remove the ugly frame around
flash when using ASP?
> I know the solution when using HTML but I need to embed
teh flash file in
> a .aspx page.
>
> thanks

Similar Messages

  • Gray frame around flash buttons and more...

    Hi,
    1.I've used flash buttons in my home page,the problem is
    that when u view the page with explorer u see a gray frame around
    the buttons...
    It is so ugly...some one knows how to fix it without using
    the code?
    2. Another problem, the behevior "show pop up menu" is not
    valid,
    i've used it before on that page....
    i tried everything... i saved it ,linked it...
    i dont know what is the problem...
    thank you....if you can help
    Racheli

    I'm experiencing the same problems with my flash buttons. As
    you hover over them initially, a gray border surrounds them and an
    alt tag pops up that says "click here to activate this control."
    This confuses some of the visitors, becuase they perceive this as
    if the buttons do not work. I suspect it may be a browser specific
    problem...are there any quick fixes for this? Thanks for the help.
    --Daniel Serna
    Knight Aerospace Products, Inc.

  • Frame around flash items

    in the last 2 weeks ther is a frame around all flash items
    across the intenet
    (at list in Internet Explorer Brwosers)
    and you need to click it one time to get rid of it.
    what is it?
    and what to do to get rid of it once and for all.
    thanx bambi

    Bambi, you've found some new behaviour, you've been logging
    on to this system, you've managed to write a post. Congratulations.
    You're already many steps closer to the solution.
    The most important step however would have been to use the
    search feature. It would have shown you that many many others have
    encountered the same thing. And that it has been discussed many
    many times. And there are many many solutions.
    Some are offered in this thread, which already has 124 posts
    as per this writing:
    http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=194&threadid=11259 16&enterthread=y
    good luck
    Wolf

  • Problems interact with Flash and ASP

    Hello people, I am beginning to learn how flash to interact
    with asp, but im having problems in the execution of the file.
    access the link below to see what happens:
    http://www.trusttarget.com.br/flash/flash_asp.swf
    My AS code:
    var endereco:URLRequest=new URLRequest("
    http://www.trusttarget.com.br/flash/produtos.asp");
    endereco.method=URLRequestMethod.GET;
    var carregar:URLLoader = new URLLoader();
    botao.addEventListener(MouseEvent.CLICK,chama);
    function chama(evento:MouseEvent) :void {
    var variavel:URLVariables = new URLVariables("nome="+
    busca.text);
    endereco.data= variavel;
    carregar.load(endereco);
    carregar.addEventListener(Event.COMPLETE,carregou);
    var texto:String= "";
    function carregou(evento:Event) :void {
    var variaveis:URLVariables= new URLVariables(carregar.data);
    var quantos:int= Number(variaveis.quantidade);
    texto= "";
    if (quantos == 0) {
    texto= "Nenhum Produto encontrado";
    } else {
    for (var i:int=1; i<= quantos; i++) {
    texto+= variaveis["produto"+i] + "\n";
    resultado.text= texto;
    When I execute the file ASP that makes the search in DB, he
    perfectly works, exhibiting the existent information in DB.
    But when I try for the Flash, not of the right.
    Please, help me
    Thanks everbody

    my ASP code
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <%
    banco = Server.MapPath("livro.mdb")
    Set conexao = Server.CreateObject( "adodb.Connection" )
    conexao.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ="
    & banco & ";"
    Dim registros
    Set registros = Server.CreateObject("ADODB.Recordset")
    registros.ActiveConnection = conexao
    registros.Source = "SELECT * FROM produtos WHERE produto LIKE
    '" & Request.QueryString("nome") & "%'"
    registros.CursorType = 0
    registros.CursorLocation = 2
    registros.LockType = 1
    registros.Open()
    x=0
    Do while not registros.eof
    x=x+1
    response.write "produto" & x & "=" &
    (registros.Fields.Item("produto").Value)
    response.write " - Preço= " &
    (FormatCurrency(registros.Fields.Item("preco").Value)) & " "
    registros.MoveNext()
    Loop
    response.write "quantidade=" & x
    registros.Close()
    Set registros = Nothing
    %>
    thanks

  • Flash and ASP problems

    I have an ASP file that gives out the following output when
    opened in the browser on the internet:
    bride=Olga&groom=Alex&folders=2
    see for yourself here :
    http://www.nickphotography.com/contact/customer_system/data.asp
    The code in the first frame of the flash file is:
    loadVariables("data.asp","");
    The variables don't load into the flash movie though.
    it works fine when I make a text file containing the ASP
    output and change the flash code to
    loadVariables("data.txt","");
    what's wrong and how do I fix this problem.
    thanks in adance for the help!

    Mark,
    Try this:
    Put a dynamic text field on your stage and give it an
    instance name of
    textBox. Then put this code on frame one:
    loadText = new LoadVars();
    loadText.load("
    http://www.nickphotography.com/contact/customer_system/data.asp");
    loadText.onLoad = function(success) {
    if (success) {
    textBox.text = this.bride+" "+this.groom+" "+this.folders;;
    Dan Mode
    --> Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "mark1991" <[email protected]> wrote in
    message
    news:ear6oc$8hs$[email protected]..
    >I have an ASP file that gives out the following output
    when opened in the
    > browser on the internet:
    > bride=Olga&groom=Alex&folders=2
    >
    > see for yourself here :
    >
    http://www.nickphotography.com/contact/customer_system/data.asp
    >
    >
    > The code in the first frame of the flash file is:
    > loadVariables("data.asp","");
    >
    >
    > The variables don't load into the flash movie though.
    >
    >
    > it works fine when I make a text file containing the ASP
    output and change
    > the
    > flash code to
    > loadVariables("data.txt","");
    >
    >
    > what's wrong and how do I fix this problem.
    > thanks in adance for the help!
    >

  • HELP WITH DOING BANNER AD ROTATION USING FLASH AND ASP

    I need to know how to do Banner Advertisement (AFFILIATE ADS)  in Flash using ActionScript  3 in Document Class(BANNERADS.AS).
    I have
           GETBANNERADS.ASP (ASP Web Program)
                  Retrieves Next AD (IMAGEURL, NAVIGATEURL) containing Banner and Advertiser URL
                            BANNER                     ADVERTISER URL
                            BUSHDOCTOR.GIF      http://www.clickbank.com
                            SIZZLA.GIF                  http://www.amazon.com/AMAZON.PHP?AFFILIATE_CODE=2345
                            EXODUS.GIF               http://www.godaddy.com/GODADDY.PHP?AFFILIATE_CODE=77777
                            UPRISING.GIF             http://www.easycgi.com/
           BANNERADSDBF.MDB (Microsoft Access Database with list of AFFILIATE ADVERTISEMENTS)
           BANNERADS.SWF
    package {
         import flash.display.MovieClip ;
         public class BANNERADS Extends MovieClip {
               public function BANNERADS() {    
                      var PICTURE:Loader  = New Loader();
                      var IMAGEURL:String    = "";
                      var NAVIGATEURL:String = "";
                      while (  ) {
                            LoadVariable("GETBANNERADS.ASP", IMAGEURL, NAVIGATEURL);
                            PICTURE.Load(New URLRequest(IMAGEURL));
                            PICTURE.AddActionListener(evt.COMPLETE, onload);
               public function onload() { 
                     PICTURE.AddActionListener(MouseEvent.CLICK, onClick);
               public function onClick() {
                      geturl(NAVIGATEURL);

    package (
                      import flash.display.Sprite;
                      import flash.events.*;
                      import flash.net.URLLoader;
                      import flash.net.URLLoaderDataFormat;
                      import flash.net.URLRequest;
                      public class Main extends Sprite {
                                     public function Main() {
                                              var PICTURE:Loader            = New Loader();
                                             PICTURE.addEventListener(Event.COMPLETE, onLoaded);
                                             var LOADER :URLLoader         = new URLLoader();
                                             LOADER.addEventListener(Event.COMPLETE, getdata);
                                             LOADER.dataFormat             = URLLoaderDataFormat.VARIABLES;
                                             var IMAGEURL    :String           = "";
                                            var ADVERTISERURL :String     = "";
                                             var COUNTER      :Number       = 0;
                                             var MAX               :Number       =0;
                                             while ( COUNTER <= MAX)       {
                                                             COUNTER   = COUNTER + 1;
                                                             var requester:URLRequest = new URLRequest("BANNERADS.ASP");
                                                             requester.method         = URLRequestMethod.POST;
                                                             LOADER.load(requester);
                                                             if (COUNTER == MAX) {
                                                                        COUNTER = 0; 
                                     public function getdata(){
                                                 var loader2 : URLLoader = new URLLoader(Event.target);
                                                 loader2.dataFormat      = URLLoaderDataFormat.VARIABLES;
                                                 var IMAGE   :URLRequest = new URLRequest(loader2.data.IMAGEURL);
                                                 ADVERTISERURL            = loader2.data.NAVIGATEURL;
                                                 MAX                                = loader2.data.MAXCOUNT;
                                                 PICTURE.load(IMAGE);
                                     public function onLoaded(){
                                               PICTURE.addEventListener(MouseEvent.CLICK, onClick);        
                                     public function onClick(){
                                               navigateToURL(ADVERTISERURL);

  • Flash and search engines

    Where do I go for a discussion on how Google's failure to crawl flash sites is stifling development of rich internet applications?

    There is a lot going on around Flash and SEO, though much of it is behind the scenes.
    http://www.adobe.com/devnet/seo/
    and specific to Google and Yahoo, read this:
    http://www.adobe.com/devnet/flashplayer/articles/swf_searchability.html

  • Dynamic flash with Asp

    Recently I did try ASP's date function to pass the current
    date to flash, meaning that by adding the code
    (?date=<%date%>) at the end of the flash movie's path in
    Explorer. but didn't work. is it because is no longer in use? can
    some help. cause i'm trying to learn to I pass a data between flash
    and asp. thanks.

    Recently I did try ASP's date function to pass the current
    date to flash, meaning that by adding the code
    (?date=<%date%>) at the end of the flash movie's path in
    Explorer. but didn't work. is it because is no longer in use? can
    some help. cause i'm trying to learn to I pass a data between flash
    and asp. thanks.

  • How do I Add a Picture Frame Around a Flash Video?

    I tried searching for this but "frame" has too many meanings. I have flv videos inserted in several web pages, but they look dull without some sort of fancy border or frame around them. Maybe a picture frame. Maybe the image of a flat screen TV surrounding the image. But how do I add the image "behind" the video so that the video sits perfectly inside the image, regardless of the monitor viewing the image.

    Do a google search for the IE PNG Fix javascript.  Some work better than others.  The one you had didn't work at all for PNG backgrounds in pre-IE7.
    Copy and Paste the following document into a new blank page and see how it looks in all the major browsers.  I changed your document type to XHTML transitional and replaced deprecated <div align> tags with inline CSS styles.  I also ran your Flash code through http://validifyer.com to make it XHTML compliant. 
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Let It Rock</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <style type="text/css">
    body {
         background-image: url(images/bg_blank-01.gif);
         background-repeat: no-repeat;
         background-color: #363737;
    #flash {   
         width: 500px; /**video size 428 x 240**/
         height: 377px; /** +30px **/
         background: url(images/tv-ws-02b.png) no-repeat top;
         text-align: center;
         padding-top: 37px; /**adjust as needed**/
         margin: 0 auto; /**this is horizontally centered div**/
    </style>
    <script type="text/javascript">
    function MM_CheckFlashVersion(reqVerStr,msg){
      with(navigator){
        var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
        var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
        if (!isIE || !isWin){ 
          var flashVer = -1;
          if (plugins && plugins.length > 0){
            var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
            desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
            if (desc == "") flashVer = -1;
            else{
              var descArr = desc.split(" ");
              var tempArrMajor = descArr[2].split(".");
              var verMajor = tempArrMajor[0];
              var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
              var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
              flashVer =  parseFloat(verMajor + "." + verMinor);
          // WebTV has Flash Player 4 or lower -- too low for video
          else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;
          var verArr = reqVerStr.split(",");
          var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
          if (flashVer < reqVer){
            if (confirm(msg))
              window.location = "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    </head>
    <body onload="MM_CheckFlashVersion('8,0,0,0','Content on this page requires a newer version of Adobe Flash Player. Do you want to download it now?');">
    <p> </p>
    <p style="text-align:center"><img src="logo-video.gif" alt="logo" width="608" height="129" /></p>
    <div id="flash">
    <!--[if !IE]> -->
      <object type="application/x-shockwave-flash" data="FLVPlayer_Progressive.swf" width="428" height="240">
    <!-- <![endif]-->
    <!--[if IE]>
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#v ersion=8,0,0,0" width="428" height="240">
        <param name="movie" value="FLVPlayer_Progressive.swf" />
    <!--><!-- http://Validifier.com -->
      </object>
    <!-- <![endif]-->
    </div>
    <p style="text-align: center"><a href="music-videos.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image3','','back-button2.gif',1)"><img src="back-button1.gif" alt="back" name="Image3" width="93" height="57" border="0" id="Image3" /></a></p>
    <p style="text-align: center">
      <!--[if !IE]> -->
      <object type="application/x-shockwave-flash" data="footer.swf" width="720" height="159">
    <!-- <![endif]-->
    <!--[if IE]>
      <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="720" height="159">
        <param name="movie" value="footer.swf" />
    <!--><!-- http://Validifier.com -->
      </object>
    <!-- <![endif]-->
    </p>
    </body>
    </html>
    Packing up and closing the office door now.  Good luck!
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • I had completed my iDVD project and burned a disc. It worked great! Then someone messed with the project and put a red frame around the opening screen. Now when I burn the project, it no longer has the opening frame. How can I fix?

    I had completed my iDVD project, a Wedding Slideshow with pictures and music, and burned it on a disc. It worked great! Then someone messed with the original project on my computer and clicked around and put a red frame around the opening screen that has the Wedding theme with music. Now when I burn the project to make more DVDs, it burns but no longer has the opening frame. It immediately opens to the iMovie slideshow. How can I fix so I can burn the entire project with opening frames?

    As Bengt suggested make a disk image of the successfully burned DVD using Disk Utility. Then you can burn copies any time you need one.
    In the future once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image menu option.  This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image and launch DVD Player and play it.  If it plays OK with DVD Player the encoding was good.
    You can then burn it to disk with Disk Utility at the slowest speed available to assure the best burn quality.  Always use top quality media:  Verbatium, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • With 3.6 and earlier, one website I use would have a "frame" around thumbnails which would go away once I accessed it. Aftwer 4.0, no frame. Frames still there with IE. Is there a setting where I can get them back with the newer versions of Firefox?

    Pretty much what I asked above. Obviously there was a change between 3.6 and 4.0 that is causing this.
    These black "frames" around the thumbnails are very handy as they let me know which ones have been accessed and which have not. Once I would click on the thumbnail, the "frame" around it would disappear. I could come back weeks later and tell what had been accessed and what hadn't.
    I discovered this problem this spring when I upgraded to 4.0 in my laptop. I kept "nursing" the 3.6 in my desktop as I did not want to lose that feature. The other night I tried to update my 3.6 and, unfortunately, I got force-fed 6.0.
    Anyhow, it has to be something you changed when 4.0 was brought out - and has stayed changed in 5.0 and 6.0. As noted above, the frames are still there if I go to the site with Internet Explorer. Sure love to find a way to get this feature back with Firefox!

    Pretty much what I asked above. Obviously there was a change between 3.6 and 4.0 that is causing this.
    These black "frames" around the thumbnails are very handy as they let me know which ones have been accessed and which have not. Once I would click on the thumbnail, the "frame" around it would disappear. I could come back weeks later and tell what had been accessed and what hadn't.
    I discovered this problem this spring when I upgraded to 4.0 in my laptop. I kept "nursing" the 3.6 in my desktop as I did not want to lose that feature. The other night I tried to update my 3.6 and, unfortunately, I got force-fed 6.0.
    Anyhow, it has to be something you changed when 4.0 was brought out - and has stayed changed in 5.0 and 6.0. As noted above, the frames are still there if I go to the site with Internet Explorer. Sure love to find a way to get this feature back with Firefox!

  • TS1702 ?Some of my applications have been saying I need the latest version of Adoebe Flash Player.  When I try to download it I get the following error message:  'Frame Load interrupted' and the installation stops.  Any suggestions

    Some of my applications have been saying I need the latest version of Adoebe Flash Player.  When I try to download it I get the following error message:  'Frame Load interrupted' and the installation stops.  Any suggestions?

    You can only use apps downloaded from the App store, not via a browser. There is no Flash for any iOS device including the iPod.

  • FINAL CUT PRO X (the latest version). I'm trying to upload my video to Youtube, I am getting flashing and orange bar in the frame timeline. How to make it STOP!?

    FINAL CUT PRO X (the latest version). I'm trying to upload my video to Youtube, I am getting flashing and orange bar in the frame timeline. How to make it STOP!? It looks like it's rendering somthng but I just want it to stop flashing. I hope it didn't mess up the video...

    You're in totally the wrong place...  this is the Mac Pro (no Book) forum for hardware.  You want
    Final Cut Pro X: Professional Applications: Apple Support Communities
    Hopefully, FCP X has an autosave feature Like Final Cut Pro Studio so that you may already have a recent copy.  If I were in your shoes, I'd try an ESC or something similar before going to a Forced Quit.
    Good luck

  • How link from html page to a specific frame in flash cs5 as3

    Hi!
    I'm kinda new around here. I am interested in knowing how to link from a specific html page to a specific frame in flash cs5 as3.
    I have a website that I originally began to design in flash but later started developing new pages for it in html. The flash part of it has several pages on different frames and I have created links from the flash part to the other html pages, but, I can only link the html pages back to the main flash home page, and not the other pages in the flash part of the website.
    I have read that in cs3 it was possible using the flashvars skip variable, but I don't know how to do it. I have not yet seen any working examples and I could not find any instructions / tutorials online for cs5.
    Can someone help here?

    add a query string, to the swf's embedding html, with variable/value indicating the frame you want to display in your swf.  add a javascript function to return the query string (or entire url), call the javascript function from flash using the externalinterface class.  and finally add code to your swf to parse the returned url or query string, parse it and then direct your timeline to the appropriate frame.

  • Drawing in flash and exporting files to illustrator

    I use to be able to draw or tweak drawings in Flash and then export them as a postscript or swf file so that I could keep editing them in Illustrator. These features seem to be missing and I don't understand why. Surely these are features that were used by other users. So the print image feature is gone in Flash and that was where I could contain my vector drawing as a postscript or PDF and now I can't do that any more. In Illustrator I use to be able to open up .swf files and I can't do that anymore. Is there a go around? Why take such a good thing away that is so useful to artists and designers?

    Hi All,
    Flash Pro CC 2014 (v14.0.0.110) is now available for download via the Creative Cloud App and Adobe website.
    We have added SVG Export feature to Flash Pro with this new release. You will now be able to export out vector content from the selected frame as an SVG image that can be opened directly in a Browser and even imported in Adobe Illustrator.
    SVG Export option can be accessed via the Publish Settings as well as via File Menu > Export > Export Image option.
    Along with this, we have added several new features with this release. Complete list is available at these links:
    Overview:         https://www.adobe.com/in/products/flash.html
    Whats new:      https://helpx.adobe.com/flash/using/whats-new.html
    Release Notes: https://helpx.adobe.com/flash/release-note/flash-professional-cc-2014.html
    Thanks,
    Nipun

Maybe you are looking for

  • Photoshop cs3 stopped working

    When I try to poen a file a receive an error image "the specified module could not be found.C:\programFiles\common Files\adobe\adobe Version CyeCs3|3.1.0\VersionCueUI.DLL". When I tried to reinstall it, I only end up having only DreamweaverCS3 reinst

  • Error in startsap on HP-UX

    Hi All,    I installed SAP 2004 Dialoge instance on HP-UX. After Installing, when I try to start SAP, I am getting the following error: #>su c11adm $>cd /sapmnt/C11/exe $>./startsap $>SAPSYSTEMNAME not set $>export SAPSYSTEMNAME=C11 $>./startsap <b>C

  • Crashed during defrag

    Hello All, My Satellite a205-0608 0sap3u(hard to see figures) Crashed during a defrag now XP cannot find the HD to reinstall Xp, Tried system restore disk all but same thing.  Tried a new HD and the same.  Toshiba set can see it. Please help. Thank Y

  • Issues in calling Sql Loader through forms developer (10g)

    Hi, I am developing a form(in 10g) ,in which I am calling sql loader for loading data onto a oracle database table from external source (e.g. data file is a .CSV file). But , somehow the sql loader is not getting executed. Here , I am giving the envi

  • Foxfire add on says yahoo toolbar is downloaded, but it won't

    I have tried to fix this over 20 times and searched everywhere for answers. My yahoo toolbar stopped working and doesn't show any icons. I unchecked, then checked the view, toolbar, yahoo toolbar. I've tried to redownload the toolbar all evening and