Using regex... problems with groups

Ok, I am trying to extract information from html code taken from reddit.com. My lecturer has stated he wants us to turn:
onclick="return morechildren(this, 't3_2mg72', ['c2mo4k', 'c2mn1u', 'c2mmsp', 'c2mmrw', 'c2mm6d', 'c2mlbx', 'c2ml08', 'c2mkv5', 'c2mkqb', 'c2mkn3', 'c2mk92', 'c2mjwd', 'c2mjt7', 'c2mjsu', 'c2mjs2', 'c2mjcy', 'c2mj9p', 'c2mj4b', 'c2mil2', 'c2mih8', 'c2mhxe', 'c2mhl0', 'c2mgvj', 'c2mh6r', 'c2mhhf', 'c2mh4u', 'c2mh5t', 'c2mhal', 'c2mhq2', 'c2mhak', 'c2mhi6', 'c2mg9f', 'c2miax', 'c2mgrh', 'c2mgx8', 'c2mgyc', 'c2mhac', 'c2mhn5', 'c2mgt1', 'c2mi7p', 'c2mic3', 'c2mlkh', 'c2mix7', 'c2mkz2', 'c2mjec', 'c2mh1z', 'c2mklc', 'c2mi1r', 'c2mi38', 'c2mm36', 'c2mkcw', 'c2mlbr', 'c2mldz', 'c2mle6', 'c2mlk3', 'c2mqxe', 'c2mta0'], 0)">load more comments
into:
Thread: t3_2mg72
Posts: c2mn1u, c2mmsp, c2mmrw, etc etc..............
I used:
String t="onclick=\"return morechildren\\(this, '(t3_2mg72)', \\[(('c2m\\w{3}',?\\s?)+)\\], ([0-9])\\)\">load more comments";
and
System.out.println("Thread: "+cmatcher.group(1));
System.out.println("Posts: "+cmatcher.group(2));
And I get:
Thread: t3_2mg72
Posts: 'c2mo4k', 'c2mn1u', 'c2mmsp', 'c2mmrw', 'c2mm6d', 'c2mlbx', 'c2ml08', 'c2mkv5', 'c2mkqb', 'c2mkn3', 'c2mk92', 'c2mjwd', 'c2mjt7', 'c2mjsu', 'c2mjs2', 'c2mjcy', 'c2mj9p', 'c2mj4b', 'c2mil2', 'c2mih8', 'c2mhxe', 'c2mhl0', 'c2mgvj', 'c2mh6r', 'c2mhhf', 'c2mh4u', 'c2mh5t', 'c2mhal', 'c2mhq2', 'c2mhak', 'c2mhi6', 'c2mg9f', 'c2miax', 'c2mgrh', 'c2mgx8', 'c2mgyc', 'c2mhac', 'c2mhn5', 'c2mgt1', 'c2mi7p', 'c2mic3', 'c2mlkh', 'c2mix7', 'c2mkz2', 'c2mjec', 'c2mh1z', 'c2mklc', 'c2mi1r', 'c2mi38', 'c2mm36', 'c2mkcw', 'c2mlbr', 'c2mldz', 'c2mle6', 'c2mlk3', 'c2mqxe', 'c2mta0'
Now, I don't want all the 's in there. But I don't know how to avoid them. I need it widely grouped so that the + is included and I get all the codes instead of just one. Is there any kind of way to group the code within the ''s and then state that I want all of those bits within group 2, but not the outer bits?
Hmm, I feel I am not making much sense! But don't know how to explain it any better. Hope someone knows what I am on about and can help... :)
S xx

