Screen resolution in script

hi guru.
what is screen resolution in script. and how can i will do.
regards
subhasis.

Hi,
When u open se78 transaction then there is a icon import on application tool bar.when u click on this then a pop up screen is displayed .where u have option to change the resolution.

Similar Messages

  • Screen resolution in WinPE 5.0 on UEFI devices

    Hi
    Can you please help me with the issue i am facing? 
    The screen resolution in WinPE is very high, the drop down values in MDT wizard are extremely small and almost unreadable. I see a similar question posted on technet for screen resolution in
    WinPE 4.0 but I am unable to fix it.
    http://social.technet.microsoft.com/Forums/windows/en-US/66bd25d3-cc37-4841-be38-3f427db36b57/winpe-screen-resolution-problem-no-display-signal-out-of-range?forum=w7itproinstall
    The HTA screen looks OK but the when you select the drop down, the values are extremely small. 
    I also referred to the article from Johan
    http://www.deploymentresearch.com/Research/tabid/62/EntryId/51/Setting-screen-resolution-in-WinPE-4-0.aspx
    Below is my setup:
    MDT 2013
    Windows 8.1 x64
    Lenovo Thinkpad Tablet 10 (UEFI)
    Tried the below but no luck:
    Changed the ColorDepth to 32 in unattend.xml in WinPE pass
    Tried modifying the Wizard.hta with different screen size and style.zoom
    Playing around with the HTA settings might help but i am unsure how it looks and behaves on other UEFI devices.
    Currently we are using Lenovo Tablet 10 but soon will also be using Surface Pro.
    Am I missing something or is there a better way to do fix it?

    Hi,
    If our only issue is this particular font size, we can adjust some setting in files of
     script folder.
    For example,  open  DeployWiz_LanguageUI.xml under Scripts folder, here is just an example to make keyboard layout font large.
    Find:
    <SELECT NAME="KeyboardLocale_Edit" class=WideEdit >
    Edit it as:
    <SELECT NAME="KeyboardLocale_Edit" class=WideEdit style="font-size: 30px" >
    The result is just like:
    About the root cause, there would be something wrong with the WinPE image, in my test, WinPE 5 works good under UEFI mode. You can recreate one for test.
    Alex Zhao
    TechNet Community Support

  • Preventing screen resolution settings changing when connecting a beamer

    I do a lot of presentations and every time I connect a beamer (not my own, one that is in the hotel or conference room, so different models every time) my MBP screen settings go often haywire.
    My screen resolution on the MBP 15' (OS SL) is set at 1680x1050 (high resolution screen).
    As said it does not hold as soon as I connect a beamer and at times the setting is not even available any more, at other times all of a sudden I have dozens more settings, etc. This is of course, to say the least, annoying, and sometimes I spend 10 or more minutes to get my screen to behave in a workable fashion.
    Result is that my resolution on my screen become unworkable as (mostly) it defaults to real big resolution (and as such big script) that makes lots of items on the top bar 'invisible' (they fall of the screen).
    Is there any trick to prevent this from happening?
    Thanks.

    Thomas A Reed wrote:
    How is this remotely the same problem? The original poster is having resolution problems with projectors. You have an LCD tablet that isn't showing an image. This is thread hijacking, however much you don't want it to be. You need to go start your own topic for this.
    Excuse you, it's the same problem because my Cintiq has a problem taking in the screen resolution, which is why I'm not getting it to display properly. I explained it before, so if you can't read it, then that's your problem, and not mine. Even if you think it's a different problem, you don't have to be so rude to me. I'm not hijacking the thread, I'm just saying that I think it's a OS issue, and I don't see the point in making another one if I'm going to get a response along the lines of how there's already another thread that's similar.
    And now, I might add, you've officially completely derailed this conversation. Because instead of it being about the OP's problem, you've made it an attack on my character, which I consider an attempt to start drama. If you consider my post to be insignificant, then you could have just as easily ignored it. You've not only wasted my time for hoping someone would at least give me an answer, but you've wasted your own for hardly contributing to the conversation in a positive manner.
    Get off your high horse.
    Message was edited by: greasefarm
    Message was edited by: greasefarm

  • Re: capturing screen resolution in JSP or servlet

    "Mike Tickle" <[email protected]> wrote ...
              > Is it possible to capture screen resolution in JSP or a Servlet? I can
              > currently do it in JavaScript and write the result in to a cookie that a
              > servlet can read, but is there a better solution.
              > Is it possible to get the time zone of a visitor using JSP or servlets?
              > Can JSP or servlets determine if a visitor has scrolled the page to view
              all
              > of it?
              You seem to be very confused about what servlets and JSPs are. These are
              things that run on the server and generate HTML. They can't possibly know
              if a user has scrolled the page, because the user hasn't seen the page yet
              when they are run. If they tried to read screen resolution, they'd get the
              screen resultion for the graphics subsystem on the server, or an exception
              if one isn't available (eg, there is no X display set).
              For these kinds of client interaction tasks, JavaScript is probably still
              your best option.
              Chris Smith
              

    Hey all you non-ASP programmers, here's the deal. Microsoft has a Browser
              Capabilities component and they have defined a special way for you to
              populate a specially named cookie on the client side that will then allow
              the component to pick up what you sent it. In the ASP script, you then use
              the component. Behind the scenes, it works exactly like what you guys
              imagine, but Microsoft provides the format for sending the information and
              the parsing.
              The client side script does need to be written to include the information
              you want, but it would typically be written once and hidden by the lead
              programmer in a common include file where most programmers never had to
              think about it and thus might think it happened automatically.
              If you're really curious, here's an MSDN link to the details:
              http://msdn.microsoft.com/library/psdk/iisref/comp1vol.htm.
              Rick Joi, former ASP developer
              [email protected]
              www.rickanddonna.com/ips
              "Chris Smith" <[email protected]> wrote in message
              news:[email protected]...
              > "Mike Tickle" <[email protected]> wrote ...
              > > > You seem to be very confused about what servlets and JSPs are.
              > >
              > > I am quite familiar with servlets as I have been using them for 6 months
              > as
              > > part of a uni project. I had the presentation yesterday and the
              moderator
              > > asked why I used JavaScript to determine time zone and screen res. I
              said
              > > JSP/Servlets can not do it as they are server side and he seemed
              confused.
              >
              > Okay. Apologies if I was condescending. Such things happen in newsgroups
              > where I have no idea what your background is.
              >
              > > Apparently ASP can do it. So against my better judgement I thought I
              > would
              > > ask in case I was wrong.
              >
              > I'm surprised if ASP can do it... I can't imagine how that occurs. I
              agree
              > with Jeff, especially after reading the URL he provided; it appears the
              > moderator was just plain wrong, or that there are only very non-portable
              > solutions for IE only.
              >
              > > I currently write the time zone and screen resolution in to a session
              > cookie
              > > so that it can be read every time the servlet is run. Is there a better
              > way
              > > than this?
              >
              > Seems to me like the best way to me.
              >
              > Chris Smith
              >
              >
              >
              

  • How to increase the screen resolution of oracle linux 4 in vmware?

    I have installed Oracle Linux Release 4 Update 8 for x86 (32 Bit) - DVD V16749-01 on vmaware for running oracle database 10g xe on my laptop. But its screen resolution is not greater than 800x600, (800x600 very small for my laptop which have 1366x768 screen resolution). Please provide any plugin or software that can increase the resolution of oracle linux 4 in vmare.
    my laptop: hp pavilion dm4 1222tx , O.S. windows 7 (home basic) 64 bit.
    thanks in advance.

    You will need to extract the contents of the compressed tar.gz archive and run the vmware-install.pl perl script as sudo or root.
    - Open Terminal from the Applications/System Tools Menu inside the Guest OS
    - Type "su -" and enter the password for root
    - Type "cd /etc/yum.repos.d"
    - Type "wget http://public-yum.oracle.com/public-yum-el4.repo"
    - Edit public-yum-el4.repo and set enabled=1 of the corresponding section matching your OEL version.
    - Install additional software packages typing "yum install kernel-headers kernel-devel gcc"
    - Select Install/Upgrade VMware Tools from the VM/Guest menu
    - Type "cd /media/cdrom"
    - Type "tar -C /tmp -zxvf /media/cdrom/VMwareTools-8.8.2-590212.tar.gz"
    - Type "cd /tmp/vmware-tools-distrib"
    - Type "./vmware-install.pl"

  • Set desktop wallpaper based on screen resolution for both WinXP and Win7

    I'm hoping someone can answer this for me. I would like to be able to set the desktop wallpaper based on the current screen resolution when a user logs in. I've made several .BMP files for varying resolutions with our corporation logo. But, say
    if a wallpaper for a resolution of 1024x768 on a 4:3 monitor is set, then that monitor is replaced with a 16:10 monitor with a resolution of 1280x800 or 1600x900, the wallpaper looks stretched out and ugly. The only way to change it is manually on
    each computer, but most end users (students) would not have permissions to do so.
    I thought this question would have been asked before, but after many, many searches, I've only come across one reference that copies the background from a network share to a location on the local computer, which I found
    here. In my case, the file will already be on the local computer, but I am not sure how to force the system to change the wallpaper based on the current screen resolution. I'm sure it is possible and maybe I am overlooking something very simple. I
    was also thinking that this would either happen only once on first login or maybe based on user authentication (which group the user belongs to) so that teachers are still able to change their wallpaper, but students would not be able to.
    If it helps, I will be deploying the image using MDT 2010 Update 1. The same base image will be used on multiple machine types (HP desktop sand laptops and Lenovo desktops) which could have one of 6-7 different monitor types connected. I'd also like
    this to happen on the local machine instead of GPO or logon script as there is already a lot happening there.
    I would need to be able to do this for both Windows XP Pro and Windows 7 Ent x64. The XP machines will mostly have 4:3 monitors, but there are exceptions.
    Maybe what I am asking isn't entirely possible or possible at all. I, unfortunately, am in the extremely early stages of learning Microsoft Scripting (VBScript and PowerShell) to use with MDT 2010, so I know next to nothing when it comes to these scripting
    processes, but am willing to try and learn.
    Any help anyone can suggest, I would be extremely grateful.

    I almost abandoned this because I thought it was going to interfere with using BGInfo. But, as it turns out, I was able to incorporate the running of BGInfo into a script that I
    created. And, once I saw what 16:10 Aspect Ratio background looked like on a 16:9 Aspect Ratio screen, I was not satisfied.
    I happened to use the first script that MkShffr posted from geekshangout.com, but then I added more items to it. I also created three high-res wallpaper backgrounds as suggested
    by pagerwho.
    My script is based on the Aspect Ratio of the current resolution. Since most, if not all, systems will get the resolution set during deployment, this was easy to calculate.
    And by forcing the output of the Aspect Ratio to two decimal places, I just used a Case statement to select which aspect ratio to choose from and apply the wallpaper assigned to it. I thought about using If Then statements, but I think the Case statement
    is much cleaner.
    And, because BGInfo wants to change the Picture Position to "Tile" instead of "Fit" that I manually set it to in my image, I added two reg key change lines per Case. BGInfo still
    changes the Picture Position to "Tile", but for whatever reason, this works. I tested this by using a laptop with a 16:9 Aspect Ratio screen. In my image, I manually set a 16:10 wallpaper because that will be the primary Aspect Ratio used in our corporation,
    however we are getting more 16:9 Aspect Ratio laptops and from what HP is saying, everything will be standardizing on this Aspect Ratio.
    I made sure the Screen profile that I saved in my image was loaded which includes the 16:10 wallpaper. I then placed this script in the “C:\ProgramData\Wallpaper_Change”
    directory that I created in the image. I then added a registry value in HKLM\System\Microsoft\Windows\CurrentVersion\Run and created a String Value. I did this so that it would run at log in, but I didn't want it to show in the Startup Folder in the All Programs
    Menu. It takes less than a second to run, but it seems to work well. I tested it several time to see if there were any anomalies, but it seemed to work great each time. I have yet to test it with a computer that is on the domain with a regular user account,
    which I will be doing in the next day or two.
    In the mean time, if someone want to try it out and see if it works from thier use, here is the code. I did comment out the wscript.echos, but left them in to use for troubleshooting
    in the future.
    -Mike
    ==============================
    Option Explicit
    Dim array_ScreenRes, screenRes_X, screenRes_Y, oIE, width, height, aspect_ratio
    Dim decpos, wallpaper1, wallpaper2, wallpaper3, oShell
    array_ScreenRes = GetScreenResolution
    screenRes_X = array_ScreenRes(0)
    screenRes_Y = array_ScreenRes(1)
    wallpaper1="C:\Windows\Web\Wallpaper\TSC\Win 7 - 2560 x 1440 (16-9)TSC.bmp"
    wallpaper2="C:\Windows\Web\Wallpaper\TSC\Win 7 - 2560 x 1600 (16-10)TSC.bmp"
    wallpaper3="C:\Windows\Web\Wallpaper\TSC\Win 7 - 2560 x 1920 (4-3)TSC.bmp"
    Set oShell = CreateObject("Wscript.Shell")
    'wscript.echo "Resolution is " & screenRes_X & "x" & screenRes_Y
    aspect_ratio = screenRes_X/screenRes_Y
    decpos=instr(aspect_ratio,".")+2
    aspect_ratio=left(aspect_ratio,decpos)
    'wscript.echo "Aspect Ratio is " & aspect_ratio
    Select Case aspect_ratio
    Case "1.77"
     oShell.RegWrite("HKCU\Control Panel\Desktop\Wallpaper"), wallpaper1
     oShell.RegWrite("HKCU\Software\Microsoft\Internet Explorer\Desktop\General\WallpaperSource"), wallpaper1
     oShell.RegWrite("HKCU\Control Panel\Desktop\TileWallpaper"), "0"
     oShell.RegWrite("HKCU\Control Panel\Desktop\WallpaperStyle"), "6"
    Case "1.6"
     oShell.RegWrite("HKCU\Control Panel\Desktop\Wallpaper"), wallpaper2
     oShell.RegWrite("HKCU\Software\Microsoft\Internet Explorer\Desktop\General\WallpaperSource"), wallpaper2
     oShell.RegWrite("HKCU\Control Panel\Desktop\TileWallpaper"), "0"
     oShell.RegWrite("HKCU\Control Panel\Desktop\WallpaperStyle"), "6"
    Case "1.33"
     oShell.RegWrite("HKCU\Control Panel\Desktop\Wallpaper"), wallpaper3
     oShell.RegWrite("HKCU\Software\Microsoft\Internet Explorer\Desktop\General\WallpaperSource"), wallpaper3
     oShell.RegWrite("HKCU\Control Panel\Desktop\TileWallpaper"), "0"
     oShell.RegWrite("HKCU\Control Panel\Desktop\WallpaperStyle"), "6"
    End Select
    oShell.Run "%windir%\System32\RUNDLL32.exe user32.dll,UpdatePerUserSystemParameters", 1, True
    oShell.Run "C:\ProgramData\BGInfo\BGInfo.exe C:\ProgramData\BGInfo\TSC.bgi /timer:0"
    Function GetScreenResolution()
     Set oIE = CreateObject("InternetExplorer.Application")
     With oIE
        .Navigate("about:blank")
        Do Until .readyState = 4: wscript.sleep 100: Loop
        width = .document.ParentWindow.screen.width
        height = .document.ParentWindow.screen.height
     End With
     oIE.Quit
     GetScreenResolution = array(width,height)
    End Function

  • Can Automator change my screen resolution?

    I kinda ** with scripts, but I've used Automator for some easy tasks earlier.
    I'm not sure if it's even possible to make this but hope somebody around here can help me =)
    So i use my iPod Touch a lot to check on my computer using VNC (Screen sharing) and sometimes boot it up with iWol, but to make any use of it i need the screen resolution changed. Doing this takes some time when you do it from the iPod or an iPhone.
    *So in my case i need an application i can just have on my desktop, start it and my screen will be resized to 640x480, and the best would be if i hit it again it goes back to my normal size 1920x1200 but not so important. I did not find anyway to do this in Automator, I've tried the record function but it never manages to get it 100% right. Anybody got some ideas how to do this?*
    Thanks =)
    P.S.
    If there is some pro scriptwriters out there i got a request:
    An application that is automatically started on log-on, runs in the background, notice when screen sharing is being used and will pompt and ask for a resolution change.
    - Christer Egon
    <Edited by Moderator>

    zerzezerze wrote:
    why? in preorder have choose to 1680x1080??
    because it's built to order.  not order then replace the screen after if you're not happy with it.
    As Templeton Peck says " too expensive "

  • Macbook Pro late 2013 - problem with login screen resolution

    Hi,
    I've got problem with login screen resolution, after upgrade to Yosemite. I use the 4rd resolution (last one) on my Mac Pro (late 2013), and after restart login screen is always on optimum mode... But it's only about the login screen.
    Do you know how can I fix it? I would like to have the same resolution on every screen.
    thx in advance

    I  Reformatted the CF card  on the new computer   it works fine now on the new Mac Pro
    Interesting point about  the low power  of the usb ports   I had to deal with all devices ejecting them selves  when the mac pro  was idle or slept  Drobo needed a Firmware update and another drives  needed  me  to change the sleep setting  or the Mac Pro   to never and  i also  had to deploy a  script to write to each device  ever minute,   this  kind  of sold the problem  with external Hard drives.   I wonder if the lowering  power  to a CF card   can eject  it  in a manor  which would make the  computer  think it is corrupt.
    I have looked at  buying a power usb Hub    but seems only one or two  of the ports are powered. 
    Seems to be a bit problem with the mac pro especially  as everything has to be connected externally  
    Will assume the Firewire Connector does not work.

  • Get Screen Resolution from Custom Reports

    I was wondering if it was possible to get the screen resolution of a workstation from the Custom Reports in ZCC ??
    Seb

    Originally Posted by sebastien
    I was wondering if it was possible to get the screen resolution of a workstation from the Custom Reports in ZCC ??
    Seb
    Hi Seb
    I'm out of the network so I can't double check this but I don't think Zen captures that information. If my memory serves it captures some PNP info from the screen like the manufacturer and product ID's.
    It looks like you could pull the data from the registry.
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Hardwa re Profiles\UnitedVideo\CONTROL\VIDEO\{EE167610-A476-4BE2-9CD6-C24D55DFF3B9}\0000
    I think the challenge will be that this key will vary from system to system. And if you have multiple monitor setups you would want to collect both sets of data.
    One way you could do this would be to deploy a bundle containing a small easily available executable called DumpEDID.exe (google it) This little command line utility does exactly what it says on the box. It reads the EDID data from the display and dumps the data back to the command shell.
    Then all you need to do is to run a script to retrieve this output and load it into a custom made registry key. From there you can then pull the registry data into Zen and even create an ADF field for the info.
    Hope this helps

  • Testing if screen resolution meet requirements

    Hi,
    By default our computers are set to 1024 X 768. In case a software would need 1280X1024, I would like testing if the actual screen resolution is effectively lower than the one need (1280X1024) and adjust it. If it is higher (like 1920X1080) then making no
    adjustment.
    What is the best way to compare and adjust screen resolution?
    Thanks,
    François

    Hi François,
    If you want to list the screen resolution, please refer to the script below:
    Get-WmiObject -Class Win32_DesktopMonitor | Select-Object ScreenWidth,ScreenHeight
    In a multi monitor environment you can get the info for all monitors with:
    Add-Type -AssemblyName System.Windows.Forms
    [System.Windows.Forms.Screen]::AllScreens
    Refer to:
    Get Screen resolution using WMI/powershell in Windows 7
    If you want to change the screen resolution via powershell, please refer to the script in this article, you just need to provide the width and height:
    Set-ScreenResolution
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • ATI 5700 HD & 32" TV --- Screen resolution Issue

    Hey all,
    I recently set up a media center using arch as my distro.  Everything works great!  The only problem I have is that my screen resolution isn't perfect.
    I have an ATI 5700 HD, I'm using the open source drivers.  I have a Philips 32" 1080p TV --- optimal resolution is 1920x1080.
    I'm using gnome, and under System > Administration > Monitors the correct resolution is shown.  However, I can clearly see a half-inch thick border around my screen!  I know this isn't correct, because my old acer aspire revo (using the nvidia blobs) can show the entire screen at the same resolution!
    I have no intention of using the catalyst drivers but I fear that I may have to in order to get this working!  Any ideas?
    Attached is my xorg.conf config (I know it's unnecessary, but I generated it anyways).
    My question: can I have full screen resolution WITHOUT using the closed-source tools & drivers?
    Thanks
    xorg.conf :  http://pastebin.com/B4iEqTrM

    I dropped the above into a shell script and added it to gnome startup, which worked but looked ugly.  I then tried creating a .desktop file in ~/.config/autostarts/ but that looked ugly too...
    so I added it to ~/.xinitrc as
    exec xrandr --output HDMI-0 --set underscan off &
    And that didn't work at all.
    Anyone have any better way of implementing this on a more permanent (and dare i say elegant) level? I mucked with xorg.conf but that didn't work.
    Last edited by yochaigal (2011-03-14 06:47:02)

  • Screen resolution on Boot Camp

    Hi
    I bought a macbook whitch Screen resolution is 2650 x 1600, and installed Windows 8 by bootcamp so I expected to see very small screen of my apps. For my surprise  most screens are too large.
    But Java script application screen its so high resolution that I cant read fonts.
    Is there a way to solve it ?
    Moises

    In Windows 8 use the help menu and search for external display.

  • Detect Screen Resolution

    Hello, I am a newbie and would appreciate help from all the
    helpful people on this forum.
    I am creating a site with Dreamweaver but having problems
    with screen resolution. I need help with a script that would detect
    the screen resolution and load an alternative CSS that would also
    change the font. I found several scripts on the internet but none
    would work. Can someone help me with this? I found this script but
    I am sure I am missing something why it is not working for me. I
    spent 2 days trying to make it work and now I feel like I am
    loosing my mind. Here is the script
    function styleSwitcher(){
    var theStyleLink = document.getElementById('styleSwitch');
    if (window.innerWidth < 810){
    theStyleLink.setAttribute("href","CSS/LowResAdjust.css");
    else {
    theStyleLink.setAttribute("href","styles_main.css");
    What am I **** wrong?
    Thanks in advance.
    Tinaval

    > What am I **** wrong?
    Worrying about screen resolution. It's meaningless. What
    matters is the
    browser's viewport dimensions and that is unpredictable. Best
    to design for
    a set width (I usually use 780px) or create a fluid layout
    (generally I hate
    them).
    Walt
    "Tinaval" <[email protected]> wrote in
    message
    news:ff1dtn$sdc$[email protected]..
    > Hello, I am a newbie and would appreciate help from all
    the helpful
    > people on
    > this forum.
    >
    > I am creating a site with Dreamweaver but having
    problems with screen
    > resolution. I need help with a script that would detect
    the screen
    > resolution
    > and load an alternative CSS that would also change the
    font. I found
    > several
    > scripts on the internet but none would work. Can someone
    help me with
    > this?
    > I found this script but I am sure I am missing something
    why it is not
    > working
    > for me. I spent 2 days trying to make it work and now I
    feel like I am
    > loosing
    > my mind. Here is the script
    >
    > function styleSwitcher(){
    > var theStyleLink =
    document.getElementById('styleSwitch');
    >
    > if (window.innerWidth < 810){
    >
    theStyleLink.setAttribute("href","CSS/LowResAdjust.css");
    >
    > }
    > else {
    > theStyleLink.setAttribute("href","styles_main.css");
    >
    > }
    > }
    >
    > What am I **** wrong?
    >
    > Thanks in advance.
    > Tinaval
    >

  • [SOLVED] Screen resolution selector for non-standard Window managers

    Hi.
    I just replaced the propietary Nvidia drivers with Nouveau. I usually use the console, and when in GUI, i used nvidia-tools to change screen resolution and dual monitors, which now is not possible, Gnome and KDE have its own tools to do that, but i am using fvwm, and dont know any X program that allows me to do this. I tought of using console and script, bit i'd rather prefer to have a name of some program that allows me to do that, and i could install in other computers.
    So, anyone knows any program that would allow me to change screen resolution, and maybe dual monitors in X, witout any Gnome or KDE dependencies?
    Thank you very much in advance
    Last edited by vladimir_1922 (2011-06-01 13:31:20)

    -auto answer-
    i did a yaourt -Ss xrandr, and found arandr, the graphical api of xrandr, which is exactly what i wanted. Anyway i would love if anyone knows more programs.

  • Bridge - How to view image in full screen resolution

    In Bridge - How to view an image in full screen resolution and not as a Preview (Space bar), like in Lightroom (F), Photoshop or ViewNX 2 ?

    The size of the Bridge Preview window will always be the absolute limit of the image display in Bridge.  Maybe I am not following you.  Sorry

Maybe you are looking for

  • Remittance advice by fax

    I have checked in our Prod client and in FIBF i couldnt fine the process 00002040.However fax is sent to the Vendors.Please advice where do i check for this.Without the event how is fax is sent to the vendor.

  • Why documents print in draft type

    i bought   deskjet 3000 today.....    and my printer cannot print out the documents when i open it with microsoft word 2007. it print out in the type of draft and show me the information about what kind of document i print and what time i print.....

  • Users unable to connect to RDP farm. (2 session servers 1 broker)

    Issue: Users are unable to connect to the farm when they use tsfarm.mydomain.com to access our servers. On the connection broker server I get lots of: This connection request has timed out. User could not log on to the end point within the alloted ti

  • JSP best practices, tips?

    let me know few tips and best practices on java server pages.. as i am working on jsp project

  • Need sample database  for Practise

    Hi Experts, I am learner looking for Sample data base to play. eMotors eStaff these are sample database used by training centers. Thanks