Java Script Errors when clicking on several opened documents

All of a sudden I started having problems shutting down
Dreamweaver MX 6.1
Later , when I open two or more documents I get an error when
I click on the document in the background.
A series of dialog boxes come after eachother and say the
following:
1. While executing Browse_back enabled in toolbars.xml, a
java script error occurred
2. While executing Browse_back enabled in toolbars.xml, a
java script error occurred
3. While executing Browse_forwrad enabled in toolbars.xml, a
java script error occurred
4. While executing Browse_stop enabled in toolbars.xml, a
java script error occurred
5. While executing get current value in AddressURL.htm
enabled in toolbars.xml, a java script error occurred
I have uninstalled and reinstalled the program several times
and it did not help. I have also installed Dreamweaver MX 6.1
updaters with no change.

You can try this simple fix -
Quit DW.
Find this folder -
C:\Documents and Settings\<username>\Application
Data\Macromedia\Dreamweaver
8\Configuration\WinFileCache-*.dat
(these folders are normally hidden - you may have to use
Explorer > Tools >
Folder Options to unhide them)
or on Mac -
Library/Application Support/Macromedia/Dreamweaver
8/Configuration/MacFileCache-*.dat
and delete it.
Restart DW. Works better?
Troubleshooting JavaScript errors in Dreamweaver
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19105#dat
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"anabelapinto" <[email protected]> wrote in
message
news:emh6hq$ke5$[email protected]..
> All of a sudden I started having problems shutting down
Dreamweaver MX 6.1
> Later , when I open two or more documents I get an error
when I click on
> the
> document in the background.
>
> A series of dialog boxes come after eachother and say
the following:
>
> 1. While executing Browse_back enabled in toolbars.xml,
a java script
> error
> occurred
>
> 2. While executing Browse_back enabled in toolbars.xml,
a java script
> error
> occurred
>
> 3. While executing Browse_forwrad enabled in
toolbars.xml, a java script
> error
> occurred
>
> 4. While executing Browse_stop enabled in toolbars.xml,
a java script
> error
> occurred
>
> 5. While executing get current value in AddressURL.htm
enabled in
> toolbars.xml, a java script error occurred
>
> I have uninstalled and reinstalled the program several
times and it did
> not
> help. I have also installed Dreamweaver MX 6.1 updaters
with no change.
>
>