eurythmic wrote:
Ok, I am trying to extract information from html code taken from reddit.com. My lecturer has stated he wants us to turn:
onclick="return morechildren(this, 't3_2mg72', ['c2mo4k', 'c2mn1u', 'c2mmsp', 'c2mmrw', 'c2mm6d', 'c2mlbx', 'c2ml08', 'c2mkv5', 'c2mkqb', 'c2mkn3', 'c2mk92', 'c2mjwd', 'c2mjt7', 'c2mjsu', 'c2mjs2', 'c2mjcy', 'c2mj9p', 'c2mj4b', 'c2mil2', 'c2mih8', 'c2mhxe', 'c2mhl0', 'c2mgvj', 'c2mh6r', 'c2mhhf', 'c2mh4u', 'c2mh5t', 'c2mhal', 'c2mhq2', 'c2mhak', 'c2mhi6', 'c2mg9f', 'c2miax', 'c2mgrh', 'c2mgx8', 'c2mgyc', 'c2mhac', 'c2mhn5', 'c2mgt1', 'c2mi7p', 'c2mic3', 'c2mlkh', 'c2mix7', 'c2mkz2', 'c2mjec', 'c2mh1z', 'c2mklc', 'c2mi1r', 'c2mi38', 'c2mm36', 'c2mkcw', 'c2mlbr', 'c2mldz', 'c2mle6', 'c2mlk3', 'c2mqxe', 'c2mta0'], 0)">load more comments
into:
Thread: t3_2mg72
Posts: c2mn1u, c2mmsp, c2mmrw, etc etc..............What happened to "c2mo4k"?
I used:
String t="onclick=\"return morechildren\\(this, '(t3_2mg72)', \\[(('c2m\\w{3}',?\\s?)+)\\], ([0-9])\\)\">load more comments";
and
System.out.println("Thread: "+cmatcher.group(1));
System.out.println("Posts: "+cmatcher.group(2));
And I get:
Thread: t3_2mg72
Posts: 'c2mo4k', 'c2mn1u', 'c2mmsp', 'c2mmrw', 'c2mm6d', 'c2mlbx', 'c2ml08', 'c2mkv5', 'c2mkqb', 'c2mkn3', 'c2mk92', 'c2mjwd', 'c2mjt7', 'c2mjsu', 'c2mjs2', 'c2mjcy', 'c2mj9p', 'c2mj4b', 'c2mil2', 'c2mih8', 'c2mhxe', 'c2mhl0', 'c2mgvj', 'c2mh6r', 'c2mhhf', 'c2mh4u', 'c2mh5t', 'c2mhal', 'c2mhq2', 'c2mhak', 'c2mhi6', 'c2mg9f', 'c2miax', 'c2mgrh', 'c2mgx8', 'c2mgyc', 'c2mhac', 'c2mhn5', 'c2mgt1', 'c2mi7p', 'c2mic3', 'c2mlkh', 'c2mix7', 'c2mkz2', 'c2mjec', 'c2mh1z', 'c2mklc', 'c2mi1r', 'c2mi38', 'c2mm36', 'c2mkcw', 'c2mlbr', 'c2mldz', 'c2mle6', 'c2mlk3', 'c2mqxe', 'c2mta0'
Now, I don't want all the 's in there. But I don't know how to avoid them. I need it widely grouped so that the + is included and I get all the codes instead of just one. Is there any kind of way to group the code within the ''s and then state that I want all of those bits within group 2, but not the outer bits? What do you mean +"I don't want all the 's in there"+ ?

