Design of ListBox (container)

People-

I want to have the height of the listbox to remain constant regardless of the number or the lines that I have defined programmatically.  And I want to also see a vertical scroll bar ListBox ACTIVE so I can scroll to the rank of choice.  I tried different things with nodes of property and tried to get something by placing the ListBox within a cluster.  I'm not fallen on a satisfactory solution so far.  Any help is appreciated.

Sincerely,

Don

Sorry, misunderstood your question. Well, if you set the number of lines then obviously the control will resize itself to do exactly what you said to do. This is by design and makes sense. Use the TopRow property instead.

Tags: NI Software

Similar Questions

  • Convert the appearance of the table of clusters to multicolumn listbox or vice versa

    Hi all.

    Attached you can see two different controls. On the left side, there is an array of clusters. On the right side, you can find a multicolumn listbox.

    Is it possible to change the appearance of each of them to be like others? I mean, is - can I change the appearance of the multicolumn list box to resemble the matrix of clusters (with the same cell border thickness, appearance of the cell, etc.)?, or vice versa?

    Furthermore, is it possible to add headers to each column in the table in the clusters? I wrote several headers, but they are separated from the table, just pasted text.

    Thank you
    Francisco.

    You can get a lot more close anyway, if not all the way there.

    On each field in the cluster, you can right click and replace it with a classic Simple of the string, that is not indented and is similar to designing of listbox. Play and I'm sure you can get very close this flat look of worksheet.

    You can probably also use a classic version of the bunch, but if replace you it seems to clear out, so you will need to copy the design of field to another.

    /Y

  • Delicate design or elastic Pages

    I am putting together a new website and I realize the importance of having options for the desktop users, Tablet and smartphone.

    However, I'm not bothered all the side things smartphone, but I wish I could show my site on the shelves as well as desktop monitors. I would normally design in a container which is 960 px wide. I have a feeling that I'm safe enough for the tablets using this size. I know that I am not satisfied smartphone users, nor do I want to. I don't want to be disturbed, have answer to the various devices.

    Am I risking a sentence any engines of research outside the probability that my site will be not appear in searches from smartphone devices. Are there any other hidden snags that could hide?

    Can I use the elastic pages.

    Ideas or comments on this please.

    Thank you

    I'm not bothered all the side things smartphone, but I wish I could show my site on the shelves as well as desktop monitors. I would normally design in a container which is 960 px wide. I have a feeling that I'm safe enough for the tablets using this size.

    Think again. See post #3 in this related discussion.

    How can we make our Web site mobile friendly

    Nancy O.

  • ScriptUI: How update the values from Listbox? (CC2014)

    Is there a way to update item listbox that filled with the elements of the array JS. If I push more items in the table, how do I re - make in ScriptUI? Is there any way to do this.

    I know there are average just to add items to the listbox as in PDF of Peter Kahrel. But it's not so dynamic:

    var w = new Window ("dialog");
    var myList = w.add ("listbox", undefined, ["one", "two", "three"]);
    var b = w.add ("button", undefined, "Add");
    b.onClick = function () {myList.add ("item", "zero", 0)}
    w.show ();
    

    What would you say if I wan't to update the listbox when I changed my paintings, as below:

    // Create example array
    var testArr = ['item1', 'item2']
    $.writeln(testArr.length);
    
    startGUI();
    function startGUI() {
        
        // Window
        var win = new Window( "palette", script_name, undefined, { resizeable:true } );
        win.orientation = "column";
        win.alignChildren = ["fill", "fill"];
        
        // Listbox
        var myListbox = win.add ("listbox", undefined, testArr,  
            {  
            numberOfColumns: 1,  
            showHeaders: true,  
            columnTitles: ['Name']
        });
    
        // Add Item To Array
        var addItem = win.add("button", undefined, "Add Item");
        addItem.onClick = function() {   
            testArr.push ('item3');
            $.writeln(testArr.length);
        }  
    
        // Quit BTN
        win.quitBtn = win.add("button", undefined, "Close");
        win.quitBtn.onClick = function() {   
            win.close();   
        }
    
        win.show();
    }
    

    There may be some update on ScriptUI funtion. I tried to look for the solution without success. Any help?

    I've updated your own script to show how I removed the listbox

    I added a group to host the listbox control, the purpose of the group is to be used as a placeholder (to add the new listbox to the right place) and easily get the listbox to delete

    // listboxEditFromJSArray.jsx - Sakari Niittymaa
    // https://forums.adobe.com/message/6785515 
    
    //#target illustrator 
    
    // Create example array
    var testArr = ['item1', 'item2', 'item3']; 
    
    startGUI();
    function startGUI() { 
    
        // Main Window
        var win = new Window( "palette", "Test Listbox", undefined, { resizeable:true } );
        win.orientation = "column";
        win.alignChildren = ["fill", "fill"]; 
    
        // Listbox Group
        var grpListbox = win.add('group');
        grpListbox.alignChildren = ['fill', 'fill'];
    
        var myListbox = addListBox (grpListbox, testArr); 
    
        // add ListBox
      function addListBox(container, testArr) {
            var listbox = container.add("listbox", undefined, testArr,
                {
                numberOfColumns: 1,
                showHeaders: true,
                columnTitles: ['Name']
            });
    
            return listbox;
      }
    
        // BTN: Add Items To Array
        var addItem = win.add("button", undefined, "Add Item");
        addItem.onClick = function() {
            testArr.push ('item' + (testArr.length + 1));
            grpListbox.remove(grpListbox.children[0]);
            myListbox = addListBox (grpListbox, testArr);
            win.layout.layout(true);
            //updateListboxArray(myListbox);
            //$.writeln (testArr.length + "  " + myListbox.items.length);
        } 
    
        // BTN: Remove Selected
        var removeSelectedItems = win.add("button", undefined, "Remove Selected");
        removeSelectedItems.onClick = function() {
            // Remove selected listbox item from array
            testArr.splice( myListbox.selection.index, 1 );
            updateListboxArray(myListbox);
        } 
    
        // BTN: Clear Listbox
        var removeAllItems = win.add("button", undefined, "Clear Listbox");
        removeAllItems.onClick = function() {
            // Clear the array
            testArr = [];
            updateListboxArray(myListbox);
        } 
    
        // Update listbox items
        function updateListboxArray(listbox) { 
    
            // Clear listbox first
            listbox.removeAll(); 
    
            // Create new listbox items from array
            var i = 0;
            while (listbox.items.length < testArr.length) {
                listbox.add ("item", testArr[i]);
                i++;
            }
        } 
    
        // Quit BTN
        win.quitBtn = win.add("button", undefined, "Close");
        win.quitBtn.onClick = function() {
            win.close();
        } 
    
        // Window Settings
        win.onResizing = function () { this.layout.resize(); };
        win.onShow = function () { win.layout.resize(); };
        win.center();
        win.show();
    }
    
  • To save design projects sensitive CP8 can as model?


    Can I build page layouts in three delicate design views that contain the brand image and marketing in the form and then save it as a template for other designers to use?

    No, the Save as template option isn't available for normal projects, for projects of a reactive nature.

    Formatting objects on master slides, editor of the skin can be saved in a theme, you don't need a template for this. Be sure to start from one of the included sensitive themes.

  • Use the table of numbers as "item select to compare.

    Greetings,

    I'm curious to know how to use an array of numbers as value in the tab select edit ideally my "case" would execute an expression "Contains(Locals.arrayofnumbers,0)."

    Basic principle:

    1 Labview VI launches with ListBox containing all tests (multiple selections enabled)

    OUTPUT is an array of I32.

    2 I32 table is attributed to Locals.arrayofnumbers

    3 Locals.arrayofnumbers is used with the element select 'compare '.

    4. each CASE has the statement... "next" Contains(Locals.arrayofnumbers,#)

    * each case would have 1 sequence to run *.

    Currently TS throws an error prompt indicating that the Select step expected number, that is the table of numbers.

    I already found a solution quick and pretty clean by instituiting just a condition prior to each sequence and captured to eliminate flow control all together. But I prefer not to use prerequisites for global flow control if possible and use controls to rate as expected.

    I have used TS help, but don't quite give me what I needed. Maybe I didn't use the correct search string. The forum here, is the same. I'm sure that the answer may be there, but maybe I'm using the wrong search string.

    Thanks in advance for any help.

    To SUM UP: User selects (via LabVIEW listbox) 1 - n tests to be run (output table I32). I32 table is used for the selection of the case by evaluating "contains (Local.arrayofnumbers, 0).

    Kind regards

    chazzzmd78

    Honestly, a Select System / box is the wrong choice for what you do.  I'd go with the prerequisite options.  It reduces the number of steps of TestStand.

    In your case you just to see whether something exists or not in a table.  Ideally, you will use the Select operations / box when you have 1 selected option of many.  I suppose you're a loop around the case select so that you can run all the tests so that your code looks something like this:

    For N (N is the number of tests they have selected)

    Select Locals.ArrayOfNumbers

    Briefcase (Locals.ArrayOfNumbers, 1).

    Run test 1

    Briefcase (Locals.ArrayOfNumbers, 2)

    Run the test 2

    Select close

    Closing loop

    If you want to use the Select option / box correctly I would like this:

    Item ForEach in Locals.ArrayOfNumbers (assign the item being Locals.i)

    Select Locals.i

    Case 1

    Run test 1

    Case 2

    Run the test 2

    Select close

    Close ForEach

    I hope that makes more sense.  If you have any questions let me know.

    Kind regards

  • Code Golf: stop two while loops with guaranteed ratio iteration

    Proposal

    In the vein of the tradition of Perl, I would like to see if there is any interest to solve a few puzzles programming in LabVIEW. Can someone post a problem and define the rules to solve.

    Here's a question for beginning/intermediate to sharpen your "palette".

    Description

    With a user action, how you would stop two while loops such as the relationship between iterations is the still the same? Concrete to view this situation is to take action: both instruments use the same source of synchronization to take measures, but second divides the clock down so that it is a little slower than the first whole factor. For example, if the slower instrument is four times slower, then at the end of the VI, the slower instrument takes 100 measures the fastest instrument took 400.

    Rules

    • You can use vi.lib
    • You cannot include any other subVIs
    • Your solution should pass for loop1 interval as low as 25 ms

    Model (joint in LabVIEW 2009)

     

    If people are interested in this, then we will find a way to improve future problems. Please post your suggestions and criticisms, but only if you also post a presentation ;-)

    MacNorth wrote:

    [..]

    If we choose the first suggestions, the VI has yet to recover the data at different speeds. You can dedicate a loop for each instrument to disassociate a jitter and latency introduced by their connectivity or the inner workings. This adds a margin of safety when there is a conflict of thread and the pilot. You can also implement a simple counting as altenbach loop and renounce the multiloop complexity.
    [..]

    It is a very good point. But I wanted to make sure, you should / need to discuss the benefits, but also the disadvantages of the design. Implementation of an application is most often a process of 'special cases '. If a framework/design for a single application model does not necessarily correspond to another application.

    Designs are always strongly according to the requirements and constraints. What gives here designs will result in educational services, of course, but not necessarily as reference models for specific applications.

    Advantage of simple loop:

    • No synchronization between several loops required
    • Can easily implement any whole factor between services (quotent & function remains for a case structure

    Disadvantage of simple loop:

    • Take advantage of the multi core systems (at least not much)
    • Can easily run out of the time constraints (material not "not responding" enough, fast manipulation of data takes too long,...)
    • Code will accumulate within the structures of the case, where the readability could suff

    The advantage of multiple loops:

    • See essentially the disadvantages of single loop (several loops solve those)

    Disadvantage of multiple loops:

    • More complex, especially for the sync switch (not beginner friendly, requires a more/better design)
    • May contain easily questions source such as race conditions and locks

    A little side note:

    Even if the equipment works different acquisition rate, this does not necessarily that the software must use different rates for data extraction. You can use the same model of an hour, but get X times more values for the task faster than the slower running. The 'only' thing to care of are the sizes of buffers and bottlenecks in the data transfer.

    MacNorth wrote:

    [..] The best advice published OR shutter multiple while loops (https://www.google.com/search?q=labview+stop+multiple+while+loops) are laughable (and the 'solution' in my model). [..]

    No, it's not laughable. For many applications, this approach to shutter at the same time several loops running is OK. The constraint: only for simple parallel running loops.

    More complex loops (producer/consumer and similar) with the more complex data relationship ships require more valiant approaches such as queues, declaring events or user.

    My 5 cents only,

    Norbert

  • Mobile partition on another drive

    Using Windows XP pro with SP3.

    I have more than one partition on my hard drive, one designated C, which contains the operating system, is now fairly complete. I just bought a new hard drive and I intend to transfer data on a couple of new hard disk partitions and use free space to increase the size of C. Is this possible with disk management so that the scores moved to the new drive will keep the same drive letter and will be available as they are right now?

    Grateful for the advice.

    Using Windows XP pro with SP3.

    I have more than one partition on my hard drive, one designated C, which contains the operating system, is now fairly complete. I just bought a new hard drive and I intend to transfer data on a couple of new hard disk partitions and use free space to increase the size of C. Is this possible with disk management so that the scores moved to the new drive will keep the same drive letter and will be available as they are right now?

    Grateful for the advice.

    You have a number of issues packed in "is this possible with disk management."  Basically, the answer is no.  Although you can create and delete partitions with disk management, the only tool that is native to Windows XP that extends a partition is diskpart.exe .  Unfortunately, diskpart is limited to data volumes.  This means that you can not use it to extend the system volume or boot (e.g., C).

    Use a third-party disk partitioning application.

    Three well-known products are Free of Easeus Partition Manager ,Acronis Disk Director andParagon Partition Manager .

    Your goal with one of the 3 above, the procedure would be:

    • Rename the data on your original disk partitions (for example, X and Y)
    • Install the new drive and create partitions of data D and E.
    • Copy data from X to Y of E and D
    • Use the disk partitioning application to delete the partitions of X and Y and expand C in the newly available space.
  • Great priting help

    Hello, Im not a pro designer am actually still a student and Ive has been invited to create a 70inchx30inch for print design and it contains pictures and also the logo and vector shapes and images may

    I need help just to know the basics of what to do and not do? must be 300 PPI? and CMYK? convert images to CMYK before starting design?

    and what I have to finish with inDesign?

    Please help with basics

    The best thing to do is to talk to whoever made the impression and to see what their needs are.

  • Calculation floating field adds unwanted line break

    Using Livecycle Designer ES4 w / Javascript

    I have a numeric field PurchasePrice and a float DepositAmt field which is calculated using the this.rawValue = PurchasePrice.rawValue *. 3;

    In Design view, the container DepositAmt line looks like this:

    • 30% or {DepositAmt} thereby signed as a deposit;

    Preview the line looks like this:

    • 30% or

    with the agreement signed as a deposit;

    And after that a number entered PurchasePrice it looks like this:

    • 30% or 1 $000,00

    with the agreement signed as a deposit;

    I have other lines with '30% to include... '. "and no return is added.

    I have removed the line and retyped it

    I deleted the floating field and recreated

    I tried FormCalc with the same result

    Thanks in advance for any help!

    R

    I had various problems with floating fields, mainly with extra spaces being placed before and after a currency field. For example, I had an extra space between the field and the punctuation immediately following floating.

    If you select the type of field as "Digital field" and then configures the model of what follows, it should help. Remember to remove the spaces before and after the field floating, as you add them to the model.

    30% or {DepositAmt} thereby signed as a deposit

    num {("$zzz zzz zzz, zzz, zz9.99' ')}

  • Linking the legends index

    Hello

    I am designing a book containing hundreds of images. Under each image, I would have a number that corresponds to a text in a list/index at the end of the book. How can I achieve in concrete terms?

    I tried to find a method with static captions without success (I may be to halfway to the answer?). Of course, I could type everything by hand, but there is no automatic link between each image and its description. The order - and therefore, the numbers - the images will change several times, as well as texts. Therefore, it is very easy to lose control if done manually by simly type a number and update the index. In addition, if a single image is moving, I can end up with a situation where I have to retype not only this specific number, but all the other numbers like well.I.e., guaranteed human error.

    I hope someone can help me with this problem!

    / H

    The legend could be done in a paragraph style where you apply the numbering of the paragraph style. Then you can set the text of legends like the color of the paper, while the number might have a character style that defines the number like black ink color, for example.

    For the list at the end, generate a Table of contents (there may be more than one table of contents in a document) that acts as an index of end for the photos. Paragraph collected styles will be will carry the title with a new paragraph might be called index_to_images style and color can be defined as, perhaps, the black color.

  • Why Cloud Creative delete all my files and re - download them when it automatically updated?

    I lost the files since the last 3 days because the creative cloud did not and I didn't immediately. When I finally saw it wasn't syncing I restarted CC, it then automatically updated and the creative Cloud Files folder has been deleted and the 11 GB of files had to be re-uploaded CC everything I had worked since the creative cloud became insensitive immediately lost and not recoverable. CC is now useless to me if I can't count on it at least not to delete my files. I may go back to Dropbox to synchronize, at least when it goes down it does not remove my files the. 3 days of work gone in a Flash. I disabled the auto-update feature and will not fail to back up my hard drive before updating the CC manually. It's stupid. I had been very happy with CC up to this point, but it's kind of a big deal, now that I have to wait a few hours for my files for re - download.

    James,

    With the recent update of the application of Creative Cloud Desktop (1.9.1.474), we have unfortunately introduced a bug that causes the creation of a new Creative Cloud Files folder and re-synchronization of all content. This will happen only the first time that the synchronization application runs after the update. This caused an understandable pain and confusion, for which we really apologize.

    Creative application Cloud Files contains a logic that supports the use of several Adobe ID. This allows to disconnect from an ID and in, but keeps the contents of your separate creative cloud. When you sign out and change identifiers, the app moves the previous creative Cloud Files folder and it's content and he adds with the already signed in ID (User@AdobeID). Then, it creates a main folder and begins to synchronize the content of the identification of new.

    The bug I mentioned earlier occurs, as the app believes an ID selector took place and as such, moves the current record of Creative Cloud Files and attempts to annex the already signed in ID. As no switch actually took place, it manifests as (unknown).  The application then creates a main folder to synchronize the data.

    What you end up with is essentially a creative Cloud Files folder with your new synchronized data and a creative Cloud Files (unknown) folder that contains duplicate data.

    This happens once, after the last update.

    The solution is to simply delete the (unknown) Creative Cloud Files folder.

    I recommend that ensure you that you have no pending change you can do offline and you check the contents of the folder new, main designer Cloud Files contains everything you expect of him.  If not, check the contents of the creative Cloud Files (unknown) folder that your files should be there.

    If there is still an incompatibility with your data, you can check on creative.adobe.com to confirm that your data is there.

    If you have any other problems or questions on this topic please email [email protected]

  • Creative Cloud Desktop App 1.9.1.474 Update resets the sync to default (windows) folder

    Hi all

    Second time this has happened with an update for Creative Cloud Desktop App (Windows).

    Update finished properly but note while file syncing is going crazy and is re-sync everything but the default location (usually user\username\ - Win 8.1).

    Last time that happened I've seemed to have some loss of files.

    I now leave everything resynchronize to the default location, and then restore to the previous location (where the files are still there - but is located on a different drive).

    Surprised to hear support (Swati) has not heard this before, but found it useful to put it out there to warn others and see if its just me!

    It was for some refreshing Creative Cloud Desktop 1.9.1.474 (and think it was with the previous version required).

    See you soon,.

    M

    Hi Mark,

    as you point out correctly with the recent update of the application of Creative Cloud Desktop (1.9.1.474) presents us unfortunately a bug that causes the creation of a new Creative Cloud Files folder and re-synchronization of all content. This will happen only the first time that the synchronization application runs after the update. This caused an understandable pain and confusion, for which we really apologize.

    Creative application Cloud Files contains a logic that supports the use of several Adobe ID. This allows to disconnect from an ID and in, but keeps the contents of your separate creative cloud. When you sign out and change identifiers, the app moves the previous creative Cloud Files folder and it's content and he adds with the already signed in ID (User@AdobeID). Then, it creates a main folder and begins to synchronize the content of the identification of new.

    The bug I mentioned earlier occurs, as the app believes an ID selector took place and as such, moves the current record of Creative Cloud Files and attempts to annex the already signed in ID. As no switch actually took place, it manifests as (unknown).  The application then creates a main folder to synchronize the data.

    What you end up with is essentially a creative Cloud Files folder with your new synchronized data and a creative Cloud Files (unknown) folder that contains duplicate data.

    This happens once, after the last update.

    The solution is to simply delete the (unknown) Creative Cloud Files folder.

    I recommend that ensure you that you have no pending change you can do offline and you check the contents of the folder new, main designer Cloud Files contains everything you expect of him.  If this is not the case, check the contents of the creative Cloud files (unknown).

    If there is still an incompatibility with your data, you can check on creative.adobe.com to confirm that your data is there.

    If you have any other problems or questions on this topic please email [email protected]

  • Some of my files are missing in my CC, what happened to them?

    Some of my files are missing, what happened to them? I opened my case and I saw that my files have been updated, once it is 100% complete, and some of my files are not in my files. That's happened? How can I get them back?

    Maxine,

    With the recent update of the application of Creative Cloud Desktop (1.9.1.474), we have unfortunately introduced a bug that causes the creation of a new Creative Cloud Files folder and re-synchronization of all content. This will happen only the first time that the synchronization application runs after the update. This caused an understandable pain and confusion, for which we really apologize.

    Creative application Cloud Files contains a logic that supports the use of several Adobe ID. This allows to disconnect from an ID and in, but keeps the contents of your separate creative cloud. When you sign out and change identifiers, the app moves the previous creative Cloud Files folder and it's content and he adds with the already signed in ID (User@AdobeID). Then, it creates a main folder and begins to synchronize the content of the identification of new.

    The bug I mentioned earlier occurs, as the app believes an ID selector took place and as such, moves the current record of Creative Cloud Files and attempts to annex the already signed in ID. As no switch actually took place, it manifests as (unknown).  The application then creates a main folder to synchronize the data.

    What you end up with is essentially a creative Cloud Files folder with your new synchronized data and a creative Cloud Files (unknown) folder that contains duplicate data.

    This happens once, after the last update.

    The solution is to simply delete the (unknown) Creative Cloud Files folder.

    I recommend that ensure you that you have no pending change you can do offline and you check the contents of the folder new, main designer Cloud Files contains everything you expect of him.  If this is not the case, check the contents of the creative Cloud files (unknown).

    If there is still an incompatibility with your data, you can check on creative.adobe.com to confirm that your data is there.

    If you have any other problems or questions on this topic please email [email protected]

  • Creative cloud updates / Files folder location change Bug

    I have a major bone to pick with the CC app. Software updates work very well. This is the real CC app updates which are originally my company a LOT of grief and the loss of time/productivity/money.main computer that is hosting the shared files using an external hard drive (S) to save all files on. Whenever there is an update to the CC app required it corrects everything BUT change the location of the files in the Preferences menu to the default drive (C). This caues all other computers that are related to re - sync ALL the files. On average, it's about 14 000 files which lasts about 10-19 hours depending on the computer and the internet connection.

    This has happened at least twice now. I can't be the only person it happened and it's unacceptable. I found a few messages in the forum, but there are no answers from anyone at Adobe.

    My questions are

    1. is there a way to avoid preferences him swinging back the location of the files on the default drive after an update?
    2. a development team seeks to this question at all so that it can be fixed on a future update?

    With the recent update of the application of Creative Cloud Desktop (1.9.1.474), we have unfortunately introduced a bug that causes the creation of a new Creative Cloud Files folder and re-synchronization of all content. This will happen only the first time that the synchronization application runs after the update. This caused an understandable pain and confusion, for which we really apologize.

    Creative application Cloud Files contains a logic that supports the use of several Adobe ID. This allows to disconnect from an ID and in, but keeps the contents of your separate creative cloud. When you sign out and change identifiers, the app moves the previous creative Cloud Files folder and it's content and he adds with the already signed in ID (User@AdobeID). Then, it creates a main folder and begins to synchronize the content of the identification of new.

    The bug I mentioned earlier occurs, as the app believes an ID selector took place and as such, moves the current record of Creative Cloud Files and attempts to annex the already signed in ID. As no switch actually took place, it manifests as (unknown).  The application then creates a main folder to synchronize the data.

    What you end up with is essentially a creative Cloud Files folder with your new synchronized data and a creative Cloud Files (unknown) folder that contains duplicate data.

    This happens once, after the last update.

    The solution is to simply delete the (unknown) Creative Cloud Files folder.

    I recommend that ensure you that you have no pending change you can do offline and you check the contents of the folder new, main designer Cloud Files contains everything you expect of him.  If this is not the case, check the contents of the creative Cloud files (unknown).

    If there is still an incompatibility with your data, you can check on creative.adobe.com to confirm that your data is there.

    If you have any other problems or questions on this topic please email [email protected]

Maybe you are looking for

  • stop facebook, sending messages to people who send them

    I continue to receive invitations to false friends who do not send invitations for me to join them on facebook.  I think it wrong to site and I wouldn't go there if it was the last place on Earth. I'm fed up with this problem, it now affects the use

  • The security design: DMZ ports on internal switch - bad idea?

    Hi all I'm looking for a compelling - or he said is not serious - why a customer should not creator of DMZ VLAN on a cat internal-6509. Basic topology is a 6509 in a controller area and 2 x ASA - 5510 to active / standby. They finally agreed to start

  • Sudden lack of wifi adapter

    Hello world I use a Toshiba laptop with window 8. all of a sudden, I lose my wifi connection. and when I open the network and sharing Center, went to the card settings, there is no wireless at all, all I see is that the ethernet adapter. and when I r

  • How can I save my files for printing?

    I can't find out how to save a file for printing. The file must be transferred to a company that prints your photos on glass (Fracture) they want the file between 16-20MB. Whenever I save it, it is too big. Of course, I want to be high resolution, so

  • Installation of Yosemite in VMWare Fusion Beta

    HelloI tried to install the new beta version of Yosemite in VMWare Fusion 6.0, but I ran into a problem with the keyboard.Although the mouse works fine keyboard refuses to answer, which continues to provide me with my credentials of the user in the i