RecordStore within choicegroup

how to make a RecordStore within choicegroup?
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.rms.*;
import java.io.*;
public class RMSDemo extends MIDlet implements CommandListener {
private Display display;
private RecordStore rs=null;
private Command exit,add,delete, show;
private RecordEnumeration re;
private int recordNO;
Form frm;
int index=0;
public RMSDemo() {
display = Display.getDisplay(this);
//Create a RMS
try {
rs= RecordStore.openRecordStore("myRecord",false);
rs.closeRecordStore();
} catch(Exception e) {
System.out.println(e);
public void startApp() {
frm=new Form("RMSDemo");
exit= new Command("Exit",Command.EXIT,1);
frm.addCommand(exit);
add= new Command("Add",Command.SCREN,1);
frm.addCommand(add);
delete= new Command("Delete",Command.SCREEN,2);
frm.addCommand(delete);
show= new Command("SHOW",Command.SCREEN ,3);
frm.addCommand(show);
frm.setCommandListener(this);
frm.append("#####");
display.setCurrent(frm);
public void pauseApp() {
public void destroyApp(boolean un) {
// Handling commands
public void commandAction(Command cmd,Displayable d) {
if(cmd==add) {
addRecord();
} else
if(cmd==delete) {
removeRecord();
} else
if(cmd==show) {
try {
byte b[]= rs.getRecord(recordNO);
String s= new String(b);
frm.append(s);
cg_sexo = new ChoiceGroup("Sexo.: ",ChoiceGroup.POPUP,s,null);
} catch(Exception e) {}
void addRecord() {
try {
rs= RecordStore.openRecordStore("myRecord",false);
index++;
byte b[]=("Record NO "+index).getBytes();
//Adding record to record store
rs.addRecord(b,0,b.length);
rs.closeRecordStore() ;
} catch(Exception e) {
System.out.println(e);
// Deleting a record
void removeRecord(int recordID) {
try {
rs= RecordStore.openRecordStore("myRecord",false);
rs.deleteRecord(recordID);
index--;
rs.closeRecordStore();
} catch(Exception e) {
System.out.println(e);
Edited by: 876788 on 05-oct-2011 21:37

Hi, first of all, I'd like to recommend you a package called Floggy instead of working with RMS directly, they also have great support on their forums.
Secondly, why not simply create a new class and implement Persistable (if you'll choose Floggy later)?

Similar Messages

  • Mp3 and RecordStore Capable Emulator

    Currently I'm trying to develop an application that plays back mp3's. I am just wondering if there exists an emulator that can handle both, record sets and mp3 playback.
    WTK22 does a good job of handling recorcStores, but can not handle Mp3 playback.
    I did find a motorola emulator that handled mp3 playback, unfortunately it crashes as soon as I try and load information into the recordStore.
    If anyone knows of one, perhaps they could pass along the name, or even a link.
    Another question I do have about WTK22 is, is there any way of increasing the recordStore size, or is it stuck at 1MB . . . and what is the average size of a record store on a new phone these days?

    I wasn't sure what is RecordStore but apparently it is MIDP's way of persisting data.
    As it shows, I have little knowledge of JavaME, so I don't know if that's a problem with the emulator or the usage of RecordStore within JavaFX or something else.
    Now, perhaps you can use the [javafx.io.Storage|http://java.sun.com/javafx/1.2/docs/api/javafx.io/javafx.io.Storage.html] class for persisting data, it is designed to work both in JavaME and on desktop.
    It might offer less features than RecordStore, though.

  • Javafx and RecordStore problem

    Hi,
    I am creating a contact management mobile app with javafx, and I am using a RecordStore to store the data. As long as the emulator is open I have verified that the records are being added to the recordstore.
    However when I close the emulator and re start the app, the recordstore disappears, and it recreates the store (it says it has 0 records).
    I am using netbeans, and using the mobile profile.
    Any help will be highly appreciated...
    thanks in advance

    I wasn't sure what is RecordStore but apparently it is MIDP's way of persisting data.
    As it shows, I have little knowledge of JavaME, so I don't know if that's a problem with the emulator or the usage of RecordStore within JavaFX or something else.
    Now, perhaps you can use the [javafx.io.Storage|http://java.sun.com/javafx/1.2/docs/api/javafx.io/javafx.io.Storage.html] class for persisting data, it is designed to work both in JavaME and on desktop.
    It might offer less features than RecordStore, though.

  • Calling another midlets mehtod within the same suite

    i hope this is the right board...
    hi all,
    i have a midlet suite containing two midlets and i want to call methods from one midlet within the other midlet. its more than just sharing data (for that i already use the recordstore) so i really must call the method.
    how can i do this?
    simply creating a new instance or calling a static method didn't work here...
    tia
    mmkl

    hi,
    i'am also not so familiar with the pushregistry, but i already tried different samples...
    as far as i know (and tested) the midlet that later is responsible for 'listen' to incomming connections must register itself (or beeing registered in the jad-file, but static registrations is not able to react on already used ports).
    the fact why i'm using two midlets is because my application must connect itself to a servlet and this must be done in a thread seperated from the commandlistener thread. another issue is, that an incoming connection starts the midlet automaticaly.
    my application is primary designed for blackberry's and there the incomming connection forces the midlets display to be shown on the desktop, because of that i need a single midlet for the ui and one for the incomming and outgoing connections without an ui.
    ok, this is the application background, now back to the exception ;)
    i debuged the application as far as possible and the exception occures at
    ListenAndStore listenAndStore = new ListenAndStore();and with stepwise debuging this creation of the second midlet calls
    javax.microedition.lcdui.Displayand within this class, at line 2000 i guess, the exception is raised. i don't konw why this class iss called becaus my second midlet extens only midlet an implements no interface.
    i read somwhere, that every midlet has his own display, but i don't read or know why this should be a security problem :(
    mmkl

  • RecordStore, how to?

    I'm having trouble saving settings and stuff for my program. I tried using the class that Jimm (ICQ client) uses until I've learned more. It seems really nice, also works great, except that values aren't saved (or loaded!) sometimes.
    I have no idea what might be wrong and there's TONS of code so posting won't be a good idea right now, I'm afraid.
    Therefore, does anyone have a nice guide or anything on how to use recordstore? I'd like it to work like the windows registry, for instance, in other words, every entry has a name and a value. Recordstores doesn't appear to work like that, or do they?

    Yup, that did help some, thanks.
    However, I can't get my new code to work properly, and actually I can't figure out if the error is in load(), save() or both...
    Anyway, it doesn't save/load properly.
    If I try to store the int 1, the int 2, and the string "3" in that order, the result will come out 1, 1, and <empty string> when I load it later on.
    "Some" code, I'd be very thankful for some helpful ideas.
    import javax.microedition.lcdui.*;
    import java.io.*;
    import javax.microedition.io.*;
    import javax.microedition.rms.RecordStore;
    import javax.microedition.rms.RecordStoreException;
    public class Options implements CommandListener
         public static String sCurrencyList[] = {"Euro, EUR", "USA, USD", "Great Britain, GBP", "Schweiz, CHF", "Denmark, DKK", "Norway, NOK", "Iceland, ISK", "Japan, JPY", "Canada, CAD", "Australia, AUD", "Cyprus, CYP", "Hong kong, HKD", "New Zeeland, NZD", "Singapore, SGD", "S. Africa, ZAR", "Thailand, THB", "Czech Rep., CZK", "Sweden, SEK"};
         public Form optionsForm;
         private Command saveCommand, backCommand;
         private TextField tExchangeRate;
         private ChoiceGroup cgMyCurrency;
         private ChoiceGroup cgForeignCurrency;
         public int MY_CURRENCY = 0;
         public int FOREIGN_CURRENCY = 1;
         public String EXCHANGERATE;
         // Constructor
         public Options()
              try
                   RecordStore rs = RecordStore.openRecordStore("opt", true);
                   if (rs.getNextRecordID() == 1)
                        System.out.println("DB not found, setting up...");
                        rs.addRecord(null,0,0); // ID 1 = my currency (int)
                        rs.addRecord(null,0,0); // ID 2 = foreign currency (int)
                        rs.addRecord(null,0,0); // ID 3 = exchange rate (string)
                        byte[] buf;
                        ByteArrayOutputStream baos = new ByteArrayOutputStream();
                        DataOutputStream dos = new DataOutputStream(baos);
                        dos.writeInt(17);
                        buf = baos.toByteArray();
                        rs.setRecord(1, buf, 0, buf.length);
                        dos.writeInt(1);
                        buf = baos.toByteArray();
                        rs.setRecord(2, buf, 0, buf.length);
                        dos.writeUTF("7.35");
                        buf = baos.toByteArray();
                        rs.setRecord(3, buf, 0, buf.length);
                        // Set default options, now that the record store has been created
                        this.MY_CURRENCY = 17;
                        this.FOREIGN_CURRENCY = 1;
                        this.EXCHANGERATE = "7.35";
                   else // Database already existed, read the info
                        System.out.println("DB found, reading info");
                        byte [] buf;
                        ByteArrayInputStream bas;
                        DataInputStream dis;
                        buf = rs.getRecord(1);
                        bas = new ByteArrayInputStream(buf);
                        dis = new DataInputStream(bas);
                        this.MY_CURRENCY = dis.readInt();
                        System.out.println ("Read MY_CURRENCY: " + this.MY_CURRENCY);
                        buf = rs.getRecord(2);
                        bas = new ByteArrayInputStream(buf);
                        dis = new DataInputStream(bas);
                        this.FOREIGN_CURRENCY = dis.readInt();
                        System.out.println ("Read FOREIGN_CURRENCY: " + this.FOREIGN_CURRENCY);
                        buf = rs.getRecord(3);
                        bas = new ByteArrayInputStream(buf);
                        dis = new DataInputStream(bas);
                        this.EXCHANGERATE = dis.readUTF();
                        System.out.println ("Read EXCHANGERATE: " + this.EXCHANGERATE);
                   rs.closeRecordStore();
              catch (Exception e)
                   System.out.println("An Exception occurred while reading/creating the DB." + e.toString());
                   // Ignore, for now...
         public void show()
              System.out.println("show() invoked");
              saveCommand = new Command("Save", Command.SCREEN, 1);
              backCommand = new Command("Back", Command.BACK, 1);
              optionsForm = new Form("Options");
              Image[] imageArray = null;
              cgMyCurrency = new ChoiceGroup("My currency", Choice.POPUP, sCurrencyList, imageArray);
              cgForeignCurrency = new ChoiceGroup("Foreign currency", Choice.POPUP, sCurrencyList, imageArray);
              tExchangeRate = new TextField("Exchange rate", "", 15, TextField.DECIMAL);
              cgMyCurrency.setSelectedIndex(this.MY_CURRENCY, true);
              cgForeignCurrency.setSelectedIndex(this.FOREIGN_CURRENCY, true);
              tExchangeRate.setString(this.EXCHANGERATE);          
              optionsForm.append(cgMyCurrency);
              optionsForm.append(cgForeignCurrency);
              optionsForm.append(tExchangeRate);
              optionsForm.addCommand(backCommand);
              optionsForm.addCommand(saveCommand);
              optionsForm.setCommandListener(this);
              OptMain.display.setCurrent(optionsForm);
         public void save()
              System.out.println("save() invoked");
              try
                   this.MY_CURRENCY = cgMyCurrency.getSelectedIndex();
                   this.FOREIGN_CURRENCY = cgForeignCurrency.getSelectedIndex();
                   this.EXCHANGERATE = tExchangeRate.getString();
                   RecordStore rs = RecordStore.openRecordStore("opt", false);
                   byte [] buf;
                   ByteArrayOutputStream bas;
                   DataOutputStream dos;
                   bas = new ByteArrayOutputStream();
                   dos = new DataOutputStream(bas);
                   dos.writeInt(this.MY_CURRENCY);
                   buf = bas.toByteArray();
                   rs.setRecord(1, buf, 0, buf.length);
                   System.out.println ("Wrote MY_CURRENCY: " + this.MY_CURRENCY);
                   dos.writeInt(this.FOREIGN_CURRENCY);
                   buf = bas.toByteArray();
                   rs.setRecord(2, buf, 0, buf.length);
                   System.out.println ("Wrote FOREIGN_CURRENCY: " + this.FOREIGN_CURRENCY);
                   dos.writeUTF(this.EXCHANGERATE);
                   buf = bas.toByteArray();
                   rs.setRecord(3, buf, 0, buf.length);
                   System.out.println ("Wrote EXCHANGERATE: " + this.EXCHANGERATE);
                   rs.closeRecordStore();
              catch (Exception e)
                   System.out.println("An Exception occured in save(): " + e.toString());
         public void commandAction (Command c, Displayable d)
              if (c == saveCommand)
                   System.out.println("Received saveCommand");
                   this.save();
                   OptMain.display.setCurrent(OptMain.mainMenu);
              else if (c == backCommand)
                   System.out.println("Received backCommand");
                   OptMain.display.setCurrent(OptMain.mainMenu);
    }I'm guessing there's a better/easier/prettier way to read and write data, no?

  • Cannot send email from within iPhoto

    Using OX X 10.7.5 cannot send email from within iPhoto.  I get this error message: "Your email did not go through because the server did not reply."
    If I change the preference to use email, everything goes fine but I lose the formatting feature.

    iPhoto Menu ->
    Preferences ->
    Accounts ->
    Delete and recreate your email settings.
    Alternatively, use Apple's Mail for the job. It has Templates too - and more of them. Check out the Stationery...

  • AND within IF statement in XML publisher

    Hi All,
    I am in need to use AND condition within an IF statement in rtf template.
    Here is the condition I am using
    <if:../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?>
    My data
    <?end if?>
    This is not working, does anybody know how to achieve this.
    Appreciate your time and help.
    Thanks,
    Ragul

    so you mean to say
    ../../DIST_SHIPMENT_COUNT!=1 AND ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID
    and
    DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID
    conditions are different?
    exactly
    I have always refered to data elements in the RTF without giving any path and it works fine for me. is there anything that I may be missing?
    so you may be have simple case or may be not need to use parent tags logic
    so crazy example
    <ROWSET>
        <G2>
            <DIST_SHIPMENT_COUNT>0</DIST_SHIPMENT_COUNT>
            <ADDRESS_DETAILS>
                <ADDRESS_DETAILS_ROW>
                    <LOCATION_ID>2</LOCATION_ID>
                </ADDRESS_DETAILS_ROW>
            </ADDRESS_DETAILS>
            <G1>
                <ROW>
                    <SOMEROW>some text 1</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
                <ROW>
                    <SOMEROW>some text 2</SOMEROW>
                    <DIST_SHIPMENT_COUNT>1</DIST_SHIPMENT_COUNT>
                    <LOCATION_ID>3</LOCATION_ID>
                    <SHIP_TO_LOCATION_ID>3</SHIP_TO_LOCATION_ID>
                </ROW>
            </G1>
        </G2>
    </ROWSET>
    and
    original condition:
    <?for-each:ROW?><?position()?> and value <?if: ../../DIST_SHIPMENT_COUNT!=1 and ../../ADDRESS_DETAILS/ADDRESS_DETAILS_ROW/LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    your condition:
    <?for-each:ROW?><?position()?> and value <?if: DIST_SHIPMENT_COUNT!=1 and LOCATION_ID!=SHIP_TO_LOCATION_ID?><?SOMEROW?><?end if?><?end for-each?>
    and result as
    original condition:
    1 and value
    some text 1
    2 and value
    some text 2
    your condition:
    1 and value
    2 and value

  • Sum function within if/then/else (xdofx:if)

    I'm attempting to display a total at a particular group within my report. This total is conditional and should choose to display a placeholder value or the sum of another placeholder value (in a child group).
    I have been able to vary my output based on the value I want to check: FIXED_QUOTE_FLAG - I have the if/then/else working in a simplified fashion
    I can display literals and some placeholders correctlly eg. print a literal value of 00110011 or the value of placeholder QUOTED_PRICE
    I can also display a calculated placeholder, using sum within the group I am concerned with: sum (current-group()/ACTIVITY_CHRG)
    But when I try to get everythign working together ...
    I cannot get the sum to work inside the if/then/else condition. The result is NULL (blank in HTML output).
    The following is the snippet which is not working correctly:
    <?xdofx:if FIXED_QUOTE_FLAG = 'Y' then QUOTED_PRICE else sum (current-group()/ACTIVITY_CHRG) end if?>
    Message was edited by:
    gareth_adamson

    To answer you first question, perhaps sum is not a supported function in the xdofx namespace. It's annoying when this problem comes up because xdofx namespace seems to be the only way to do if then else clauses. I'm not entirely certain on the above, but you could resort to using BI Publisher's built-in if statement.
    For your problem, something like this:
    <?if: FIXED_QUOTE_FLAG='Y'?>
    QUOTED_PRICE
    <?end if?>
    <?if: FIXED_QUOTE_FLAG!='Y'?>
    <?sum(current-group()/ACTIVITY_CHRG)?>
    <?end if?>
    EDIT:
    There is a way to do if else without xdofx namespace. It is done with <?choose:?> <?when:?> and <?otherwise:?> tags. Here is example syntax copied from Tim Dexter's blog:
    <?choose:?>
    <?when:count(TRX_NUMBER) > 0?>
    Invoice Table
    <?end when?>
    <?otherwise:?>
    No Data Found
    <?end otherwise?>
    <?end choose?>
    To answer the second question about a running total, you will need to use the <?xdoxslt:set_variable($_XDOCTX,'var_name',var_value)?> and the <?xdoxslt:get_variable($_XDOCTX,'var_name')?>. This method of working with variables is the only method that allows you to update a variable. This makes it good for running totals. Consult the official user guide under "Creating an RTF Template" the section about using variables and calculating running totals.
    So, in your problem, once you get the first part working, you will have to add that value to your running total. It will look something like this:
    <?xdoxslt:set_variable($_XDOCTX,'running_total',xdoxslt:get_variable($_XDOCTX,'running_total') + conditional_value)?>
    Remember to initialize the running total to zero! Hope this helps.
    Thanks,
    Matt Soukup
    Message was edited by:
    Matt Soukup

  • HELP: I need to link a PDF within PDF and be able to open and return to original PDF

    I have a master PDF and have attached 7 supplemental PDF documents. I created "click here" icons and used the steps below so that the linked document would open. The problem is, once I open the supplemental PDF, it closes the original master. I would like to close the linked document and return to the master view. Is there a way to do this?
    Or is there a way to do this from InDesign? I created master file in InDesign and exported as an Interactive PDF.  I created the buttons and linked them to external files. This works great as long as the master PDF and the links are all in one file, but that is a pain to send to a viewer. Ideally, I want to be able to send the master PDF to a viewer and not have to send a links folder. Is there a way to embed the supplemental PDFs into the master so that they are all combined into one file AND have the ability to use buttons to call up one of the attachments, close, and return to the original?
    Thanks in advance!!

    I want to do the same thing that the original poster of this question wants to do. I haven't worked extensively with Acrobat so am finding by trial and error the several ways PDFs within PDFs can be accomplished. I'm using a trial version of Acrobat Pro X and have experimented with three options.
    1 - I've created a Portfolio and am impressed with what that can do, though I think it may be "overkill" for the current size of my project.
    2 - I've also tried creating this project as an index but discovered that the links I'd created in the original docs didn't work when I moved the index and its contents (keeping the file structure the same). I presume this means the links are absolute? I also don't understand how it is that users search a .pdx file, or how to present what I want to be the original opening PDF of indexed docs.
    3 - I've also thought to create one PDF with attached PDFs, so I'd like to have you expand on your comment about creating a master document and attaching documents to it.
    The specifics of my project are these: I have created a master directory that contains approximately 120 links. Most of the links are repeated three times (users can find in the directory the item they need in three different ways: alphabetically, by application, or by module; hence each item listed once in each of three categories). I want to make that directory the "master" PDF that users open first, and then locate within that PDF the 5-8 PDF documents that contain all of the places to which the directory links. I want the "master" directory to be self-contained and completely "portable" as far as all of the documents and links are concerned so that when I make the PDF available from our website users can open the master from there or copy it and have all of the docs they need with all of the links intact. I think I prefer that all docs open in new windows, since returning to the original doesn't seem very user friendly in Acrobat (I like the tabs feature in FoxIt when multiple PDFs are open...).
    I'd like an opinion about the best way to accomplish what I need to do, and am also wondering whether there are other options I am unaware of. BTW, the reason we've decided to document this whole project in PDFs rather than HTML is because this project contains a big number of tables, which do not look consistent across various browsers (i.e., most of our tables look fine in IE and Firefox, but awful in Google Chrome...). In researching my issue on the Acrobat Windows forum I see that rendering tables in Acrobat is also an issue that seems to be unresolved.
    Thank you!

  • How to open a popup win within a PDF file (c:\test.pdf) as Column Link

    I have a interactive report based on a Table (EMP). I need to create a column link that opens a pdf file within the employee curricula
    All the curriculum are stored in a windows folder, and in the EMP table there is a field named PATH containing the full path name.
    Thxs,
    Giuseppe.

    Hello, Sebastian
    I've tested your suggestion and in effect it works.
    I think is good solution if the files are readonly (pdf, images, etc).
    In my case the files are updatable by the end user.
    Consider that I'm using the following configuration:
    APEX 4.0, DB 11.2.0.1 and EPG
    This means that:
    a. All the files need to be loaded in the XML_DB via PL/SQL or via WebDAV (let's say in... /i/mydocs)
    b. When the end user opens the file via the "Column link" this is read-only in the browser, to modify it, the end user need to save updated version in (/i/mydocs), replacing the existing ones, .. and this is a bit complicated .
    Any other suggestion will be appreciate.
    Regards,
    Giuseppe.

  • Open vi within vi and close the the last one

    Hi all
    I've searched the solution to my problem, but didn't find.
    Short brief:
    I have a VI that uses for authorization, then if all O.K it should open other VI("code-vi") and run it and close itself. 
    I saw that some people recommended , that it can be done by just putting the "code-vi" in the right place, but when I'm following this method , the authorization VI can't be closed. 
    the other method I tried is to put a sequence where the first stage is opening the "code-vi" with  "vi server ref" and the second stage is close this VI also with "vi server ref". with this method i'm facing two problems , the first is the fact that all the vi's are within a project , and I want that the "path refernce" would be generic - I can put the folder that holdes all the files in any PC and it would run without redirecting the path. 
    The second problem is that I can't find the way to automaticaly run the "code-vi" when it invoked. 
    which files should I attach if i'm using project ? 
    Solved!
    Go to Solution.

    UdiWeiss wrote:
    so from your answer I can't configure it as for a VI that it is not in project -> VI properties , execution. 
    I'm not sure what you are trying to say here.  The "Run When Opened" property for the VI doesn't care how the VI was opened, just that it was opened.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to use multiple profiles within the same instance of Thunderbird

    About a month ago, I had Thunderbird configured with three profiles,
    and all three could be used within a single startup/instance of
    Thunderbird. That PC is now gone. I have re-configured the three
    profiles on a new PC, but am having trouble making all three
    useable within the same instance of Thunderbird. Can you help?
    Both PCs are/were Windows-7 64 bit.

    Thunderbird only opens on the default if one profile
    or
    if Profile Manager is instructed to ask at startup it will allow you to choose which Profile to open else it opens on the last Profile used..
    So it shows one Profile at a time in one instance of Thunderbird.
    However, one Profile can have many mail accounts.
    eg: I run 4 mail accounts in one Profile.

  • How do I use a frameset to another website within my iweb site?

    I am trying to figure out how to use frameset to view my online booking site within my site that I have created on iWeb. right now I just refer to a link but I would like to be abel to use the frameset to do it. I do have this code but not sure what to do with it.
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title>Online Appointment Book</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <style type="text/css">
    <!--
    body {
    margin: 0px;
    padding: 0px;
    -->
    </style>
    <frameset rows="90,*" cols="*" border="0">
    <frame src="upperframe.html" name="upperFrame" frameborder="0" scrolling="no">
    <frame src="mainframe.html" name="mainFrame" frameborder="0">
    <noframes>
    <body>
    I would appreciate any advice

    A Frameset is a separate, non-iWeb, webpage with the code you show.
    The upperframe.html and lowerframe.html are urls to whatever page you want to display.
    What you probably want is an <iframe>. You use it to display an external page within an iWeb page.
    The code is :
    <iframe src="http://url.to.file.html" frameborder="0" width="500" height="500" scrolling="no" allowTransparency="true"></iframe>
    You paste the code in the HTML Snippet. You have to change the width and height to reflect your situation.
    Note that an <iframe> is static. It does not change when the page it displays changs in width or height. To scroll set scrolling to yes.
    Sample iWeb page with <iframe> : http://www.wyodor.net/iFrame/

  • Office 2013 - Is there a way to when installing that you can change the default save location without having to configure it within the client?

    So, What I am trying to do is deploy Office 2013 throughout our company, and I do not want the users to save their business or personal files created within Office 2013 on the C: drive or Sky Drive. We have what is called the U: drive and I'd like to know
    if there's a quick registry tweak that I can use to not only change the default location upon setting up a computer, but to deploy through Group Policy? 
    One other question perhaps; Is there a way to change not only the file location to default to only the one place, but also is there a way to also set a specific size limit to folders and prevent certain files from being saved (videos and personal pictures). 
    I have our network pretty tight as to what or who can go where, and what not, I am just really for an answer or some help to the default location...anything you have GREATLY APPRECIATED! 

    You can use the OCT and/or domain Group Policy, to customise the Office experience and settings for your users:
    https://technet.microsoft.com/en-us/library/ee460874.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Can there be a hardware issue on the iPad that causes you to unable to join wifi networks or only if you are within 5 feet of routers?

    I used to be able to connect my iPad to my house wifi network walking all over my house then one day it stopped.  When i tried to connect to my network I would get an message saying "Unable to Join network".  I found that if i was within 5 feet of my router it would connect and work just fine.  At the same time I tried it at multiple other networks that I have before (girlfriends and other friends houses) and could not connect with same issue.  Only place I can connect is my work wifi.
    Can connect to wifi with my iPhone with no issues
    I have reset my network connections
    Reset my house router
    Upgraded to iOS6

    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    Try This - Renew IP Address:
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

Maybe you are looking for

  • Multiple documents with the same Name

    We had a problem reported where an xquery to the xml db returned multiple records. Upon reading the full db (getAllDocuments) and printing each document's name we found out that all the documents had the same the same Name!!! We are using 2.3.10 This

  • Proofing language for new mails is always "English UK" though default is German

    I have Office 2013 Professional Plus installed, English version with German language pack. As "Editing Languages" I have configured German and English, with German the default one. Still, when I create a new e-mail and start to type, all the German w

  • Site too small on New Palm Pre and Blackberry Pearl

    I have a site that is pretty simple. It contains no tables accept for forms and input buttons. And isn't overloaded with CSS. It was orginally designed for keypad devices and has a width of 176px. Everything is spaced by either <p> or <br> tags with

  • I need help centering my images.

    Hi, I am very new to DreamWeaver and have been teaching myself for the past week. I am building my own small website for my portoflio and can not figure out how to auto center my website. When I center one image the other images are in the wrong spot

  • Pre-activity before SPDD.

    Hi Experts, I am working for an upgrade project from 4.6C to ECC 6.0. I need some clarifications regarding use of SPDD. im intend to clear certain database before proceed with SPDD using new z program, can i execute this z program before SPDD complet