Is it possible to create two-way multiselect tables? Help.

Hey everyone (once again since you're indeed great to help me to).

I was wondering if it would be possible to create two-way multiselect tables to interact with each other, as qlikview behavior have, because that's my goal.

Imagine that I have 3 tables in my schema/database:

Departments (of an HR diagram), with the following attributes: department_id (primary key), department_name, manager_id, location_id;

Salary_by_job (created for this purpose), with the following attributes: job_id (primary key), department_id, salary, min_salary, max_salary;

Employees (from HR diagram), with the following attributes: employe_id,..., job_id, salary, manager_id, department_id

Would it be possible to creat multiselect two-way tables?

Like the following:

-I click on a Department, it shows the data relevant to this Department in the table salary_by_job and the employees table.

And after having clicked on that, I could click on a single employee and the department table would be the same (because it's an employee in the same Department), but the salary_by_job would show only the information about the argument job_id for this employee.

I'll try to show some text here:

Department (selected line = 1) = Department of Public Information (which has 3 employees)

Employees = X (with the job_id = adminargument), are (with the job_id = managerargument) and Z (with the job_id = Internargument)

Salary_by_job = Admin, with data blah blah blah, Manager, with data blah blah blah and trainee, with data blah blah blah

And then I have to click on the X of the employee and the result would be:

Department (selected line = 1) = Department of Public Information (which has 3 employees)

Employees = X (with job_id = adminargument)

Salary_by_job = Admin, with data blah blah blah

Can do something like this? If so, how?

I think attached with fasteners at each table and have links to move forward and backward.

If anyone has an idea how to do this, please respond, it may be useful.

Thanks a lot for all the help. Have a beautiful day!

Kind regards

Frederico Barracha.

BTW, I use jdeveloper 12.1.2.0.0

Mensagem editada por: FredericoSB

FredericoSB,

Have you tried to add a setPropertyListener for tables and change the collectionModel to the 3rd table accordingly?

Ex: Suppose you have three tables, Parent (VL)-> child (VL)-> grandchild. There is a relationship between the (VL) Parent-> child.

Now, you can have links to tree for both the GrandChilds (for example GrandChildViaParent and GrandChildViaChild).

Your jspx could be something like




If all your tables are read-only, then you can change it to something like


     


     


This is just a sample. You could implement the same for all properties in the table of a grandchild as EL to make editable as well.

It comes without coding. If you care to code a little, you could use a dynamic array in place and tie the value accordingly in each of the selectionListener in the table (that would be a neat approach)

Arun-

Tags: Java

Similar Questions

  • Is it possible to have two or more tables of contents in a long document?

    I wrote a book in which I created a table of contents listing the sections in the book part i, part two e.g. etc..

    Can I now creates the TOC for each part?

    If so, please advise procedure.

    Thank you

    You can have a table of contents preceding each section. So, for your Part One article, you place your insertion point before the text in the section first and apply Insert menu: Table of contents: Section.  A new page containing the table of contents will be inserted before each article that you apply it too.

    Tested with Pages v5.6.2 on OS X 10.11.5.

  • Synchronization in active two-way replication tables

    Hello

    I have a table on two sites A and B with the same name and structure but with different records. How can I synchronize two tables before you activate the active replication.

    Thanks and greetings

    Mohamed Ahmed

    Hi Rudy,.

    Yes, you can... Manually, you need to insert the missing records at both sites (wherever necessary). Because to enable replication goldengate, records must be the same on both sides (two sites).

    I think that, if you go ahead with replication without organizing, then you will end up by with duplicate records. Sometimes the process may ABEND. It comes to creates data integrity problems.

    If the table has the primary key?

    Kind regards

    Veera

  • Create two buttons to stop/start animation (cookies)?

    Hello

    First I want to apologize on bad English, I'm french so I'll try not to do too much to them.

    I am currently doing a small header in flash. I've created an animation (things that appear and others), and I like the way it is. But I would like to know if it is possible to create two buttons: "stop animation" and "start animation", allowing people not to see the same opening if animation they reload the page and jump to the last frame. The thing is it is the header of my forum: so it can be a little awkward if it loads whenever you click on another page.

    I read somewhere it is possible by using "cookies" and a... "shared object"? But it was not clear, and since I am relatively new to using the flash, I would like to know if someone could help me with this by explaining precisely how I can do.

    Thanks to the one who can help me!

    (Ps: I use Flash Cs5 with AS2)

    assign instance names your buttons and use:

    var tl:MovieClip = this

    var so:SharedObject = SharedObject.getLocal ("banner", "/");

    {if (SO. Data.stopVar)}

    tl.gotoAndStop (tl._totalframes);

    }

    {stopBtn.onRelease = function ()}

    so.data.stopVar = true;

    tl.gotoAndStop (tl._totalframes);

    }

    {startBtn.onRelease = function ()}

    so.data.stopVar = false;

    tl.gotoAndPlay (1);

    }

  • Compare the content of two equal nested tables

    I'm working on a black box test where I compare the contents of two structurally equal tables before and after executing a script of some. My two tables, MDQ_OLD and MDQ_NEW, are filled with the data in two separate operations.

    The two tables, I'll compare are nested, as you can see in the CREATE TABLE scripts below.

    I tried to use the less-operator sign, but without success.

    I also tried to select data in a type that is % ROWTYPE to my nested tables, but it does not work as well (see the below script in this post).

    Can you please help me on this problem on how to compare the content of two nested tables?

    Run the scripts below to reproduce the problem and be sure to update this post if more information is required.

    -The scripts below-

    Select * from version of v$.

    Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    PL/SQL Release 11.2.0.4.0 - Production

    CORE Production 11.2.0.4.0

    AMT for Linux: Version 11.2.0.4.0 - Production

    NLSRTL Version 11.2.0.4.0 - Production

    -First of all, I create my types

    CREATE OR REPLACE TYPE FORCE AS OBJECT MDQ_DETAIL (NUMBER OF MDQ_DETAIL_ID, MDQ_DETAIL_DESC VARCHAR2 (100));

    CREATE OR REPLACE TYPE T_MDQ_DETAIL AS TABLE MDQ_DETAIL;

    -Note that this type contains the table T_MDQ_DETAIL type:

    CREATE OR REPLACE TYPE MDQ_PARENT FORCE AS OBJECT (NUMBER MDQ_ID, MDQ_DETAILS T_MDQ_DETAIL);

    - Then I create two equal nested tables

    CREATE THE NESTED TABLE AS MDQ_PR_OLD STORE MDQ_DETAILS MDQ_PARENT MDQ_OLD TABLE.

    CREATE THE NESTED TABLE AS MDQ_PR_NEW STORE MDQ_DETAILS MDQ_PARENT MDQ_NEW TABLE.

    -Insert test data in the nested tables

    Insert into MDQ_OLD (MDQ_ID, MDQ_DETAILS) Values (1, T_MDQ_DETAIL (MDQ_DETAIL(1,'desc1')));

    Insert into MDQ_NEW (MDQ_ID, MDQ_DETAILS) Values (2, T_MDQ_DETAIL (MDQ_DETAIL(1,'desc1')));

    -Try to use the negative operator to compare the contents of the trailer of the nested tables, but it gives this error:

    -ORA-00932: inconsistent data types: expected - got DISPATCH. T_MDQ_DETAIL

    Select * from MDQ_NEW

    less

    Select * from MDQ_OLD;

    -Try to select in a ROWTYPE, but it fails

    declare

    myTypeOld MDQ_OLD % ROWTYPE;

    myTypeNew MDQ_New % ROWTYPE;

    myTypeDiff MDQ_New % ROWTYPE;

    Start

    -Select gives: PLS-00497: do not mix between row and several rows (in BULK) list

    Select * bulk collect into mdq_old myTypeOld;

    Select * bulk collect into mdq_new myTypeNew;

    -Need a 'compare the function of membership card' on the types of multiset except to work, but as far as I

    -I'm not able to bulk collect into myTypeOld or myTypeNew, this won't help out me.

    myTypeDiff: = multiset myTypeOld except myTypeNew.

    end;

    -Cleaning:

    drop table MDQ_OLD;

    drop table MDQ_NEW;

    type of projection MDQ_PARENT;

    type of projection T_MDQ_DETAIL;

    type of projection MDQ_DETAIL;

    > queries you provided intercepts not who.

    You asked how to compare the content of nested tables.

    I knew that you didn't ask for what you actually want, that's why I asked you to specify the comparison more in detail.

    > Do you have a query that grabs this difference as well?

    SELECT o.mdq_id, od.*
    OF mdq_old o, TABLE (o.mdq_details) od
    LESS
    SELECT n.mdq_id, nd.*
    OF mdq_new n, TABLE (n.mdq_details) nd;

    > Also, if possible, do you have a sample of a statement to COLLECT LOOSE, please?

    Actually, you raise an interesting point on using % ROWTYPE, in my view, that should be. This make...

    DECLARE
    TYPE rt_mdq_new () IS RENDERING
    mdq_id NUMBER,
    mdq_details t_mdq_detail);
         
    TYPE tt_mdq_new IS TABLE OF THE rt_mdq_new;
      
    t_mdq_new tt_mdq_new;
    BEGIN
    SELECT mdq_id, mdq_details
    LOOSE COLLECTION t_mdq_new
    OF mdq_new min.;
    END;
    /

    DECLARE
    CURSOR c_mdq_new
    IS
    SELECT mn.*
    OF mdq_new min.;
         
    TYPE tt_mdq_new IS TABLE OF c_mdq_new % ROWTYPE;
      
    t_mdq_new tt_mdq_new;
    BEGIN
    OPEN c_mdq_new.
    Get the c_mdq_new COLLECT in BULK IN t_mdq_new;
    CLOSE C_mdq_new;
    END;
    /

  • When I create two keyframes at the same position between keyframes at different positions this way adds a loop. How can I get rid of the loop?

    When I create two keyframes at the same position between keyframes at different positions this way adds a loop. How can I get rid of the loop? I was just by dragging the handles on the vertex point, but I want to get rid of the loop together.

    Focus on the Bezier handles on the motion path in the Composition window. You can select the tool pen (g) and hold down the Alt/Option key to select the tool convert Vertex (it looks like a V on the side) and then fix the handle manually or click on the top of the trajectory to change it to a straight line. You can also play with spatial interpretation Keyframe.

    To avoid this, you can change the interpolation of keyframes in space to linear preferences. Most of the time I don't like straight so I keep my default value of Bézier.

  • Two-way Navigation: side AND Top Navigation: Page header contained in the Global Page causes overlap of the following regions

    Environment:

    -------------------

    APEX 5.0.1 on ADR in Tomcat

    Universal theme

    Global page

    New application (no migration)

    The goal:

    -----------

    In addition to the navigation, I want to use a horizontal Navigation at the top of all application pages at the same time.

    My way up to now:

    ---------------------

    (1) left Navigation ist defined as default user interface.

    1A) Unfortunately it is not possible to have two means of navigation defined at the same time!

    (2) therefore... I created a global page

    (3) and added a list with the list of attribute (= Menu bar) template to the PAGE of a global Page header. -> Well, looks good, but:

    The problem and the Question:

    ------------------------------------

    When adding a list according to menu (or something else like static text) to the global header of the page then the left hand side Navigation AND Breadcrumb area is oberlapped by the 'Logo' and 'Navigation Bar area' because the Page header is pushing it down. Parts of the side Navigation and navigation bar are not more.

    Please see the 2 following screen captures:

    Initial position:

    no_global_menu.jpg

    After the addition of menu on the global page:

    with_global_menu.jpg

    Unfortunately I can't understand myself, how to set the position or the css page template, or values... and at what level (model, page,...) I have to put.

    = > y at - it a way to let these following regions (dynamically) be pushed down? How can we define the position?

    Best regards

    Joerg

    Hello out there!

    In case anyone has the same issue here the answer I would give for-> me I found the following solution:

    .) I defined a new style with the following custom css theme roller:

    .apex-side-nav .t-body-nav, nav-side-.apex .t-body-stocks, .apex-side-nav .t-body-title

    {

    top: 80px;

    }

    .) And then of course saved as a new style.

    Hope this is the right way and good / best practices to deal with it!

    Best regards!

    Joerg

  • PE3 is possible to synchronize two sources video post edit AB Roll?

    In PE3, is it possible to synchronize two digital video files (AVI) to create an AB roller type post edit.  My two captured video files seem to have different speeds or od frame.  How do I align and frame corresponds to 2 video sources?  The situation is a 2 photo shoot.  How to best create a roll of AB edict of sources 2 videos with audio of a video file as a common element?

    Wes,

    Armed with Steve's article, you should be able to do what you want.

    I have a question and maybe a suggestion to fix the problem of pace from the start, to help solve this problem without a lot of fiddeling. What are the two frame rates? G-Spot will tell you exactly, if you can't find it in the properties. If the source files are DV - AVI, they must be of the exact same rate initially, but if you're a little off, I would like to convert it the DVD specifications do not support a correspondent. First place I would try this would be to simply interpret footage in the project Panel. If this does not work, then Windows Movie Maker can do for you, or you can use other conversion tools to match. I use DigitalMedia converter, but it's not freeware. Get the two sources in perfect sync at the beginning will go very far to the success.

    Good luck

    Hunt

    [Warning] I don't have PE3, PE4 only, but I think that applies to your version.

    [Edit] After reading the article by Steve, the only thing I would do (after the sync property) to help me in the multi-cam editing would be to set the video track display to show all the "frames" and the expansion of the height of each video track two (VT), so that they occupy the largest part of the vertical real estate in the timeline. Then, I would zoom in on the horizontal of the timeline display, so that I could see quite clearly, each image. Basically, this makes the timeline as a line of detailed scene, but you can stay in Timeline Mode. Because you do not have Mode multicamera PrPro, you won't get anything your video footage track higher in the program monitor. You will be viewing the images on the Timeline. This will require a lot of horizontal scrolling on the Timeline, but it is doable. Then, when you want to use the images of VT1, you will cut (scissors tool) VT2 overlay images. Personally, I work out my main sequence (such as the master in the article Steve Audio track) on VT1 and images from my camera "cutaway" on the VT2 console. Like prescedence VT1, VT2 you can leave VT1 footage almost alone and just cut the images on VT2. I would use the Cross-dissolves on the head and the tail of the "Cup" Clips to VT2. Remember that if you use these, you want to make sure that the cutting came where you want the scene on VT2 absolutely start or end. The duration of the cross-dissolves will determine when the stage becomes either visible at 100% (head), 100% invisible (tail). Also, don't forget that Dip - to-black on VT2 takes the image on VT1 to black, where my use of Cross-dissolves.

    Using this method, can also do some repositioning of the (cut from the original) Clips to VT2, to offset any loss of synchronization. But you can possibly use it to set the framerate differences, I'll try again to get the images as accurate, as it is possible to start - a lot less work in this way. Also, once the 'holes' were cut into the images on VT2, you can start using the program monitor much more.

    As Steve points out, PrPro facilitates locking securities and a double multiple camera monitor, multicamera mode.

    This is exactly how we did with film, except that we had to splice in black leader, where cuts were made and could not hold our intact VT1 sequences, we can with an NLE and video. Because we were dealing with sprocket holes, we had doped (sprocket) gears on a 'sync' block, and once we'd get right alignment, would physically renversible by a guide, who would 'lock' the film to these two rolls of film for the sync block. Although it may seem difficult, when you read it, it's really not and so very easy, as it was with the film.

  • Is it possible to create a tone coustom (iPhone, iPod, iPod etc..)

    Is it possible to create a tone for my Apple device? I don't want to install anything or convert one of my songs in my iTunes library. I thought he might be a way to use a program like garage band to create a custom tone. If you know the answer to this question please answer, thank you!

    You have GarageBand on your installed Mac?

    Create ringtones in GarageBand 10.1.1.

    • Launch of GarageBand and select this option to create a new project.
    • Select the ringtone project templae.
    • Now to record a sound or drag the loops from the browser of loops to the timeline.
    • Then use the menu share share a ringtone in iTunes.

    Ore of begins with a song from your iTunes library: http://cs.cornell.edu

  • Is it possible to create a Local administrator user when you use the Profile Manager to get the configuration settings

    Hello

    We are studying the use of the Profile Manager of OS X as a way to manage our Enterprise macs.

    One of the demands made by the team, is to create an administrator user, as part of the OS X Profile which is lowered to the customer. The rationale is that this would be a way for the it team get, if the fubar user had their Mac

    I did not see this anywhere in the configuration options of the Profile Manager and so ask the people who use it as part of their everyday Toolbox, to find out if such an option is available.

    Thank you and best regards,

    Madan failed

    No, not with the Profile Manager.

    How you deploying your company Mac?  As institutionally imagery or as BYOD devices?  If image, then the image should contain a coherent local administrator account.  If the active image also the Apple Remote Desktop or SSH, you have a method of mass, control and manage the devices.  If BYOD style, then you are out of luck that the end user is the only one with the key of the device.

    You can take a look at following JAMF Casper.  Once devices are registered, you have the possibility to create accounts (However the common method is to create an account on registration).  If you deploy a BYOD approach, you should also look into DEP program Apple (https://deploy.apple.com) as more DEP JAMF (or other MDM) is a very powerful tool for light to zero touch deployment of systems.

    Reid

    Apple Consultants Network

    Author - "El Capitan Server - Foundation Services.

    Author - "El Capitan Server - Collaboration & control»

    Author - "El Capitan Server - Advanced Services '.

    : IBooks exclusively available in Apple store

  • [FlexRIO] Is it possible to define two modules e/s for my FlexRIO

    Hi all

    I developed an application to perform a test on a digital ASIC business and have a number of PXI chassis each with an installed FlexRIO. I have two flavors of DIO FAM the NI6581 & the OID NI6583. I want to write the code LV FPGA so that the application can use either FAM that it is mounted on the FlexRIO. Is it possible to set both FAMS IO in the LV FPGA project and the code detect what FAM is mounted and from there select the e/s to use?

    Thank you

    Nick

    Nick,

    While you could not define 2 FAMs under a single FPGA target in the project, you can do the following:

    1. create two targets FPGA, one for each Module IO

    2. write two screws FPGA separate, one for each Module IO

    3 compile the two bitfiles

    4. write a VI host that uses the host FlexRIO screw interface to check which adaptor module is attached.

    5. deploy the appropriate bitfile depending on which adapter module is attached.

    Keep in mind, we do not recommend the adaptation modules FlexRIO hot spare so that you wish to power your system every time you had to adapt modules.

    I hope this helps!

  • HP Deskjet 1050 (J410 series): unable to establish two way connection printer

    Hello

    My printer is connected to my laptop via a USB port and provides ink level readings. It will not print any documents or test pages and when I try to align/clean ink cartridges a message "Unable to establish two track with device connection".

    Can someone advise me on how to solve this problem as soon as possible? Thank you!

    Hello @West__44,

    I would like to help you today to correct the problems of two-way communication that you encounter when using the USB connected HP Deskjet 1050 all-in-One printer on your computer Windows 8.1. Because you get this error via a USB cable connection there are likely a driver or software conflicts between your HP Deskjet and your Windows computer. Can I please you follow the steps below to resolve this issue.

    • Please, unplug your USB cable from your printer and your computer before you continue.

    Step 1: Remove the driver:

    For the purposes of troubleshooting, it is essential that we have a clean slate to work with. Therefore, I will be having remove you all traces of your HP Deskjet from your computer in Windows before you run the hotfix.

    1. Open the screen, Start by selecting the Windows icon at the bottom left of your computer screen or by selecting the Windows key bottom left of your keyboard, to the right of the Ctrl key.
    2. On the start screen, type programs and features. Click on programs and features to start.
    3. Under the window programs and features will populate a list of the programs installed on your computer. Please scroll through the list and select your Printer HP Deskjet. Click Uninstall.
    4. Please follow the prompts on the screen to complete the uninstallation. Once the uninstall is complete, proceed to the next step.

    Step 2: Remove temporary files:

    1. Open the screen, Start by selecting the Windows icon at the bottom left of your computer screen or by selecting the Windows key bottom left of your keyboard, to the right of the Ctrl key.
    2. On the start screen, type run. Click on Run to launch the run dialogue box.
    3. In the run box type %temp% , and then click OK
    4. When the Temp folder opens, select Ctrl + A at the same time on your keyboard. Everything in this folder will highlight now.
    5. Select the "delete" button on your keyboard. The Temp folder contains the temporary internet files. None of the actual files or folders on your computer will be affected by deleting Temp files. A Temp file should you will automatically get the pop up to 'jump' this point.
    6. Close the Temp folder when it is empty
    7. Right-click the recycling bin on your desktop and select empty recycling bin. Please proceed to the next step.

    Step 3: Install the device:

    1. Please click here to download the package full feature software and driver for your HP Deskjet printer.
    2. Once the download is complete, follow the prompts on the screen to install your printer
    3. Do not connect the USB cable until the installation program invites you to
    4. On your laptop, please make sure that the USB cable is plugged directly from the back of your printer to the laptop. Avoid USB Extenders and home stations as they can cause conflicts of USB communication.

    Once the installation is completed successfully, please test print to confirm that the problem has been resolved.

    Please reply to this message with the result of your troubleshooting. Thanks for joining the Forums from HP Support. I can't wait to hear strings attached good luck!

  • Is it possible to create a Subvi of variable size (stretch)?

    I was wondering if it is possible to create a Subvi where its size (inputs and outputs) can be extended. To be clear, something like the CONCATENATE function, where you can change its size by making it bigger.

    James.Morris wrote:

    garrettmarsh wrote:

    Right-click Subvi > uncheck the "display as icon".

    Which does not allow the slide to add more entries, it changes just input/output are visible. I think OP wants a Subvi with an expandable size input/output similar to the Array Index or concatenate strings.

    Good point, my suggestion really offers only a cosmetic change in the way your diagram appears. OP, you might look into XNodes to do what you describe, but it will probably take some work. Last I heard they are a type of "use at your own risk" of functionality that is not officially documented or supported.

    There is some info here to help you get started:

    http://forums.NI.com/T5/LabVIEW/what-is-an-XNode/TD-p/1307516

  • Is it possible to create an x 86 DVD of Vista SP2 slipstreamed that includes windows updates

    As the title, I would like to know if its possible to create a slipstreamed Service Pack 2 Vista DVD which includes all windows which updates States are downloaded and applied after SP2 is install on a new installation? In other words it would be possible to make an installation DVD for Vista including SP1, SP2 and implemented to date? If Yes, how can it be done?

    Thanks in advance

    Victor

    Hello

    Sorry not possible to do what you want to do.

    You can clone the installion of update of an external hard drive and reinstall that way if you want to rather

    This is how to do a full backup of the computer and how to restore it (for Vista Business, Ultimate and Enterprise only):

    «How to make a backup of the computer in Vista»

    http://www.bleepingcomputer.com/tutorials/how-to-use-Vista-complete-PC-Backup/

    "How to restore a full backup of the computer.

    http://www.bleepingcomputer.com/tutorials/Windows-Vista-complete-PC-Restore/

    There are a number of 3rd party programs available for a full backup of the computer; others, you must pay for, some are free.

    This program must be purchased:

    "Acronis True Image".

    http://www.Acronis.com/homecomputing/products/TrueImage/index_gwo.html?utm_expid=4274314-6

    These are free programs for the protection of the computer:

    "EaseUS Todo Backup free"

    http://www.TODO-backup.com/products/home/free-backup-software.htm

    "Download Backup & Recovery 2012 free FREE!

    http://www.Paragon-Software.com/home/BR-free/download.html

    «Macrium Reflect FREE Edition»

    http://www.Macrium.com/reflectfree.aspx

    See you soon.

  • Create two different user profiles in a laptop to use in office & home environment

    can we create two different user profile / accounts, which can be used only one profile of field office environment & another profile for my internet browsing environment home (which has no restrictions). But my desktop environment uses an ISA Server which limits with many rules.

    What I really want is, I want my two accounts work like two different PCs. mainly programs which I use on the family environment may not run or work or visible on the desktop environment profile...
    can someone suggest me a solution or I would like to know if it's possible that...

    Unfortunately put you you join a computer to the domain, that's all the computer not the user account and the domain policies will be applicable to all users.

    Even if a running virtual machine could just do what you want, you would have probably more success with the creation of a separate partition and dual boot of the system. You would then have a home operating system and a separate office o/s. Dual boot can be with the same versions of Windows, they do not have to be different.

Maybe you are looking for

  • Audio driver for Windows 7 required - Qosmio G30

    Best of all, I am Spanish. I have a Toshiba Qosmio G30-198. I installed "Windows 7" and ok. The only thing the map its (Sigmatel STAC9200d) does not work with this system. I install drivers of procedures of the 'Vista' and the 'XP' and nothing. Does

  • U3415W, no audio in PBP Mode

    Hello So I have this brand new U3415W connected to a 6900 AMD. Connected the monitor to the HDMI socket and CDM (mDP to DP) the ports on the card. If I use the screen as unique with HDMI, audio works. If I configure the PBP with HDMI or CDM as the ma

  • Sound distortion or "whistling" of computer speakers

    Laptop model: HP Pavilion dv6-7010us Operating system: Windows 7 64-bit I've updated all the audio drivers and I still get one its "buzz" or "whistling".

  • How to remove a black line between the two parts of the scanned image?

    HelloI scanned a drawing I did a long time ago.But given that the paper is too large for the scanner, I had to do two scanning. I wanted to join these two parts as in Photoshop.I loaded the left side of the drawing.I changed the size of the canva so

  • Can not buy subscription creative cloud [Thailand]

    There was a problem processing your order, please contact our Service team customer care for assistance. Indonesia: 001 803 447 361 Malaysia: 1 300 80 0027 Philippines: 180014410440 Thailand: 001 800 441 8813 others: + 65 66221459