How can i make default setting.

hai,
any body please tell me how can i make default stock in quality inspection in migo where tab.
thanks
bhakta

Hi Bhakta,
As Vijay said you have maintain quality maangement view and in the inspection data tab maintain the inspection type 01 "incoming inspection for GR of purchased orders and activate this by activating the checl BOX in the right side" and activate the check box "post to ispection lot" in the same tab.
By doing this the total lot of posted GR will be moved to quality inspection with a unique quality inspection lot number.
Regards
TAJUDDIN

Similar Messages

  • How can I make a setting so that new tabs bring up my home page?

    When I open a new tab I get this lame empty page. I want my home page to come up! I know I can just click on the home button to do this but how can I set up Firefox to do it automatically? PS when first opening Firefox there is no problem - home page loads fine.

    You can do that by using an add-on such as:
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage

  • I can temporarily set my Internet keyword search service to Google's Browse by Name service, but how can I make that setting permanent?

    I'm using Firefox 5.0. In about:config, keyword.enabled is set to "true," but keyword.URL is set to chrome://browser-region/locale/region.properties I can modify it to http://www.google.com/search?ie=UTF-8&oe=utf-8&q= but when I exit and then restart Firefox, the keyword.URL is back the way it was. How do I permanently fix this? With keyword.URL set to chrome://browser-region/locale/region.properties, if I attempt an Internet keyword search, I get the error message, "File not found. Firefox can't find the file at jar:file:///C:/Program Files/Mozilla Firefox/omni.jar!/chrome/en-US/locale/browser-region"

    I set the keyword.URL preference to the Google Search-by-Name URL, changed to the default theme, and then restarted in Safe Mode with add-ons disabled. When I then checked keyword.URL, it had changed back to the "chrome:" setting.
    I set keyword.URL again and then disabled all plug-ins, exited Firefox normally, and restarted in Normal Mode. Again, keyword.URL had reverted to the "chrome:" setting.
    I then reset keyword.URL, left all the plug-ins disabled, and restarted in Safe Mode. Once again, keyword.URL had reverted to the "chrome:" setting.
    Sorry to be so clueless, cor-el, but I'm afraid I don't know what a locale is. I tried to read your link to mozillaZine, but it kept timing out after 30 seconds. Is that because of too much volume? So are you saying that my current locale is supposed to reset the keyword.URL preference from the "chrome:" setting to some valid value, but that isn't happening? What else could cause this besides a bad extension, theme, or plug-in?

  • How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?

    How can I make iTunes sort on the first word by default, even though that word is "The" or "A"?
    I myself think that (for instance) "A tribe called Quest" should be sorted under "A", not "T".
    Now I can edit the sort options manually per track and/or per selection, but I would really like to just kill this "iTunes-knows-how-you-should-sort"-feature in iTunes.
    Anyone any suggestion on how to do that?
    Thanks

    Here is a modified version of one of Doug's Scripts. My modification was to add Sort Name to the list of tags that could be changed. I tried it on a single track and it worked. I recommend backing up your library first. Select the tracks you want to change (or all tracks) and run the script from the Applescript Editor.  If it works as intended, save it so you can apply it to newly imported tracks.  And, yes, I know this isn't the exact answer to your question, you want to change a preference setting in iTunes (if there is such a setting).
    Original script can be forund at http://dougscripts.com/itunes/scripts/ss.php?sp=thistagthattag
    Modified script is below. Start up Applescript Editor, paste it into a new window.  Start up iTunes and select the tracks to modify.  Click Run in the Applescript Editor.  Follow the instructions.
    (* Put This In That
    v2.0 april 22 2008
    - runs as universal binary
    - adds "Show" tag
    - consolidated code
    - saved as script bundle
    v1.7 October 3, 2006
    - adds "Album Artist" as option
    v1.6 October 28, 2004
    - works around iTunes 4.7 selection bug
    v1.5 ('04/1)-- adds "grouping" tag
    Get more free AppleScripts and info on writing your own
    at Doug's AppleScripts for iTunes
    http://dougscripts.com/itunes/
    This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
    This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
    Get a copy of the GNU General Public License by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
    or visit http://www.gnu.org/copyleft/gpl.html
    -- CONSTANTS
    property allOptions : {"Song Name", "Artist", "Album", "Album Artist", "Composer", "Genre", "Comments", "Show", "Grouping", "Sort Name"}
    property my_title : "Put This In That"
    global thisTag, thatTag, theNewTags, theOriginalTags, yn
    tell application "iTunes"
              if selection is not {} then -- if tracks are selected...
                        set sel to selection
                        set numTracks to (length of sel)
                        set s to "s"
                        if numTracks is 1 then set s to ""
                        display dialog "The data from one tag REPLACES the data in another tag in all the selected tracks, with option to delete data in first tag." & return & return & (numTracks & " track" & s & " selected.") buttons {"Cancel", "Continue"} default button 2 with title my_title giving up after 30
                        if gave up of result is true then return
                        my choose_this_tag()
                        my choose_that_tag()
                        set yn to (button returned of (display dialog "Delete data in " & thisTag & " afterwards?" buttons {"Yes", "No"} default button 2 with title my_title giving up after 45) is "Yes")
                        set oldfi to fixed indexing
                        set fixed indexing to true
                        repeat with t from 1 to numTracks
                                  tell contents of item t of sel
                                            set theOriginalTags to {get name, get artist, get album, get album artist, get composer, get genre, get comment, get show, get grouping, get sort name}
                                            set theNewTags to theOriginalTags
                                            my do_put()
                                            set {name, artist, album, album artist, composer, genre, comment, show, grouping, sort name} to theNewTags
                                  end tell
                        end repeat
                        set fixed indexing to oldfi
              else
      display dialog "No tracks have been selected." buttons {"Cancel"} default button 1 with icon 0 giving up after 30
              end if -- no selection
    end tell
    to choose_this_tag()
              tell application "iTunes"
                        set n to (choose from list allOptions with prompt ("Select a tag to get data from:") with title my_title)
                        if n is false then error number -128
                        set thisTag to (n as text)
              end tell
    end choose_this_tag
    to choose_that_tag()
              set o to {}
              repeat with t in allOptions
                        if (t as text) is not thisTag then copy t to end of o
              end repeat
              tell application "iTunes"
                        set n to choose from list o with prompt ("Use data from the " & thisTag & " tag to REPLACE data in...") with title my_title
                        if n is false then error number -128
                        set thatTag to n as text
              end tell
    end choose_that_tag
    to do_put()
              try
                        repeat with i from 1 to (length of allOptions)
                                  if thisTag is (item i of allOptions) then
                                            set thisTag_sto to (item i of theOriginalTags)
                                            exit repeat
                                  end if
                        end repeat
                        repeat with i from 1 to (length of allOptions)
                                  if thatTag is (item i of allOptions) then
                                            set (item i of theNewTags) to thisTag_sto
                                            exit repeat
                                  end if
                        end repeat
                        if yn then
                                  repeat with i from 1 to (length of allOptions)
                                            if thisTag is (item i of allOptions) then
                                                      set (item i of theNewTags) to ""
                                                      exit repeat
                                            end if
                                  end repeat
                        end if
              end try
    end do_put

  • HT204392 how can i make my logitech C920 work as my default?

    how can i make my logitech C920 work as my default?

    i just figured the problem and has nothing to do with changing those integers. in the audio MIDI setting (app in utilities folder) for the c920 make sure the format is set to 24000hz, and it will finally work. if its set to 16000hz or 32000hz it wont work. i actually went backand put the integer settings to its original settings. 24integer for mac and 16 for c920.

  • How can I make google my real default search engine?

    Yes, I have set Google as my preferred search engine in Safari Preferences.
    But when I try to do things such as define a word, it uses Bing.
    Frankly, I do not care for Bing.
    How can I make google always be my search engine?
    Thanks

    Here you go Andy.
    I did learn some things while looking at it.
    I need to clean out byTimemachine drive  :-)
    EtreCheck version: 1.9.11 (43) - report generated May 24, 2014 at 3:36:36 PM CDT
    Hardware Information:
              MacBook Pro (17-inch, Early 2011)
              MacBook Pro - model: MacBookPro8,3
              1 2.2 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 512 MB
              AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 4:36:5
    Disk Information:
              APPLE HDD HTS541075A9E662 disk0 : (750.16 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 651.3 GB (128.86 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
                        BOOTCAMP (disk0s4) /Volumes/BOOTCAMP: 98 GB (53.79 GB free)
              MATSHITADVD-R   UJ-8A8 
              ST1000LM024 HN-M101MBB disk1 : (1 TB)
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        Time Machine (disk1s2) /Volumes/Time Machine: 999.86 GB (258.83 GB free)
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Seagate FreeAgent GoFlex 1.5 TB
                        Photo Drive (disk3s1) /Volumes/Photo Drive: 1.5 TB (1.03 TB free)
              PNY Technologies USB 2.0 FD 32.18 GB
                        USB20FD (disk2s1) /Volumes/USB20FD: 32.18 GB (18.46 GB free)
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
                        LaCie Rugged mini
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [kext loaded] com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) Support
              [kext loaded] com.Cycling74.driver.Soundflower (1.5.3 - SDK 10.6) Support
              [not loaded] com.Ralink.driver.RT2870USBWirelessDriver (4.2.6 - SDK 10.6) Support
              [not loaded] com.elgato.driver.DontMatchAfaTech (1.1) Support
              [not loaded] com.elgato.driver.DontMatchCinergy450 (1.1) Support
              [not loaded] com.elgato.driver.DontMatchCinergyXS (1.1) Support
              [not loaded] com.elgato.driver.DontMatchEmpia (1.1) Support
              [not loaded] com.elgato.driver.DontMatchVoyager (1.1) Support
              [not loaded] com.mtk.driver.mXHCD (1.0.0) Support
              [not loaded] com.quark.driver.Tether (1.1.0d1) Support
              [kext loaded] com.quark.driver.Tether64 (1.1.0d1) Support
              [not loaded] com.realtek.driver.RTL8192SU (1066) Support
              [not loaded] com.realtek.driver.RTL8812AU (1021 - SDK 10.8) Support
              [not loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.52) Support
              [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.45) Support
              [not loaded] com.roxio.BluRaySupport (1.1.6) Support
              [not loaded] com.roxio.TDIXController (2.0) Support
              [kext loaded] com.seagate.driver.PowSecDriverCore (5.2.2 - SDK 10.4) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.2 - SDK 10.4) Support
              [kext loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.2 - SDK 10.5) Support
              [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.2 - SDK 10.4) Support
              [not loaded] com.silabs.driver.CP210xVCPDriver (3.0.0d1) Support
              [not loaded] com.silabs.driver.CP210xVCPDriver64 (3.0.0d1) Support
              [kext loaded] com.symantec.kext.SymAPComm (12.6f28 - SDK 10.6) Support
              [not loaded] com.symantec.kext.filesecurity (2.6f32) Support
              [kext loaded] com.symantec.kext.fw (5.3f12) Support
              [kext loaded] com.symantec.kext.internetSecurity (5.3f6) Support
              [kext loaded] com.symantec.kext.ips (3.9.1f10) Support
              [kext loaded] com.symantec.kext.pf (5.6f22) Support
              [not loaded] com.wdc.driver.1394HP (1.0.5) Support
              [not loaded] com.wdc.driver.USBHP (1.0.1) Support
    Startup Items:
              WiFiUtilityStartUp: Path: /System/Library/StartupItems/WiFiUtilityStartUp
              ProTec6: Path: /Library/StartupItems/ProTec6
              ProTec6b: Path: /Library/StartupItems/ProTec6b
    Problem System Launch Agents:
              [loaded] com.paragon.NTFS.notify.plist Support
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist Support
              [running] com.backblaze.bzserv.plist Support
              [loaded] com.bombich.ccc.plist Support
              [running] com.fitbit.galileod.plist Support
              [loaded] com.genieoinnovation.macextension.client.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
              [running] com.micromat.TechToolProDaemon.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [running] com.symantec.deepsight-extractor.plist Support
              [loaded] com.symantec.errorreporter-periodic.plist Support
              [loaded] com.symantec.liveupdate.daemon.ondemand.plist Support
              [loaded] com.symantec.liveupdate.daemon.plist Support
              [not loaded] com.symantec.nav.migrateqtf.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [running] com.adobe.AdobeCreativeCloud.plist Support
              [running] com.epson.epw.agent.plist Support
              [running] com.genieoinnovation.macextension.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.micromat.TechToolProAgent.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [running] com.rim.BBLaunchAgent.plist Support
              [loaded] com.symantec.errorreporter-periodicagent.plist Support
              [loaded] com.symantec.nis.application.plist Support
              [running] com.symantec.uiagent.application.plist Support
              [not loaded] com.trendnet.wutility Support
              [running] Wlan.Software.plist Support
              [failed] WlanAC.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [running] com.akamai.single-user-client.plist Support
              [running] com.backblaze.bzbmenu.plist Support
              [loaded] com.genieo.completer.download.plist Support
              [loaded] com.genieo.completer.update.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
              [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
              [running] com.microsoft.LaunchAgent.SyncServicesAgent.plist Support
              [not loaded] ws.agile.1PasswordAgent.plist Support
    User Login Items:
              Garmin Express Service
              WeatherBug Alert
              GoFlex Home Agent
              iTunesHelper
              Dropbox
              Fitbit Connect Menubar Helper
    Internet Plug-ins:
              JavaAppletPlugin: Version: Java 7 Update 55 Check version
              Google Earth Web Plug-in: Version: 6.0 Support
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
              OfficeLiveBrowserPlugin: Version: 12.2.9 Support
              SlingPlayer: Version: (null) - SDK 10.6 Support
              AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
              FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
              AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
              Silverlight: Version: 5.1.30317.0 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.4.1 - SDK 10.6 Support
              AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
              CouponPrinter-FireFox_v2: Version: Version 1.1.7 - SDK 10.5 Support
              GarminGpsControl: Version: 4.0.4.0 Release - SDK 10.6 Support
              EPPEX Plugin: Version: 3.0.5.0 Support
              DirectorShockwave: Version: 12.0.4r144 - SDK 10.6 Support
    Safari Extensions:
              Translate: Version: 1.1
              Video Converter: Version: 3.0.0
              1Password: Version: 4.1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              InstantOn: Version: 7.1.2 - SDK 10.8 Support
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
              Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes:
              Akamai NetSession Preferences  Support
              Backblaze Backup  Support
              EarthDesk  Support
              Flash Player  Support
              Flip4Mac WMV  Support
              Java  Support
              MagicMenu  Support
              MagicPrefs  Support
              Norton\nQuickMenu  Support
              Paragon NTFS for Mac ® OS X  Support
              Perian  Support
              TechTool Protection  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 606.57 GB Disk used: 486.56 GB
              Destinations:
                        Time Machine [Local] (Last used)
                        Total size: 931.19 GB
                        Total number of backups: 43
                        Oldest backup: 2014-04-26 21:03:29 +0000
                        Last backup: 2014-05-24 20:28:32 +0000
                        Size of backup disk: Too small
                                  Backup size 931.19 GB < (Disk used 486.56 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  47%          bzfilelist
                   2%          WindowServer
                   0%          Dropbox
                   0%          Creative Cloud
                   0%          fontd
    Top Processes by Memory:
              279 MB          SymDaemon
              246 MB          AdobeAcrobat
              229 MB          mds_stores
              180 MB          com.apple.IconServicesAgent
              147 MB          Microsoft Database Daemon
    Virtual Memory Information:
              10.50 GB          Free RAM
              2.81 GB          Active RAM
              850 MB          Inactive RAM
              1.84 GB          Wired RAM
              1.65 GB          Page-ins
              0 B          Page-outs

  • How can I make mail my default mail programme

    How can I make mail my default mail programme, I used to use entourage and now when I want to share I only have the option of entourage in the share list on safari

    Open Mail. Select Preferences from the Mail menu in the menubar. Click on the General icon in the toolbar. Set the desired default in the dropdown menu labeled "Default email reader."

  • How can I make Acrobat Pro XI open by default to thumbnails view (Pages Panel & Pages)?

    How can I make Acrobat Pro XI open by default to thumbnails view (Pages Panel & Pages) without changing the properties on every single pdf?

    Not possible. This is a file-specific setting, not an application-wide
    setting.

  • I just upgraded from Express to Pro.  When I open a project in Finder and neither Express nor Pro are running, it always opens in Express.  "Open With ..." says Express is the default.  How can I make Pro the default instead?

    I just upgraded from Logic Express to Pro.  When I open a project in Finder and neither Express nor Pro are running, it always opens in Express. I now want projects to open in Pro.  "Open With ..." says Express is the default.  How can I make Pro the default instead?

    Well, when I've done things like that it always sems like a good idea to keep an application that you know the file will definitely open in...

  • I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have had this same problem for weeks now with my 4S.  I just got a new 5S after being extremely frustrated and the same thing - no sounds.  After searching posts all over, I couldn't find a solution. I just told my friend of the issue and he asked "Do you have the Do Not Distrub on?"  I didn't even know such a function existed.  Upon looking that was exactly the issue.
    To resolve, go to Settings> Do Not Disturb> Manual.  If it is green, turn it off.  You will now get phone calls and text alerts.
    This functionality is also on your quick access utility menu (slide up menu).  I assume this is how it was enabled on my phone.
    I will post on other sites since I searched for weeks for this solution and didn't see it anywhere.  Good luck!

  • How can I make the sort default "by date" in iPhoto?

    On one of my computers, every time I load an event, it goes to the top of the library and I have to go to "sort/by date" to get it to go to the end or bottom of the library...where I want it.
    On my other computers, the default seems to be "by date" normally....
    How can I make the default sort option "by date?"
    Thanks.

    I am not by that computer now.  But that makes sense.
    I combine events that are imported into that iPhoto.  I suppose that would qualify as manually sorting....right?
    Still, shouldn't there be a way to overide that and make "date" the default.  That is, if your observation is correct.
    (I'll take a look tomorrow....)
    Thanks!!

  • The "always match my default message font" option in the Signature preferences from Mac Mail does not work if e-mail is received in other Mail Software. How can I make it work?

    The "always match my default message font" option in the Signature preferences from Mac Mail does not work if e-mail is received in other Mail Software. How can I make it work?

    I found this plugin which solved pretty much all of my mail font rendering problems.  It is designed for Lion, so don't know whether it will work but thought I would offer it up.
    http://noware-it.zxq.net/

  • I'v just installed creative cloud 64 bit windows. How can I make bridge the default program to upload pictures rather than lightroom?

    I've just installed creative cloud 64 bit windows.  How can I make bridge the default program to upload pictures rather than lightroom?

    Usually the default program associated with an image file extension is an image developing Program like Lightroom or an image editing program like Photoshop. If you want to change the default associated program to Adobe Bridge you would use Window's Controls Panel file association applet.

  • How can I make Yahoo Mail the default in Safari?

    How can I make Yahoo Mail the default in Safari. I contacted Yahoo and they said to contact Safari.

    Yahoo Mail is not an application. If you wish to use Yahoo Mail just create a bookmark to its web page.

  • How can I make Firefox my default internet brouser?

    how can I make Firefox my default internet brouser?

    See https://support.mozilla.com/kb/How+to+make+Firefox+the+default+browser

Maybe you are looking for

  • Can't send messages from Mail from Comcast account - "SMTP not responding"

    Using Mail and a Comcast account, I can receive but not send. The error message on trying to configure the outgoing mail server says the SMTP server isn't responding. If I click continue to set up the account in Mail, then go to Mail Preferences and

  • Can Elements 7 read CS4 file formats  ?

    If CS4 has been used to capture HD and develop in-progress sequences (with basic video and audio transitions) and thus Premiere Pro project files *.prproj can they be imported/read by Elements 7 for further work (e.g. on another computer by someone e

  • SQL_TYPE_MISMATCH

    hai , SELECT * FROM V$SQL_SHARED_CURSOR WHERE KGLHDPAR='00000005A6710DD0'; ADDRESS          KGLHDPAR         U S O O S L S E B P I S T A B D L T R I I R L I O S M U T N F L 00000005A67105B8 00000005A6710DD0 N N N N N N N N N N N N N N N N N N N N N N

  • Help with Coldfusion 5 login page

    Hi I want to setup a login page for my company website. This is running in Coldfusion version 5(I know its very old version). I never worked with Coldfusion before. Is there any setting in Control panel that we can require user to login to view any o

  • I am having issues sending email from the apple mail application. reciving works but somtimes it takes an hour to send if at all. any thoughts?

    I administrate an office and we switched to macs very recently. Now the problem I am having is one of the workstations will send emails but very slowly and it sometimes it doesn't send at all through apple mail. It work fine through gmail client but