Similar program to nm-editor from ubuntu.

Using ubuntu i am used to edit my wireless networks from rightclicking nm-applet and choose "edit my wireless connections".
I wonder if this is possible in arch, or is there a file i can edit.
I dont want it to not use a network automaticaly.

toffyrn wrote:Does anyone know when this one will be upgraded?
Maybe when it's released?
the 0.7 beta is in AUR http://aur.archlinux.org/packages.php?ID=16229
as well as the svn version http://aur.archlinux.org/packages.php?ID=18509

Similar Messages

  • How to call a text editor from a module pool program

    Hi All,
    I want to call the text editor from my modulepool program. Enter my text in it and save it.This text needs to be saved in a Z-program with 2 fields as primary keys. The next time while I call this same record from this z table, I need to fetch the existing text and display it.
    The user now can put in additional text and can again save it. This process thus goes on..
    If anyone has worked in this type of scenario, then please help me in doing this.
    Useful answers will surely be rewarded.
    Thanks,
    Susanth.

    Hi Sushanth,
    We save the text not as fields in a ztable directly but as a text.Please check the format below since it is based on a working code....
    first you need to create a text in s010 transaction...
    there should be some key based on which you plan to save the text..imagine it is Purchase order then..PO+item numner is always unique.eg:0090010(900PO/item10).so in the code you can append these two and they will be unique..so you can always retrieve them,overwrite,save them anytime you need
    **************data declarations
    TYPES: BEGIN OF TY_EDITOR,
    EDIT(254) TYPE C,
    END OF TY_EDITOR.
    data: int_line type table of tline with header line.
    data: gw_thead like thead.
    data: int_table type standard table of ty_editor.
    ****************fill header..from SO10 t-code..when you save you need the unique key..youfill it here and pass it in save_text function module
    GW_THEAD-TDNAME = loc_nam. " unique key for the text -> our unique key to identify the text
    GW_THEAD-TDID = 'ST'. " Text ID from SO10
    GW_THEAD-TDSPRAS = SY-LANGU. "current language
    GW_THEAD-TDOBJECT = 'ZXXX'. "name of the text object created in SO10
    *To Read from Container and get data to int_table
    CALL METHOD EDITOR ->GET_TEXT_AS_R3TABLE
    IMPORTING
    TABLE = int_table
    EXCEPTIONS
    ERROR_DP = 1
    ERROR_CNTL_CALL_METHOD = 2
    ERROR_DP_CREATE = 3
    POTENTIAL_DATA_LOSS = 4
    others = 5.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop data from int_table and save to int_line-tdline appending it.
    *save the text
    CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
    HEADER = GW_THEAD
    TABLES
    LINES = InT_LINE
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    OBJECT = 4
    OTHERS = 5.
    IF SY-SUBRC 0.
    ENDIF.
    *To pass to Container
    CALL METHOD EDITOR ->SET_TEXT
    hope that the above sample with helps you solve the problem
    Please check and revert,
    Reward if helpful
    Regards
    Byju

  • Downloaded adobe photoshop elements 10 editor from Mac app store onto my mac book pro, set i photo preferences to APE 10 Editor, but can not open any files from my library, error saying " program error". What else do I need to do?

    Have downloaded Adobe Photoshop Elements 10 Editor from the Mac App Store onto my Mac Book Pro, set i photo preferences to Adobe PSE 10 editor, but when I try to open a file from my photo library, the following message appears: "could not complete your request because of a program error". What can I do to resolve this issue?

    Hi..
    Post your topic in the iPhoto community here. That way you can get feedback from iPhoto users.
    This community is primairly for issues with the App Store.

  • Opening MS Word Editor from ABAP Program

    Hi all,
    My requirement is to give two options. User can open Text Editor OR MS Word Editor from screen. Text/any data entered on this will then be saved.
    Can anyone help me regarding this?
    Thanks a lot in advance.
    Best Regards,
    Prasad

    Prasad,
    Pls. go through below link.
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/204d1bb8-489d-2910-d0b5-cdddb3227820]
    Regards,

  • Open Outlook email editor from SAP

    Hi,
    I need to open the outlook email editor from ABAP program so that the user can manually input the To, CC, subject, body and attachment.
    Can anybody help ?
    Thanks and regards
    Arijit Ghose

    check out this sample code (using VB script) , you can do similar stuff using activex control as well.
    FUNCTION Z_OUTLOOK_MAIL_CREATE.
    *"*"Local interface:
    *"       IMPORTING
    *"             VALUE(I_SUBJECT) TYPE  C OPTIONAL
    *"       TABLES
    *"              EMAIL_BODY STRUCTURE  SOLI OPTIONAL
    *"              ADDRESS_LIST STRUCTURE  SOLI OPTIONAL
    *"              ATTACHMENTS STRUCTURE  SOLI OPTIONAL
    *"       EXCEPTIONS
    *"              INVALID_PATH
    *"              DOWNLOAD_FAILED
    *"              EXECUTION_FAILED
      DATA:
        V_TRANSLATE(2),
        IT_VBS          LIKE SOLI
           OCCURS 50 WITH HEADER LINE,
        V_LAST,
        V_VBS_FILENAME  LIKE RLGRAP-FILENAME,
        COMMANDLINE(1000).
    *- Prepare a code to translate a quote into a hex-tab
    *- so it can then be translated back to 2 double quotes.
      CONCATENATE '"' CON_HEX-TAB INTO V_TRANSLATE.
      APPEND:
        'Dim myolapp                                        ' TO IT_VBS,
        'Dim olNamespace                                    ' TO IT_VBS,
        'Dim myItem                                         ' TO IT_VBS,
        'Dim myRecipient                                    ' TO IT_VBS,
        'Dim myAttachments                                  ' TO IT_VBS,
        '                                                   ' TO IT_VBS,
        'Set myolapp = CreateObject("Outlook.Application")  ' TO IT_VBS,
        'Set olNamespace = myolapp.GetNamespace("MAPI")     ' TO IT_VBS,
        'Set myItem = myolapp.CreateItem(olMailItem)        ' TO IT_VBS,
        '                                                   ' TO IT_VBS.
    *- Translate the body into a single line.
      LOOP AT ADDRESS_LIST.
        CONCATENATE
          'Set myRecipient = myItem.Recipients.Add("'
          ADDRESS_LIST
          INTO IT_VBS.
        APPEND IT_VBS.
      ENDLOOP.
      APPEND:
        'myItem.VotingOptions = "Approve;Reject"' TO IT_VBS.
    *- Build the subject line.
      CONCATENATE
        'myItem.Subject = "'
        I_SUBJECT
        INTO IT_VBS.
      APPEND IT_VBS.
    *- Prepare attachments
      APPEND:
        'Set myAttachments = myItem.Attachments' TO IT_VBS.
    *- Check if the attachment exists
      LOOP AT ATTACHMENTS.
        CALL FUNCTION 'WS_QUERY'
             EXPORTING
                  FILENAME       = ATTACHMENTS
                  QUERY          = 'FE'
             EXCEPTIONS
                  INV_QUERY      = 1
                  NO_BATCH       = 2
                  FRONTEND_ERROR = 3
                  OTHERS         = 4.
        IF SY-SUBRC EQ 0.
          CONCATENATE 'myAttachments.Add("'
                      ATTACHMENTS
            INTO IT_VBS.
          APPEND IT_VBS.
    * '    olByValue, 1, "4th Quarter 1996 Results Chart"'
    *      append '    olByReference, 1' to it_vbs.
        ELSE.
          MESSAGE I017(ZZ) WITH
             'Could not attach' ATTACHMENTS.
        ENDIF.
      ENDLOOP.
    *- Prepare the email body.
      CLEAR: V_LAST, IT_VBS.
      APPEND IT_VBS.
      LOOP AT EMAIL_BODY.
        AT FIRST.
          APPEND 'myitem.body = _' TO IT_VBS.
        ENDAT.
        AT LAST.
          V_LAST = 'X'.
        ENDAT.
        TRANSLATE EMAIL_BODY USING V_TRANSLATE.
        WHILE SY-SUBRC EQ 0.
          REPLACE CON_HEX-TAB WITH '""' INTO EMAIL_BODY.
        ENDWHILE.
        IF V_LAST = 'X'.
          CONCATENATE '"' EMAIL_BODY '" &vbCrLf '
            INTO IT_VBS.
        ELSE.
          CONCATENATE '"' EMAIL_BODY '" &vbCrLf  &_'
            INTO IT_VBS.
        ENDIF.
        APPEND IT_VBS.
      ENDLOOP.
      APPEND 'myItem.Display' TO IT_VBS.
    *- Prepare the vbscript filename for download and execution
      CLEAR V_VBS_FILENAME.
      CALL FUNCTION 'WS_QUERY'
           EXPORTING
                ENVIRONMENT    = 'TEMP'
                QUERY          = 'EN'
           IMPORTING
                RETURN         = V_VBS_FILENAME
           EXCEPTIONS
                INV_QUERY      = 1
                NO_BATCH       = 2
                FRONTEND_ERROR = 3
                OTHERS         = 4.
      IF SY-SUBRC <> 0.
        RAISE INVALID_PATHNAME.
      ENDIF.
      CONCATENATE V_VBS_FILENAME 'mail.vbs'
        INTO V_VBS_FILENAME.
      COMMANDLINE = V_VBS_FILENAME.
    *- Download the file
      CALL FUNCTION 'WS_DOWNLOAD'
           EXPORTING
                FILENAME            = V_VBS_FILENAME
                FILETYPE            = 'DAT'
                MODE                = 'S'
           TABLES
                DATA_TAB            = IT_VBS
           EXCEPTIONS
                FILE_OPEN_ERROR     = 1
                FILE_WRITE_ERROR    = 2
                INVALID_FILESIZE    = 3
                INVALID_TABLE_WIDTH = 4
                INVALID_TYPE        = 5
                NO_BATCH            = 6
                UNKNOWN_ERROR       = 7
                OTHERS              = 8.
      IF SY-SUBRC <> 0.
        RAISE DOWNLOAD_FAILED.
      ENDIF.
      CALL FUNCTION 'WS_EXECUTE'
           EXPORTING
                COMMANDLINE    = COMMANDLINE
                PROGRAM        = 'WSCRIPT.EXE'
           EXCEPTIONS
                FRONTEND_ERROR = 1
                NO_BATCH       = 2
                PROG_NOT_FOUND = 3
                ILLEGAL_OPTION = 4
                OTHERS         = 5.
      IF SY-SUBRC <> 0.
        RAISE EXECUTION_FAILED.
      ENDIF.
    ENDFUNCTION.
    Regards
    Raja

  • Unable to open any programs in ABAP editor

    Hi folks i'm unable to open any programs in ABAP Editor.
    When ever i try to open any program it goes to short dump.
    Even when i try to open STO4 to view error log.
    it shows following message
    Short text
        Runtime error, short dump could not be written.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program " " had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
        Unfortunately, the system cannot carry out a detailed analysis of the
        error, as the table SNAP (which gathers information at the time of
        termination) does not contain a suitable short dump.
    Information About Termination Point in XSLT Prog.
        Termination occurred in the XSLT program " ".
        The call took place using CALL TRANSFORMATION from the ABAP
        program specified below.
        In the source code, the termination point is in line " "
        of the (Include) program " ".
    Internal notes
        The termination was triggered in function " "
        of the SAP kernel, in line " " of the module " ".
        The internal operation just processed is " ".
        Internal mode was started at " ".

    hi,
    check whether any exit has been implemented for se38 and because of some statements in that it may goto dump.
    also try to open ur program from SE80.if u have access to se80 then u can do it from there itself.
    reward points  if hlpful.

  • OS X problems when restarting from Ubuntu

    Let's start first speaking about my configuration.
    I have a MacBook Pro 5,5 mid 2009 with 2 HDs: 1 is SSD (250gb), the other HD (1TB).
    SSD: 1 single partition with OSX Maverick.
    HD: 1 partition for data, 1 for ubuntu, 1 Linux swap, 1 bootcamp with Windows 8.
    In both there are the hidden partitions for EFI and Recovery.
    The problem:
    Some problems came out when I installed Ubuntu 14.04 LTS natively on my HD.
    I configured Refind (see Refit), resized the data partition on the HD, installed ubuntu and I've built an hybrid MBR through gdisk to bypass the limit of max. 4 partitions (considering that I already have bootcamp).
    When I want to switch from Ubuntu to Mavericks, I click restart and thanks to Refind I boot directly into OSX Mavericks.
    At this point 2 strange things are going to happen under OS X until I completely restart my macbook.
    Some of them are:
    - The system time is not correct. My timezone (UTC +2) goes to UTC.
    - The trackpad click (not the tap) sometimes does not work. If I connect/disconnect or disconnect/connect my magic mouse, the click starts working again for a small amount of time.
    - It happened one time that the login keychan got corrupted and I had to fully restore it.
    I decided to write here since I didn't found similar problems over the internet. Do you have any suggestions?

    If you have more than one user account, you must be logged in as an administrator to carry out these instructions.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select the most recent panic log under the heading System Diagnostic Reports on the left. If you don't see that heading, select  
    View ▹ Show Log List   from the menu bar. Post the entire contents of the panic report — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • How can you start the tag config editor from a vi or when labview starts?

    how can you start the tag config editor from a vi or when labview starts?

    Hi,
    There is a VI called "dsc_TagEditorLauncher.vi" under "C:\Program Files\National Instruments\LabVIEW 7.1\project\lvdsc" folder that can be used to launch the TCE programmatically. I hope this helps.
    Best Regards,
    Remzi A.
    Applications Engineering
    National Instruments

  • Removing External Editor from Lightroom

    I have purchased Photoshop CS3 and now I use it with Lightroom.
    I have remove my old editor from my PC, but still shows up in Photo/edit other.
    Is there a way I can remove this.
    Thanks
    Johnn

    From the Lightroom Extra FAQ (should also apply to CS3 if running Windows):
    Lightroom does not recognize Photoshop CS2 - Windows
    Perform this at your own risk.
    Here's how to fix it:
    1) Run regedit.exe from start menu->run
    2) Look for this folder:
    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\App Paths\photoshop.exe
    In that folder, there should be a key "Path" and its value should be the folder where Photoshop CS2 (or any other Photoshop version) is installed."
    If your registry does not have that folder, created it and add a "Path" key with the value being the path to Photoshop CS2:
    C:\Program Files\Adobe\Adobe Photoshop CS2\

  • Is there any way to ban Winsock Packet Editor from workin on your browser other players are using this progarm to interfer with peopels game play using your web browser on forfox

    ok i play yoville and people are using your web browser for the program Winsock Packet Editor Pro and everytime I try to enjoy yoville by zynga some fool uses your web browser to make winsock packet aditor to disconnect my player im so sick of this crap i work all day i exspect to come on yo and enjoy my game play not for some fool to use your web browser to make a program work and disconnect my player by gaining access to cdata people can also use wpe to get into others account with out any password or user name so is there any way to stop this program from working on your browser to stop these hackers from compromising accounts and ruining the fun of zynga games Ty for your kind Support and i hope u can help stop this program from working on your browser and from other browsers game play would be better off for all

    If you are meaning [http://wpepro.net http://wpepro.net], that tool doesn't use Firefox in the slightest. It uses TCP/IP (part of Windows) to Monitor networks (it can also be used nefariously).
    Please update your Firefox to Firefox 11, as the version you are running Is vulnerable to Many known security holes. After you do that, try to see if your problem is still going on.

  • Upgrading an old dell from Ubuntu 8

    My mother has Ubuntu 8 on her Dell Dimension 2400.  I think its a Pentium 4 or so.  Anyhow, a few years back I had installed Ubuntu for her.  It was then -and is much more now- an older machine so I wanted to put something on there that would be  stable, easy on the hardware and reliable.  Ubuntu is what I started with when I decided to dump Windows so, that's what she got.
    Now that my Linux taste has matured and I've been using Arch, I think I want to upgrade her as well.  This all started because she was running Firefox 3.6 and need an upgrade so she could use an online school grades interface.  I tried to upgrade her today but because Ubuntu 8 no longer has support, I can't.
    Water under the bridge, that gives me an excuse to install Arch.  So, because my mother is getting older and was never really too savvy to begin with, I want to try and keep the 'feel' similar to how it is in Ubuntu which is Gnome 2.
    She's a very basic user, web browser, light openoffice for word processor, etc.   With so many Arch options/configurations, I wanted to ask the opinions of this community.
    I was thinking possibly XFCE or LXDE but I know she is used to the 'places' and 'applications' drop downs from Gnome2.
    What are your thoughts?
    Thanks!

    shushu wrote:
    My mother has Ubuntu 8 on her Dell Dimension 2400.  I think its a Pentium 4 or so.  Anyhow, a few years back I had installed Ubuntu for her.  It was then -and is much more now- an older machine so I wanted to put something on there that would be  stable, easy on the hardware and reliable.  Ubuntu is what I started with when I decided to dump Windows so, that's what she got.
    Now that my Linux taste has matured and I've been using Arch, I think I want to upgrade her as well.  This all started because she was running Firefox 3.6 and need an upgrade so she could use an online school grades interface.  I tried to upgrade her today but because Ubuntu 8 no longer has support, I can't.
    Water under the bridge, that gives me an excuse to install Arch.  So, because my mother is getting older and was never really too savvy to begin with, I want to try and keep the 'feel' similar to how it is in Ubuntu which is Gnome 2.
    She's a very basic user, web browser, light openoffice for word processor, etc.   With so many Arch options/configurations, I wanted to ask the opinions of this community.
    I was thinking possibly XFCE or LXDE but I know she is used to the 'places' and 'applications' drop downs from Gnome2.
    What are your thoughts?
    Thanks!
    XFCE is a great choice for a couple of reasons: the layout is very similar to Gnome 2 and it's fairly light on resources. The only reservation I have is since Arch is a rolling release is her ability to maintain the system. However, if you are willing to deal with that, then cool. Otherwise, perhaps Xubuntu or something similar would be better. I set up a machine for an 80-year-old friend of mine with Ubuntu 10.04 which still has the old Gnome 2 and he was quite able to handle it, much better in fact than the Windows XP he had on there. I'm sure he could handle Xfce just as easily but I couldn't get the liveCD to boot on his ancient machine.

  • How can I copy programs (iWorks) and files from Time Capsule to my HD manually? The problem is that the migration assistant does not recognize my backup file and the user on the TC. (If I open the TC on finder, it it there though)

    How can I copy programs (iWorks) and files from Time Capsule to my HD manually? The problem is that the migration assistant does not recognize my backup file and the user on the TC. (If I open the TC on finder, it it there though)

    How can I copy programs (iWorks) and files from Time Capsule to my HD manually? The problem is that the migration assistant does not recognize my backup file and the user on the TC. (If I open the TC on finder, it it there though)

  • How to enable MSDOS program to be called from Oracle PL/SQL procedure ( Web Service )?

    Hello,
    Dealing with the time demanding procedure where power user is interactively execute sequence
    of steps of procedure:
    1. pl/sql procedure for preparing data in some table
    2. java program that read data from the table and creating input txt file for MSDOS program
    3. MSDOS program is autonomous component that reads input txt file and make
        output txtfile.
        MSDOS program is closed component, can not be modified
    4. java program that insert txtfile into Oracle table.
    5. Steps 1 to 4 are executed in interations driven with select on some table.
    Trying to prepare re-design the procedure  and not sure about which technologies to use ?
    The goal is that whole procedure would be implemented in pl/sql procedure and this way could be executed
    so as from power user from command line as from controlled application on any type of the client.
    So if that MSDOS program would be transformed as Web Service offered on  some MSWin server in the intranet.
    Then PL/SQL procedure would communicate ( call this web service ) and do all the job and at the end
    send status of completion and report through e-mail to the issuer of the procedure?
    Not sure what technologies should I use on Oracle RDBMS server on Linux to communicate with MSWin Web service which is running MSDOS program ?

    > Hi TOM,
    This is not asktom.oracle.com.
    > Can Possible to do in Oacle Pl/Sql...?
    Yes it can be done. Simply consult the applicable manuals that contains all of the details on how to do it. The manuals are:
    - Oracle® Database Application Developer's Guide - Large Objects (refer to Chapter 6 section on Using PL/SQL (DBMS_LOB Package) to Work with LOBs)
    - Oracle® Database PL/SQL Packages and Types Reference (refer to the chapter on DBMS_LOB)

  • What is the best client for ARD from ubuntu linux?

    I attempt to connect to my mac mini running osx 10.7 from ubuntu linux using the default vncviewer application and the tightvnc client and I get to the login display but am unable to click on any of the users nor log in.  I was successful from my windows7 laptop, but not from my windows xp HTPC--ultravnc gets to the login prompt, showed me the password field, but didn't allow me to change focus to that field, however, this isn't reproducable since I get a different behavior each time I try to remote in.

    Back up all data. Update all third-party software to the latest version and remove any you don't need. Download the Yosemite installer from the App Store. Run it.

  • How do I install the video editing program I just bought from Adobie?

    How do I install the video editing program I just bought from Adobie?

    Mylenium
    Thanks for the response.   My system is Windows 7 with a painfully slow ATT
    high speed connection.
    I got the "Cloud" including CS6 , yesterday,after a chat with a nice Indian
    fellow who called me back from Bombay.  Surprisingly he was looking forward
    to Thanksgiving too but probably because he gets a day off.
    I now have the Adobe Premiere Pro loaded (it took nine hours) and
    installed.  Now I'm starting the tutorials.
    Hopefully I'll be editing soon.
    Thanks again
    Lyman Dave

Maybe you are looking for

  • How do I remove a nonplaying song from my iPod Touch that doesn't appear in iTunes?

    I found a song on my iPod Touch (3rd Generation) that doesn't play.  Yet it doesn't show up in iTunes when I connect the iPod Touch to my computer.  How do I delete it it off my iPod Touch?

  • Reset cellular statistics no longer works in 7.1

    Today was the day to reset my counters so I can make sure of my usage. On the Settings -> Cellular Data screen, near the bottom, is a reset statistics button. Clicking that does, well, nothing. I believe it used to reset the boxes that say "Current P

  • Adobe Acrobat 8 to 9 Standard

    Our organization recently purchased 5 Acrobat upgrades and 4 full verions via the volume license site.  I received one serial number (which I was later told the upgrade isn't really an upgrade but the full verion) and download via email downloaded th

  • I can't use the Mail app after updating to 8.0.2

    I can add my Gmail account to my phone just fine.  It adds my calendar, my contacts and my notes with no problem.  But when I open the Mail app, I get a blank screen.  It stays blank for about 15-20 seconds and then closes automatically. Also, there

  • SONGS NOT PLAYING iTunes 7, iPod 1.1.2.8

    WOW, HOW ABOUT THAT?! MY IPOD WON'T PLAY MUSIC... I recently upgraded to the new itunes (computer reformat) and upon plugging my working ipod in, it prompts to upgrade to iPod 1.2. Assuming (regretably) that it might have fixed some of the problems i