Published pdf form is unable to connect with database

Hi Guys!
I have created a PDF form using Adobe Live Cycle Designer which have some text fields namely RECORD and NAME. I have connected this form with a Database. When I enter a record in the RECORD number field the NAME field of this form has been populated with the help of XFA Script which is written on the exit event of the RECORD text field. When we publish this form, a new interactive PDF is created which works fine and populates the NAME field from the an SQL database but when I access this PDF form (which is located on a shared location) from some another location (not on the same machine where i designed this form) it is unable to connect to the database and does not work as expected.
I think there is some thing i am missing for the database connectivity.
If any body on this forum can help me out.
thanks
Here is the Script for the above form which i used to populate the NAME FIELD on the basis of enetered RECORD number.
----- Document.Page1.txt_MRN::exit: - (JavaScript, client) -----------------------------------------
/* This dropdown list object will populate two columns with data from a data connection.
sDataConnectionName - name of the data connection to get the data from.  Note the data connection will appear in the Data View.
sColHiddenValue  - this is the hidden value column of the dropdown.  Specify the table column name used for populating.
sColDisplayText  - this is the display text column of the dropdown.  Specify the table column name used for populating.
These variables must be assigned for this script to run correctly.  Replace <value> with the correct value.
var sDataConnectionName = "DataSource";  // example - var sDataConnectionName = "MyDataConnection";
var sColHiddenValue  = "RecordNum";   // example - var sColHiddenValue = "MyIndexValue";
var sColDisplayText  = "Name";   // example - var sColDisplayText = "MyDescription"
// Search for sourceSet node which matchs the DataConnection name
var nIndex = 0;
while(xfa.sourceSet.nodes.item(nIndex).name != sDataConnectionName)
nIndex++;
//var oDB = xfa.sourceSet.nodes.item(nIndex);
var oDB = xfa.sourceSet.nodes.item(nIndex).clone(1);
oDB.open();
oDB.first();
// Search node with the class name "command"
var nDBIndex = 0;
while(oDB.nodes.item(nDBIndex).className != "command")
nDBIndex++;
// Backup the original settings before assigning BOF and EOF to stay
var sBOFBackup = oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("bofAction");
var sEOFBackup = oDB.nodes.item(nDBIndex).query.recordSet.getAttribute("eofAction");
oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayBOF", "bofAction");
oDB.nodes.item(nDBIndex).query.recordSet.setAttribute("stayEOF", "eofAction");
// Clear the list
this.clearItems();
// Search for the record node with the matching Data Connection name
nIndex = 0;
while(xfa.record.nodes.item(nIndex).name != sDataConnectionName)
nIndex++;
var oRecord = xfa.record.nodes.item(nIndex);
// Find the value node
var oValueNode   = null;
var oTextNode   =  null;
var sRecordNum  =  $.rawValue;
for(var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex++)
if(oRecord.nodes.item(nColIndex).name == sColHiddenValue)
  oValueNode = oRecord.nodes.item(nColIndex);
else if(oRecord.nodes.item(nColIndex).name == sColDisplayText)
  oTextNode = oRecord.nodes.item(nColIndex);
var found= 0;
while(!oDB.isEOF())
if (oValueNode.value== sRecordNum)
  txt_FirstName.rawValue = oTextNode.value;
  txt_LastName.rawValue = oTextNode.value;
  found = 1;
  break;
  //this.addItem(oTextNode.value, oValueNode.value);
   oDB.next();
   if (found == 0)
    txt_FirstName.rawValue = "";
    txt_LastName.rawValue = "";
// Restore the original settings
oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sBOFBackup, "bofAction");
oDB.nodes.item(nDBIndex).query.recordSet.setAttribute(sEOFBackup, "eofAction");
// Close connection
oDB.close();

Finally achived the database connectivity for the published pdf form developed in the Adobe LiveCycle Designer 8.0.
There must be the same driver version of the DSN on both machines. The machine which published the form and the one accessing it.
Use the Admin account to add the DSN on both machines.
Get rid of the error: Connection for Source "DataConnectionName" failed because the environment is not trusted.
Thanks
AbdulHafeez

Similar Messages

  • Unable to connect with Database server in MDM

    Hi Experts,
    I have installed the MDM server 7.1 on windows 64 bit box, but installed MDM console (32 bit).
    Getting the issue like below
    Can anybody please help me out to fix the issue.
    Thanks in advance,
    Bhaskar N

    dear
    Did you install Oracle client on MDM server.  If not please install it and revert with the result..
    Please check SAP Note 1350635 - "Problem connecting to database from MDM console" & Note 1363797 -" Oracle connection problem".. Kindly also check the log in MDM console and revert with the result.
    Also, Please check Configurations Settings as mention in [MDM installation Document|https://websmp209.sap-ag.de/~sapidb/011000358700001668492008E] from Page no 42 to 45.
    do the following
    You need to create tnsnames.ora file even on the host where MDM is installed and define Oracle database host and instance there. Then, MDM user needs to have access to oracle client libraries and needs to have access to this tnsnames.ora file as well. Once you set this up, it will work fine.

  • MDM 71 - mdm console and clix - unable to connect to database server

    Hi,
    environment, MDM 7.1, AIX 6, Oracle 10.2.0.4 (installed as part of a standalone java AS)
    i've an issue. I have installed MDM 71 via sapinst, before that I installed a standalone java application server. During the installation, i gave the 'oracle client', 'oracle home' and 'oracle sqlplus utility' to be those of the oracle database installed for the java AS.
    After sapinst completed I tested my connection to the database via
    tnsping <SID> = OK
    sqlplus system/passwd@<SID> = OK
    When i start up the mdm console (7.1.02.90) i can mount the MDM server, BUT when I try to configure the database settings i get
    error  'unable to connect to database server'
    I get the same error when i use clix dblist
    Error: 0x84020004, Unable to connect with Database Server
    Has anybody got any ideas.

    To see why the MDM is not able to connect to database, do the following:
    % cd /usr/sap/<SID>/MDSxx/log
    % ls -ltr
    You will find last updated log file with name like MDS_LogXXUX101224X164953.csv
    % tail -100 MDS_LogXXUX101224X164953.csv
    You will see the reason for not being able to connect. If the reason is:
    ",MDSAdminServerXGetAvailableReps,Oracle_DBConnection.cpp,205,,,,server_user,server_global,,,
    2011-09-23T06:10:48.933,6       ,24,"Service 'SID', Schema 'system', ERROR CODE=12154 ||| ORA-12154: TNS:could not resolve the connect identifier specified
    OCI Attach, try again ...
    Then edit the /oracle/SID/112_64/network/admin/tnsnames.ora with entry like following:
    SID.WORLD =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS =
            (COMMUNITY = SAP.WORLD)
            (PROTOCOL = TCP)
            (HOST = hostname)
            (PORT = PORT_NO)
        (CONNECT_DATA =
          (SID = SID)
          (GLOBAL_NAME = SID.WORLD)
    then issue:
    tnsping SID
    If result is like
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP) (HOST = hostname) (PORT = PORT_NO))) (CONNECT_DATA = (SID = SID) (GLOBAL_NAME = SID.WORLD)))
    OK (0 msec)

  • Problem regarding to connection with database

    while opening the SQL server 2008,it is unable to connect with database, showing as error 2

    1. Make sure SQL Server Service is running
    2. If a named instance, make sure SQL Server browser service is running
    3. Make sure SQL Server is configured to allow remote connections
    4. Examine the SQL Server error log for messages confirming that SQL is listening on the expected network interfaces and ports
    5. Test server connectivity with PING from the client machine
    6. Test port connectivity using TELNET or PowerShell to the server and port (from step 4) from the client machine.  For example
    a. TELNET <server-name> 1433
    b. PowerShell: 1433 | % { echo ((new-object Net.Sockets.TcpClient).Connect("YourServerName",$_)) "server listening on TCP port $_" }
    7. Check firewall settings if step 5 or 6 connectivity test fails
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    I created a pdf form from a Word doc with 9 pt aerial font formatting; the text on the pdf form is aerial 9 pt, but the fields are formatted in courier 12 pt - How do I reformat the font in the fields??

    You can set up a temporary button (or link, bookmark, etc.) and add the following JavaScript action:
    // Mouse Up script for a temporary button (or bookmark, etc.)
    // Change the font and font size for all text fields in this document
    for (var i = 0; i < numFields; i += 1) {
        var f = getField(getNthFieldName(i));
        if (f.type === "text") {
            f.textFont = font.Helv;
            f.textSize = 9;
    It also sets the font size, but you can remove that line if you don't need to do that.

  • I have a ipad mini and it says that it has perect wifi yet when i go into safari it says unable to connect with the server how can i fix this?

    I have a ipad mini and i have had it for less then a year, it says that i have perfect wifi up in the left corner where the wifi is always at  but when ever i go into the built in safari it says that it is unable to connect with the server. How can i fix this because with out it connecting to the server or internet it is kind of useless to me. I do have ios7 if that helps

    The wifi symbol only indicates the presence/signal strength of wifi. Not that you are connected.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • TS1368 unable to connect with the apple itunes store. no error message, it just keeps "accessing" the store, and it is never successful. How do I overcome this?

    I am unable to connect with the iTunes store. ITunes keeps "accessing", but that can go on for an hour. No error messages. It just never connects. How can I overcome this?

    The question for me becomes what motivation do I  (Apple's customer) have to download Autoruns from Windows, open a compressed folder, try to determine which Winsock Provider is mine, check for updates and then run whatever it is I need to run to fix this.  All these steps just so I can access the Itunes Store and buy from Apple.  It would seem that Apple would find a fix on their side so their customers don't have to do this.  Is anyone from Apple listening???

  • Error message "unable to connect with server. Check wifi connection"

    I started having the error message "unable to connect with server. Check wifi connection" when I attempt to use search function within a certain apps and when I try to download certain magazine (eg. National geographic).  I didn't have this problem with I first started using iPad, and no problems with connectivity when using other apps.  Can anyone help?

    You may not really be connected to your WiFi network.
    Your router may not have given your iPad a valid IP address. Go to Settings > Wifi > your network name and touch the ">" to the right to see the network details. If the IP address starts with 169 or is blank then your router didn't provide an IP address and you won't be able to access the Internet.
    Sometimes the fix can be as simple as restarting your router (remove power for 30 seconds and restart). Next, reset network settings on your iPad (Settings > General > Reset > Reset network settings) and then attempt to connect. In other cases it might be necessary to update the router's firmware with the latest from the manufacturer's support web pages.
    If you need more help please give more details on your network, i.e., your router make, model and version, the wifi security being used (WEP, WPA, WPA2), etc.

  • I can't receive my incoming mail. ESP is yahoo.  Error msg says unable to connect with POP server.  Any solution?

    I can't receive my incoming mail in Mac Mail. ESP is yahoo.  Error msg says unable to connect with POP server.  Any solution?  I am able to get my incoming messages via yahoo website but not through the Mail app.

    Try this, if it is not the correct department, ask them for the number or to be transfered..
    Call 1-800-318-0612 for Login Help
    Also on most autmated systems, if you hit 00000, or ##### you can sometimes get thru to a person.
    Is Yahoo your Internet provider? Do you have  a local provider? ei:AT&T, SBC,  cable co, check who you make your check or epatment to...etc, If so I would start there, but if no joy go to the "Mothership"
    I may be wrong about this, (it's been a long time now) I may have deleted my mail account from Mail (after writing down all the info from all General/accounts, and the rest of the tabs, and then added a new account using my existing email address, and it may have "walked me thru the rest of the proceedure".
    But like I said it was a long time ago 3-4 years, but that may have been the path I ended up taking, make sure to write all the info down in case you need to re-enter it all manually. Then try calling them.
    All the best

  • HT4623 After updating ios I'm unable to connect with safari, server unavailable; what should I do next

    After updating ios I'm unable to connect with safari, server unavailable what do I do now?

    I have solved my issue as well. For those who has not Find My Friends app in their devices should try this:
    - Open Safari from iPhone and go to icloud.com
    - Click (touch) Instal My Friends
    - And follow above given instruction for this problem

  • Reload Software:552 and then "Application loader was unable to connect with your device."

    Hi guys
    I'm new to this forum and looking for a help please..
    My curve 8900 got the "Reload Software:552" message on the screen. I was trying to uninstall an application and after it asked me to reboot, it showed me that message. I already try to reinstall the OS like most of you guys said. But when I already in the process of that, it showed me "Application loader was unable to connect with your device. Please re-connect yout device, enter password, if requiered, and retry" 
    I was trying this steps..
    1. use the BlackBerry Desktop Manager
    2. connect the BlackBerry to the computer using a USB cable
    3. click application loader, then start
    4. then i choose the OS and apps i want to install it also
    5. after i click finish and the process start, i stuck on the task 2 of 5 "wait for device initialization" and then the message "Application loader was unable to connect with your device. Please re-connect yout device, enter password, if requiered, and retry"  showed.
    I try and try again but there is no use. it keeps show that message.
    help me please, this really frustrates me
    Thanks in advance guys..

    1. Make certain your USB cable is connected to a main REAR USB port on the rear of the PC, not a front USB port, not a USB hub.
    2. Try loading the OS with these instructions (make sure that Desktop Manager is not running):
    1. Download the OS file to the PC then install it to the PC by running (double clicking) the file you downloaded.
    2. Go to c:\program files\common files\research in motion\apploader and delete the file named "vendor.xml."
    3. Plug in BB and double click on "Loader.exe." It's located in the same place as the above vendor.xml file.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • App world error code 31200 and unable to connect with Appworld serverI.I

    I am unable to connect with BlackBerry Apps World and when I try to purchase an App, I keep getting error code 31200! I've tried to wipe my tablet and I created my BlackBerry I'd on my computer! Now I can't get on with my Bold 9700 either! Unable to access payment information even on my computer and I'm beginning to think getting another BlackBerry wasn't such a great idea. I'm open to suggestions, thanks............
    Solved!
    Go to Solution.

    Well,I don,t  have to return this Playbook after all! I'm so glad I called Tech support at 8776448410 and I got ahold of Spencer in Costa Rica and this guy knows what he is doing! So here is the solution..............
    First, wipe your device after backing up your data to BlackBerry Desktop Software if you can. This does work, but you will lose your data you haven't backed up to another location.
    Next, get connected to a Wifi source so when your BlackBerry tablet reboots and comes back up in its original startup mode, you can download necessary updates. Once this is done and you have gone through the tutorials to get you familiar with your Playbook, you will need to open BlackBerry Appworld and in thebsearch box at the top right, enter "BlackBerry I'D" if you haven't seen a screen prompting you to do so before this. 
    Click the "Create BlackBerry ID" icon and start with a new email address.  I recommend. Hotmail since are easiest to link to your Tablet . Fill in with a verifiable email address and secure password. Write it down if you have to. Younwill be taken to another page where younput in your payment information so you can buy Apps. You can use a credit card or PayPal. Fill in your info and when done, click "done' or 'save" and you will be taken back to the BlackBerry I'D Login page. Read-enter your info again exactly as the first time and you will have successfully created a BlackBerry ID! 
    The one thing that threw me is your login username. If you put in your old email address and you tried using that before, the BlackBerry Appworld system sill boot you back out to your login page with an explanation of errors or an error code! I did inform BlackBerry they need to have a knowledge base of codes to assist their customers with! Also, I recommended that BlackBerry create a click to chat live service to help direct traffic. Now that my BlackBerry Playbook is up and running, I'm glad I didn't return it!

  • HT4623 unable to connect with server

    Overnight my iPad sent a message that it was unable to connect with server.  All other mobile devices are running fine.  So I feel it is somewhere in the settings of my iPad that needs changing.  I can't get on Safari or iTunes, etc., etc.

    Wi-Fi issue?  Are you in a home or business environment? Have you tried connecting and re-connecting to your wi-fi network? 

  • I have an Imac version os x 10.9.5 and i am unable to connect with wifi it keeps telling me wifi not configured but it was working yesterday please help...

    i have an Imac version os X 10.9.5.  I am unable to connect with wifi.  It keeps saying wifi not configured.  It was working yesterday.  I am able to get internet with ethernet cable only.... not sure what happened... please help

    Troubleshooting Wi-Fi issues in OS X
    Wireless Connection Problems - Fix
    Wireless Connection Problems - Fix (2)
    Wireless Connection Problems - Fix (3)
    Wireless Connection Problems - Fix (4)

  • Forms 6i is not connecting with Oracle 11g database?

    Forms 6i is not connecting with Oracle 11g database?
    How to resolve this issue?

    Hi,
    Once you installed the Forms and Reports, you need to configure the paramters like tnsnames.ora in you path.
    There will be one folder in the Installation path of Forms and Reports search for tnsnames.ora file..and you need to Updated the file as per the which ORACLE Server you are connecting and then try.. it..
    Default path for forms will be "ORACLE_HOME/net80/admin".. search for tnsnames.ora and modify it..
    - Pavan Kumar N

Maybe you are looking for

  • SAP Web Gui does not completely log off.

    Hi Experts,      I am having trouble with our web gui, I can log in without a problem and when i try to log out there is message shows that i am logged off but when i refresh the page it automatically logs in. It would only go back to the log on page

  • W520 - nVidia optimus does not work after memory upgrade

    Hello, I have W520 16Gb (4*4Gb) running Windows Server 2008R2. Everything works fine - display sets to Optimus. I've tried to upgrade the memory to 24Gb (2*4Gb + 2*8Gb). Laptop recognizes memory just fine. Memtest+ does not report any errors. Althoug

  • How to use image load gif of 「GIF87a」 by ByteArray ?

    Hi all: I want use image load gif file of 「GIF87a」 by ByteArray, but it not be displayed correctly on the screen, How can I do it , or How to conver 「GIF87a」 to 「GIF89a」 ? private function onButtonClick():void {     fileRef.browse([new FileFilter("Im

  • MSS- Search Position-- Sorting error

    Hello Experts, We are using EP7.0/ECC6.0 system. While navigating to MSS->Search position form, there are various columns available like (firstname, org unit, manager name etc..). When we are trying to sort the firstname column through header arrow,

  • Movies on touch 64GB

    How do I get my movies onto my iPod Touch 64gb ? I have tried various ways, drag and drop, copy paste, but nothing gets them into 'my movies' Any help/advice is appreciated