Similar Messages

  • Java script error  when click on the  Tableview  in the BSp screen

    Hi All,
              I am getting a javascript error saying
    Line : 7770
    Char :5
    Error : 'rows' is null  or not an object
    Code : 0
    URL : http://saperpdev01............
    I checked the source code on the BSP displayed page. It don't has that line 7770 specified in the error.
    My Layout code is :
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "Open Work Screen with Pre Approval and Rejected Invoices ">
        <htmlb:form id = "openwork" method = "post" >
    <%
      data: l_num_msgs  type i,
      l_condition type string,
      l_message   type string,
      l_severity  type i.
    %>
        <img align="left" src="hl_invoicing.gif"/>
          <BR>
          <p align="left">      </p>
          <p align="left">      Complete the form below to create and submit a vehicle repair invoice to Schwans Home Service.</p>
          <p align="left">      See
          <htmlb:link id            = "paymenttermslink"
                      text          = "Payment Terms"
                      onClientClick = "return parent.EPCM.doNavigate ('ROLES://portal_content/com.schwans.tsfc.The_Schwans_Food_Company/HS/iView_folder/External_Content/KM_iViews/Fleet_Payment_Terms', 1);"
                           />
          for payment details.</p>
          <%
              l_num_msgs = page->messages->num_messages( ).
              do l_num_msgs times.
              clear : l_message, l_condition, l_severity.
              call method page->messages->Get_message
              exporting index     = sy-index
              importing condition = l_condition
              message   = l_message
              severity  = l_severity.
              if l_condition eq 'error'.
          %>
          <h3 align="left"> <font size=2 color="Red"><b>      <%= l_message %></b></font></h3>
          <%
              elseif l_condition eq 'warning'.
          %>
          <h3 align="left"> <font size=2 color="orange"><b>      <%= l_message %></b></font></h3>
          <%
              endif.
              enddo.
          %>
          <htmlb:group id     = "groupone"
                       design = "sapcolor" >
         <htmlb:groupHeader>
            <table width="100%" border="0" cellpadding="5" cellspacing="1" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv1"
                                      text    = "Select a  Work Order Number"
                                      design  = "HEADER1" / >
                    </td>
                </tr>
            </table>
        </htmlb:groupHeader>
        <htmlb:groupBody>
        <table width="100%" border="0" cellpadding="5" cellspacing="1" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv2"
                                      text    = "Pre-approved work"
                                      design  = "HEADER2" / >
                    </td>
                </tr>
            </table>
        <table width = "100%">
          <tr>
          <td>
          <htmlb:tableView id               = "openwork"
                           table            = "<%= INVOICE->AT_OPENWORK %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_OPENWORKSELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Open Work Exists"
                           keyColumn        = "OPENWORKNO"
                           onRowSelection   = "openworktable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName = "OPENWORKNO"
                                     title      = "Reference Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "DOC_TYPE_TEXT"
                                     title      = "Document Type"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Created On"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "VMRS_TEXT"
                                     title      = "VMRS Code"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
          </td>
          </tr>
          </table>
        </htmlb:groupBody>
        </htmlb:group>
        <htmlb:group id     = "grouptwo"
                       design = "sapcolor" >
         <htmlb:groupHeader>
         </htmlb:groupHeader>
        <htmlb:groupBody>
             <table width="100%" border="0" cellpadding="0" cellspacing="0" >
                <tr>
                    <td align="left" width="100%">
                      <!--<b> Invoicing </b> -->
                      <htmlb:textView id      = "tv3"
                                      text    = "Rejected Invoices"
                                      design  = "HEADER2" / >
                    </td>
                </tr>
            </table>
          <table width = "100%">
          <tr>
          <td>
          <htmlb:tableView id               = "rejectedinvoice"
                           table            = "<%= INVOICE->AT_REJECTED_INVOICES %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_REJECTEDINVOICESELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Rejected invoices Exists"
                           keyColumn        = "INVOICENO"
                           onRowSelection   = "rejectedinvoicetable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName         = "VENDOR_INVOICE_NUMBER"
                                     title              = "Reference Number"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Invoice Date"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "REJECTION_REASON"
                                     title      = "Reason for Rejection"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
          </td>
          </tr>
          </table>
      </htmlb:groupBody>
    </htmlb:group>
    <htmlb:textView id     = "tv1"
                    text   = "Select a Reference Number from the table above and click the Select button - or - Click the Create New button to create a new invoice."
                    design = "LABEL" />
         <table width="100%" border="0" cellspacing="1"  align="center" >
           <tr>
           <td  align="center" nowrap="TRUE">          
             <htmlb:button    id            = "selectbtn"
                              text          = "SELECT"
                              onClick       = "btnselect" />
             <htmlb:button    id            = "createnewbtn"
                              text          = "Create New"
                              onClick       = "btncreatenew" />
             </td>
           </tr>
          </table>
        </htmlb:form>
        <%@include file="footer.htm" %>
      </htmlb:page>
    </htmlb:content>
    What may be wrong????
    If I click anywhere on the table view it's giving a javascript error. If I try to select a row from the table also it's giving error for one or two times and on the third time i am able to select the table content and can able to navigate to the next page.
    Thanks for your help in advance.
    Thanks,
    Greetson

    Hi Raja,
         please kindly recheck the code if mine i have two tables ..... one for heading and another one for Body.
    it looks correct to me.
    <table width = "100%">
    >     <tr>
    >     <td>
          <htmlb:tableView id               = "rejectedinvoice"
                           table            = "<%= INVOICE->AT_REJECTED_INVOICES %>"
                           design           = "STANDARD"
                           width            = "100%"
                           selectionMode    = "SINGLESELECT"
                           selectedRowIndex = "<%= INVOICE->A_REJECTEDINVOICESELECTION %>"
                           visibleRowCount  = "10"
                           footerVisible    = "TRUE"
                           emptyTableText   = "No Rejected invoices Exists"
                           keyColumn        = "INVOICENO"
                           onRowSelection   = "rejectedinvoicetable" >
            <htmlb:tableViewColumns>
              <table width = "100%">
              <tr>
              <td >
              <htmlb:tableViewColumn columnName         = "VENDOR_INVOICE_NUMBER"
                                     title              = "Reference Number"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "CREATEDDATE"
                                     title      = "Invoice Date"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "FLEETNO"
                                     title      = "Fleet Number"
                                     width      = "20%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              <td >
              <htmlb:tableViewColumn columnName = "REJECTION_REASON"
                                     title      = "Reason for Rejection"
                                     width      = "30%"
                                     horizontalAlignment = "LEFT" >
              </htmlb:tableViewColumn>
              </td>
              </tr>
              </table>
            </htmlb:tableViewColumns>
          </htmlb:tableView>
    >     </td>
    >    </tr>
          </table>

  • Java script error when using a "Table" component (jsc2)

    using a table component, I get a js errors, when lodiing the HTML page, sorting rows etc.
    can some one helpe me or can some one have the same problem ?

    Hi,
    Please post JSC2 related queries at:
    https://feedbackprograms.sun.com/login.html
    Cheers
    Giri

  • Jave Script error when opening any page.

    Whenever I load a page into Firefox I get the following error message: "[javascript application] Type Error: Components Class [CID] is undefined" This has happened with the last few versions of Firefox.

    This issue can be caused by an extension that isn't working properly.
    Do you have any AVG extensions or toolbars installed?
    *Tools > Add-ons > Extensions
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Scripting error when opening Interactive Form

    Hi all,
    I'm experimenting with adobe interactive forms (in web dynpro), but things aren't going as expected. I'm getting scripting errors when clicking (in Internet Explorer) on a link that opens a view with an interactive form. Please see below for details.
    I've found a similar error description /thread/80059 [original link is broken], but the context is different. It seems to be related to namespaces, but I have no idea what I'm doing wrong.
    Any help is greatly appreciated!
    line 59: 'sapUrDomainRelaxing' is undefined
    line 109: Object expected
    line 113: Object expected
    line 137: 'SSR' is undefined
    line59
    ur_system = {<<SNIP>>, domainrelaxing: sapUrDomainRelaxing.MINIMAL, <<SNIP>>};
    line 109
    sapUrMapi_init();
    line 113
    sapUrMapi_Focus_RegisterCreate('');
    if( SSR && SSR.windowManager) SSR.windowManager.hideEventBlocker();
    sapUrMapi_initLinkStatus();
    line 137
    if (SSR.showInfo){ <<SNIP>> }

    Hello Jeroen and welcome to the SDN!
    It seems like an error in the WebDynpro-part, not in the Adobe forms-part. Please check if all your elements (views, windows, controllers, etc.) are in valid namespaces.
    Could you try to create an application for the WebDynpro-project in the NDS, and try to <i>deploy new archive and run </i>? Does this work?
    Perhaps you could even copy the project, and replace the Adobe Inter Form element by a static text, to test if it is in the WebDynpro part or that it really has something to do with the Adobe.
    Good luck,
    Jan-Willem Kaagman

  • When I click on firefox I get a java script error that says "TypeError: Components.classes[TvtPwmComponent_CID] is undefined", what does that mean?

    Whenever I click on firefox, or when a pop-up occurs, I get a java script error that says, "TypeError: Components.classes[TvtPwmComponent_CID] is undefined". I don't know why. It first occurred while I was on ESPN while trying to watch college games live.

    This issue can be caused by an extension that isn't working properly.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • When opening firefox 3.6.8 I get a java script error at line 323

    When trying to open Firefox 3.6.8, I get a java script error:
    [JavaScript Error: "dir is null" {file: "file:///C:/Users/My%20Computer/AppData/Roaming/Mozilla/Firefox/Profiles/lk5mbar9.default/extensions/%7B0538E3E3-7E9B-4d49-8831-A227C80A7AD3%7D/components/nsForecastfox.js" line: 323}]' when calling method: [ffIDiskService::get]
    If I cancel the error message, FF opens, but then my google search bar will not search & then FF freezes up. I'm using Windows7.

    That is a problem with the Forecastfox extension.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • How do i disable a java script error that pops up everytime i click on something?

    java script error Error: Permission denied to access property 'host'
    this continues to come up every time i click on something. this has only started since i downloaded firefox 4.0. how do i disable the pop up or do i just stop using 4.0? would go back to the last version but when i try to download that i'm told the files are corrupted

    Create a new profile exclusively for the 4.0 beta version and create a desktop shortcut with -P "profile" appended to the target to launch that profile.
    * http://kb.mozillazine.org/Testing_pre-release_versions
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • Error when I try to open Firefox. Says Firefox is running in the background and cannot open. Suggests closing that window or restart system. This has happened several times recently. I reinstalled but am still getting the error. Any thoughts?

    I am getting an Error when I try to open Firefox that Says Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. This has happened several times recently. I deinstalld and reinstalled but am still getting the error. Any thoughts?

    This happens to me as well. However, I have a shortcut on my desktop as well as my quick start bar. When this has happened to me, I can usually log back in without restarting, by using the shortcut on the desktop rather than the usual quick start bar.
    I know this sounds weird, but it has worked for me about 80% of the time.

  • Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0

    Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0
    Cannot access in browser PDF files unless blank box is closed and then website address is clicked on again in browser address bar and page reloaded.
    Uninstalled Acrobat 9, reinstalled, still same problem.
    Help please!

    Yes I can it only happens in the browser..
    I reinstalled Windows on my machine and started over a couple of weeks ago.
    When my desktop started up I didn’t have Acrobat installed and clicked on a pdf file and the open with xxx dialogue box came open.
    I chose a different program as Acrobat wasn’t installed yet so it associated pdf files with another program.
    Later Installed Acrobat and couldn’t associate the pdf file with acrobat so I went into Folder Options and manually associated PDF files with Acrobat.
    Ever since then I get the error when something is downloaded and opened in the browser.
    Works fine everywhere else and when I cancel the blank error, highlight the web address and press enter to reload it works 90% of the time.
    Not sure what to do..

  • Slow script error when opening websites

    I'm getting a slow script error when opening websites

    Safari > Preferences > Advanced > Show Develop menu in menu bar
    Safari > Develop > Disable Runaway JavaScript Timer

  • Installing my updated CS4 on a new I Mac: "legacy Java SE 6 runtime" error when i try to open psd

    Bought the original Creative Suite package 1n 2004, installed on my new apple G5.  Upgraded in 2009 to CS4 and sometime installed on a 2nd computer.  I'm sure I registered each product.  I don't have the original disk's, but I have the serial number. I'm trying to install CS on my new I Mac.  It fails authorization in the download.  I went ahead and downloaded the 30 day trail like suggested.  I get the "legacy Java SE 6 runtime" error when i try to open psd.  After my first attempt failed and I read the help lessons on deactivation, I believe I have deactivated from the G5, but I'm still getting the same code when trying to open psd.

    Download and install: Java for OS X 2014-001 
    Reboot your Mac.
    Let me know how it goes.
    Gene

  • Algebra CD keeps displaying "Script run-time error" when I try to open it

    I have a CD that came with my Algebra book (I bought it used) for Technical School and it keeps displaying Scrip run-time error when I try to open it.  I have updated Quick-time player, just in case that was the problem.

    b noir wrote:
    Is CoreGraphics.dll cited in the iTunes events?
    Also check for error events happening a few seconds prior to the iTunes events. Open those events. Do they all cite the same .ttf file? If so, what's the precise spelling of the .ttf (font) file?
    YES! There is a CoreGraphics.dll cited in the iTunes event. This is what exactly the window said
    "Faulting application iTunes.exe, version 9.0.3.15, faulting module CoreGraphics.dll, version 1.0.60.0, fault address 0x00266560."
    For the .ttf file, this is what it showed.
    "Windows cannot access the file C:\WINDOWS\Fonts\ARIALUNI.TTF for one of the following reasons: there is a problem with the network connection, the disk that the file is stored on, or the storage drivers installed on this computer; or the disk is missing. Windows closed the program ARIALUNI.TTF because of this error.
    Program: ARIALUNI.TTF
    File: C:\WINDOWS\Fonts\ARIALUNI.TTF"
    I hope this will help. I still cant open iTunes.

  • Java Script Error

    Saved various websites which I was researching a trip with and about a week later opened them all up and got this error.
    Java Script: error in konaSafe reporting   it gave me the option to click OK which I did and it repeated itself 3 times before it quit.
    Any idea what is happening here
    Thanks

    I'm using Safari 5.1.7 and I'm using Snow Leopard 10.6.8 Intel.
    Ok I did a bit more experimenting and it turned out to be just one of the half a dozen web sites that I had archived during my research for a trip.
    When I had gone back to them and opened them up I did so as a block and that's when I got the error.
    This time I opened them one by one and found that just one of them was the culprit.
    It appeared that somehow an Add company called Invite had superimposed a Lufthanser rental add across part of the website which prevented me from using the website until I had clicked on their rental link.
    I searched for and  brought up the original website from Google and it opened up without the Add and I didn't get the Java Script error.
    Don't know just why only one of my original saved websites was affected but I'm sure that the Add by Invite had been the problem.   I have now opted out of that company's add program not that I had ever opted in.
    Thanks Brody for the suggestions and help.

  • Java script error. Error umber 45

    I have read the technote related to this issue. When trying to open InDesign CS3, I get a "Java Script Error. Error number; 45 errorstring: object is invalid in line 387...followed by the same error message in line 428.
    the tech note says to go to c:\Documents\<username>\application Data\Adobe\InDesign\Version 5.0 and delete the pluginconfig file.
    I do not have that file on my computer.
    can someone tell me how to find the file I need to delete?
    Thanks

    Hi and Welcome to the forums!
    debraweddall wrote:
    I believe for java script error I have to delete all device software and reinstall. Is that correct and what is the correct procedure?
    IMHO, you'd need to describe the error better than that before leaping to the treatment plan that you are describing. Please describe the symptom with more details if you'd like different recommendations.
    Best.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • SMS messages are not saved on iphone on ios 7.0.4

    After updating  iPhone 4S to ios 7.0.4  it was a week before I realized that there was a problem with sending and receiving messages. They appeared to be hanging at about 90% when sending and would stay as "sending" even when delivered (to  the other

  • Private attributes are not private

    Please consider the following.... // this is a class by someone else. class A{   private Integer secretPinNumber =     new Integer(100); // and I write this class class B extends A{   // there is a method in here but I won't tell   // you what it is

  • My IBook G4 died, Screen goes through some colors then nothing

    It was running ok, I put it to sleep, then this morning it would not turn on. Nothing. I tried taking battery out and put it in and the screen displayed, orange then green, then blue then white then black. No hard drive sound. Yery dead. Same with ex

  • Using PowerShell Functions in t-SQL scripts

    experts, Can I use a power shell function that gets file size given file path by cross applying it to a table in SQL Server that holds file path of files? fileID    filepath 1         L:\DemoWebPages\About.cshtml.txt 2         L:\DemoWebPages\default

  • What is a good spreadsheet app?

    What is a good spreadsheet app?