Similar Messages

  • Result set problem with GROUP BY

    hi there, this should be the simplest of queries but.........
    when run, the list size is 13, this is the number of letting units in the table. it appears not to be grouping by the property id.if it was doing this there should only be 8 rows. having said this, the while loop should output the count of each row, it does this 8 times with the correct counts. it then crashes with a invalid curser error. it appears the query is workig correctly but the resultset thinks its got 13 rows when it only has 8.
    accessing ms access db
    using jdbc:odbc
    heres the code
    searchResults = stmt.executeQuery(
    "SELECT Count(*) AS FreeUnits " +
    "FROM letting_units " +
    "GROUP BY letting_units.property_id");
    searchResults.last();
    listSize = searchResults.getRow();
    searchResults.beforeFirst();
    System.out.println(listSize);
    while (searchResults.next())
    System.out.println(searchResults.getString(1));
    hope someone can help me
    cheers
    andy

    It's not the problem with GROUP BY. You should use scrollable result set to move in both directions (forward and backward).
    In your code
    searchResults.beforeFirst(); line may return false. So you will get the searchResults.next() false. Once you move forward in non-scrollable cursor cannot come back. So when you create the statement object use TYPE_SCROLL_INSENSITIVE or TYPE_SCROLL_SENSITIVE constants provided in the ResultSet.

  • Problem with Group policies and Administrator count

    I have one problem with Group policies and Admnistrator count.
    Win XP, Client 4.91, Client Zen 4
    I use DLU for users.
    the Group policies are well applied and i keep them after logout for
    security reasons.
    But my problem is, after logout, the Administrator count becomes this
    Group policies, and the only technique that I use, is to remove the
    repertories c:\windows\system32\GroupPolicy*. Administrator must
    loguing again for having good policies.
    Can you help me?

    Bill,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Last update to ios6 - worst ever, facetime does not work as it used to, problems with skype

    last update to ios6 - worst ever, facetime does not work as it used to, problems with skype, losing connection or no9t connecting facetime to face time. Do something with it.

    I'm not sure yet, but It may be as simple as "settings", "FaceTime" "Off"

  • Problem with Grouping in Interactive Forms by Adobe

    Hey Guys!
    I have a problem using the group function for a table in Interactive Forms by Adobe and I have not found a solution yet, so I hope anybody can help me.
    I've created the table in the LiveCycle Designer using subforms and I want to use the group function for a specific field of my table. Now the problem is that the entries of the table are not shown grouped for the same values of my specific field but there is still one row for each entry. How do I have to edit binding, flow etc. for the subforms of a group?
    I hope anybody can help me or provide me a better solution.
    Thanks in advance.
    Martin

    Hi Otto,
    thanks for your reply.
    I'm sorry the 'grouping function' I've announced is called 'control levels' in English I can set this function for a field of a table in the context of the form in the transaction SFP in SAP. Then in the hierarchy the field is displayed above the group of the other fields of the table. Usually in the form this should lead to a 'grouping' for the specific field so if you have identical values there is just one entry in the form and all the rows that have this value should appear behind. My problem is that there is still one entry in the form for every row.
    Right now I'm using the solution you mentioned with the nested tables but i have some problems with the layout and page breaks (pagination).
    Thanks for your help.
    Martin

  • RegEx Problem with flag COMMENTS

    Hello,
    I have the following Exception:
    java.util.regex.PatternSyntaxException: Unclosed group near index 9
    when my program is running with this flags:
    Pattern patt = Pattern.compile("^(@#@.+)$", Pattern.MULTILINE | Pattern.COMMENTS);but when I run this:
    Pattern patt = Pattern.compile("^(@#@.+)$", Pattern.MULTILINE);it works fine.
    Any COMMENTS ;-) for this problem? The entire RegEx is much bigger. I want to comment it.
    Thanks sacrofano

    Hi,
    thanks for your help, but it did not work.I did not suggest anything that would work! I was trying to point out that the Javadoc says that everything from # to the end of the pattern is treated as comment.
    I run this
    Pattern patt =
    Pattern.compile("^(?:(@#@.+))$",(Pattern.COMMENTS));[/
    code]So why, based on reading the Javadoc, would you expect this RE to compile? Everything after the # is treated as comment so your effective regular expression is "^(?:(@" which is obviously an invalid RE!
    with same exception as above.
    Is there a problem with the Flag Pattern.COMMENTSNo! RTFD.

  • Anyone else having problems with group messages in iOS 7?

    Upgrade to iOS7 went fine. Everything worked smoothly up until about 6:30pm Central time. Can't send/receive group messages in iMessage. Anyone else?
    Not sure if this is a problem with my phone or iMessage.

    It has failed to work on two of my iOS devices. I am using air 2.6.
    This is my code:
    Bookmark = SharedObject.getLocal("bookmarkData", "/");
    if (Bookmark.data == undefined){
         Bookmark.data['lessonIndex'] = 0;
    lessonIndex = Bookmark.data['lessonIndex'];
    LessonIndex is always 0 at the start of the program. This is a product killing problem. If I cannot resolve this 3 years of work has just been flushed down the toilet.

  • Problems with GROUP BY - not a GROUP BY expression

    Hello,
    I am fighting little bit with GROUP BY expression.
    After some tests I am able to reduce the problem to following...
    When can I use column numbers in GROUP BY expression?
    Consider this situation:
    CREATE TABLE EMP4 (
       NAME VARCHAR2(10)
    COMMIT;
    INSERT INTO EMP4 VALUES('Tamara');
    INSERT INTO EMP4 VALUES('John');
    INSERT INTO EMP4 VALUES('Joseph');
    COMMIT;
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY 1;
    00979. 00000 -  "not a GROUP BY expression"
    -- This is working
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY NAME;Why is the GROUP BY 1 not workig?
    I am using the GROUP BY 1 because in real query there is some PL/SQL function which somehow modifies the column NAME, so I can't use the column name
    SELECT TEST_PACKAGE.AppendSomeCharacter(NAME), COUNT(*)
    FROM EMP4
    GROUP BY 1;Of course I can nest the query and move the COUNT and GROUP BY to outer query or maybe something else, but I was just curious why is the GROUP BY not working...
    Also in real query, there are 3 columns in the GROUP BY expression, so I have there GROUP BY 1, 2, 3
    Thanks for help

    hai
    try the following
    CREATE TABLE TBL(ID NUMBER,VAL VARCHAR(20));
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    CREATE TYPE SAMPLETYPE AS OBJECT ( ID NUMBER, NAME
    VARCHAR2(25) ) ;
    CREATE TYPE SAMPETBLTYPE AS TABLE OF SAMPLETYPE;
    CREATE OR REPLACE FUNCTION SAMPLEFUNC
    p_colname varchar2
    )return SAMPETBLTYPE pipelined as
    ret_val SAMPLETYPE;
    TYPE cursor_ref IS REF CURSOR;
    fcur cursor_ref;
    di TBL%ROWTYPE;
    sqlstr varchar2(1000);
    colname varchar(30):=p_colname;
    begin
    sqlstr:='SELECT * FROM TBL ORDER BY '|| colname ;
    DBMS_OUTPUT.PUT_LINE(sqlstr);
    open fcur FOR sqlstr;
    loop
    FETCH fcur INTO di;
    EXIT WHEN fcur%NOTFOUND;
    ret_val:=SAMPLETYPE(di.ID,di.VAL);
    PIPE ROW(ret_val);
    end loop;
    close fcur;
    return;
    end;     
    select * from table(SAMPLEFUNC('ID'));
    select * from table(SAMPLEFUNC('VAL'));

  • Problem with Group Currency

    I looking for help!!
    We do a initial loading of financial postings with LSMW. We had a big problem!!
    The postings were made without the amount at the group currency.
    Now we show it at the reports of Controlling, too late for change the postings.
    We need a solution for change this without do a new posting. Someone can help us?
    The values at the local currency ARS are correct, we have just the problem with the group currency EUR.

    IF the posting were made with out group currency, There is no way you will get the group currency. What you need to do is just load the balances in group currency using the tcode FBB1 and leave document and local currency fields zero.
    Assign points if helpful

  • Has Yosemite fixed Maverick's Mail problem with Group email addresses?

    Does anyone know if Yosemite has fixed the problem that Maverick's Mail program had with Contacts? Maverick's Mail program cannot show Group Address names in the email "To:" window. By default, it shows all of the email addresses in a Group rather than the Group name. The work-around requires putting Group Addresses in the "Bcc:" window. Has that problem been fixed in Yosemite?
    Many thanks,
    Bob Winckler

    Hi Barney,
    Just found out that Maverick's problem with Mail's Group address procedure has resulted in my email accounts being put on hold by my Internet Provider. I'm the president of a local club, and I routinely send out emails to 200+ email addresses several times a month. Since Maverick's Mail now doesn't keep Group addresses hidden when shown in the email "To:" window, we have to put those Group addresses into the "Bcc:" window.  The first couple of times that I did that, the emails went through, but the third time that I tried to send out such an email, my Internet Provider shut down my email account with the statement "Your ability to send new mail has been suspended as a high volume of suspicious mail has been sent from your account recently. Please contact your IT administrator."  The IT administrator required me to run a virus check and then set a new password for my account before they would reactivate it. In my discussions with several of my Internet Provideer's tech reps, it appears that the way the way that the Internet Provider has their server's security system set, a high volume of email addresses in the "Bcc:" section of emails is enough to shut down an account as suspicious. Until Apple gets this problem fixed, my only options are to switch internet providers (after finding one that will let high volumes of "Bcc:" go through) or switch to an older Mac operating system, which I've done (now using an ancient iMac 400DV running Tiger (OS 10.4.11).  Given the high number of businesses, etc., likely to be using Macs, I'm really surprised that Apple has let this problem with Maverick's Mail program go uncorrected.
    Best regards,
    Bob W

  • Problem with Groups from Address Book in Apple Mail

    I have set up a group in my address book. When I use Apple Mail I use this group to send specific messages to. But for some reason I keep getting error messages saying that my outgoing sever encountered a problem with the messgae. It only happens when I send messages with a group, not if I send messages to single recipients. The group consists of 90 emails, so I can't enter their emails each time I want to send a message to the group.
    Thanks in advance,
    Regards

    I am having a similar problem. All the addresses are correct, and I know this because I use them all the time with no errors. BUT when bundled into a group - actually any group I set up I cannot send successfully. I have two groups in my mail program and neither will work.

  • Has Yosemite corrected Mavericks' Mail/Contacts problem with Groups?

    After I switched from Snow Leopard to Mavericks, I found that I could no longer list a Contact Group name in the To block of an email without all of the addresses in the group showing, despite having Mail Preferences set so that all of the addresses wouldn't show. The work-around for this problem is having to put Contact Group names in the Blind Copy section of an email. Does anyone know if Yosemite has corrected this problem?
    Thanks,
    Bob W.

    Thanks Barney. I assumed that Yosemite hadn't corrected the problem.
    However, I'm not sure where you got the information that the "BCC" section on Mail email forms was designed to be used for "Group" addresses from Mac's Address Book (now Contacts).  The "BCC" section of the email form was designed to be used by email composers who wanted copies of their emails to go to addresses that they wanted to keep hidden from those whose addresses appeared in the "To" section of the email.
    The "Group" address feature in Contacts were created to allow email senders the option to send emails to large numbers of addressees that had something in common (such as a group of relatives of the sender, or in my case, members of a club), so that you didn't have to type in large numbers of addresses in the "To" window every time you wanted to send to such a group. At the same time, it kept the addresses hidden from all of those who received the email as well as from spammers.
    Mac also gives (or did give) you the option to have the addresses in the Group in the "To" window to show or not to show. Go to "Preferences-Composing" section in Mail and you'll see that under the "Addressing" heading, you're given the option "When sending to a group, show all member addresses."  Since that option is normally unchecked, the default is to not have the addresses show. Unless you opt to allow the addresses to show, only the name that you've given the Group shows in the "To" window of the email. 
    If the Group addresses in Contacts were designed to be placed in the "BCC" section of an email, there would be no purpose in having that Preference option available in Mail Preferences.  The problem with having to use the "BCC" section of the email for Group addresses is that many email server companies assume that high numbers of addresses showing in the "BCC" section of an email is an indicator that the email is coming from a spammer, so the use of "BCC" for large numbers of email addresses can cause problems. The use of "Group" address names in the "To" window avoids those problems.

  • Recent Problem with Grouping in P6

    Recently I am having a problem with the grouping activities option in P6, 8.2.  While I used to be able to group with no problem, now when I try to perform a customized grouping, I am not able to get to the grouping bands.  It seems like this is a P6 software bug, not a database bug.  Has anyone seen this problem before and if so, how did you fix it?

    Hi,
    This is a known issue. As a workaround you just need to expand the window. For a solution, please refer to:
    Fields Are Cut Off Or Missing In P6 Dialog Boxes With Incorrect DPI (Doc ID 897035.1)
    ========
    Was our answer helpful?
    If so, highlight the information for other Community members by rating it or marking the answer as correct.
    Just hit the “Correct Answer” link on the answer, or rate it by clicking "Helpful Answer" or "Like".

  • Viewing Excel Files using Tomcat - Problem with caching

    Hi all,
    A small part of an application I'm writing has links to Excel files for users to view/download. I'm currently using Tomcat v5 as the web/app server and have some very simple code (an example is shown below) which calls the excel file.
    <%@ page contentType = "application/vnd.ms-excel" %>
    <%
    response.setHeader("Pragma", "no-cache");
    response.setHeader("Cache-Control", "no-cache");
    response.setDateHeader("Expires", 0);
    response.sendRedirect("file1.xls");
    %>
    This all works except but I'm having one big problem.
    The xls file (file1.xls) is updated via a share on the server so each month, the xls file is overwritten with the same name but with different contents. I'm finding that when an update is made to the xls file and the user then attempts to view the new file in the browser they recieve only the old xls file. It's caching the xls file and I don't want it to. How can I fix this so that it automatically gives the user the new updated file.
    The only way I've managed to get Tomcat to do this is to delete the work directory and delete the file from my IE temp folder and then restart Tomcat - this is a bit much!
    Any help would be greatly appreciated.
    Thanks.

    I'd a problem with caching a few years back, for a servlet request which returned an SVG file.
    As a workaround, I ended up putting appending "#" and a timestamp / random number after it. The browser assuming each request was new, and didn't use the cache.
    Eg.
    http://myserver/returnSVG.do#1234567
    where 1234567 is a timestamp / random.
    Not sure whether you can do this on a file based URL... but maybe worth a shot...
    regards,
    Owen

  • Excel 2003 problem with group policy

    When I manually install EMET Excel 2003 works. When Emet is installed via Group Policy Excel 2003 fails to open. Excel 2010 works whether EMET is installed locally or with Group Policy. Any ideas?

    I would try exporting the policy on both installs using emet_conf --export and comparing the 2 policies
    GBS Premier Field Engineer Cybersecurity Check out my blog http://blogs.technet.com/kfalde or better yet check out http://technet.com/wiki and start contributing :)

  • Reinstallation for IOS skype. problems with groups and contacts

    I was having a problem with Skype on my Iphone; new messages wouldn't load, and if they did it was around 10 minutes after they sent them. So I uninstalled the app and then reinstalled it. As soon as I logged into my account I realized most of my contacts didn't have a profile picture, nor did it have our conversations. It also got rid of all my skype groups; I still got notifications for those groups, but if I clicked on them it would bring me to a page saying that it's an empty group. Also if I get on skype on my laptop everything is fine, I still have my groups, my contacts all have pictures and our conversations are still there. I tried to reinstall it on my phone again, but this time all my groups were still gone, but different contacts wern't complete. Because I still had the contacts I tried to send a message on of my contacts that didn't have a profile picture and although it said it sent, I never got a reply. So I got on my laptop and asked if he got it, and he said he didn't.  Is anyone else haing this problem? If so do you know how to fix it? Thank you

    Ok I just talked to support via chat and apparently this is a known iPhone mobile App issue.  This is exactly what he said to me: "I was informed that this issue already have a ticket to our engineers and they are already working on this one. This has something to do with the latest version of Skype for tablets and mobiles.  We may release another version of Skype app so once an update is avaialble, update the app on your phone ASAP." Hope this ease some frustration.

Maybe you are looking for

  • SAP Crystal report on Windows Server 2012

    Hi, Let me explain my situation first. I have Windows7 dev box with VS 2010, 2012 and 2013. My application backend is Oracle 10g. I have an old application build in VS 2005 which I migrated to Framework 4.0 from 2.0. I downloaded CR executable from "

  • How can we stop jre 7 from blowing us all out of the water?

    I would like to put forth a issue that greatly concerns me which is java 7. In recent times, some browsers have summarily decided that they only allow calls to "current" versions of java. So in Mozilla's mindset, the only current version of java now

  • Page numbers different sizes on different pages

    How do I get the page numbers I added (version 9) to be the same size througout the document?  My document has different font sizes throughout and there are a few pages where the page number gets real small.  How Do I keep the page numbers the same s

  • Hi, the Airplay icon is not appearing on itunes.

    Hi, I have speakers correctly on my wifi network, working properly via Airplay with Ipad and ipod and other PC. The PC I wish to use is on the same network, getting wifi etc but not showing the icon.  It did briefly and then went away. So, I am ssure

  • Program to upload contract price changes to inforecord

    Hi Friends, Is there any standard program available to update changes in contract price to info record I know if you put info update indicator in contract system will update provided you have EVO parameter set in id But i would like to know if we can