Simple question......please answer

Hi, i know this is a realy simple or obveous question but i am confused..........
if i get an ariport extreme for my ibook, does that mean i need to buy an airport extreme card from my emac computer? is there anyway i could avoid having to buy something for and or change around my emac's connection?

Depends on how you want to set up your network! I recommend that you buy an inexpensive wireless router like the Linksys WRT54G in addition to your AirPort Extreme card for your iBook (if you have an older iBook, you may need to buy an Original AirPort Card, make sure you check before buying). Your iBook would connect to the Linksys wirelessly, and you would connect your eMac to the router using an ethernet cable.

Similar Messages

  • Few Questions Please answer

    Hi all,
    I have a couple of Questions Please answer
    what is the basic principle inwhich lsmw was developed
    Can we transfer standard text between diffferentclients
    Difference between Session and call transaction
    In domanin we have lower case key. If we check it and enter values the values are not entering in lower case.
    Labels canot be printed in smart forms can we print in scripts
    Routines cannot be written in smart forms we can print in scripts? what are routines.
    which view can be used in Select Statements
    How to add fiends into standard tables apart from Append structures
    I cam to know that in selection screen if we enter value in one field the fields can be filled by its corresponding values . Eg: If we enter material no field then the correspondig values will
    be entered into other select options  Plant and stotrage location.
    If can to know that it is possible through fuction module f4in_table_value_equest. I tried this but iam unable to get the result.
    I saw in search help docmentation that through import and export parameter it is possible.
    when to use upload function module is used and please give example
    if you have 20000 thosand records and if there is a problem in 11000 th record in a standard reprot how to rectify it
    Debugging in smart forms
    what is the use of log data changing check box in technical settings screen of se11
    how to find base table name for fields of a screen usnig sql trace (st05)
    what is the difference between database view and maintenance view
    Please clear my doubt
    Thanks in advance
                                                 Ranjith

    > what is the basic principle inwhich lsmw was
    > developed
    >
    > Can we transfer standard text between
    > diffferentclients
    <b>Run the program RSTXTRAN.</b>
    > Difference between Session and call transaction
    <b>http://www.sap-img.com/abap/interview-question-on-bapi-rfc-abap-objects-tables.htm</b>
    > In domanin we have lower case key. If we check it and
    > enter values the values are not entering in lower
    > case.
    <b>It cannot be that way.</b>
    > Labels canot be printed in smart forms can we print
    > in scripts
    > Routines cannot be written in smart forms we can
    > print in scripts? what are routines.
    <b>Routines are subroutines in which we can write our own code without disturbing the driver program.</b>
    > which view can be used in Select Statements
    <b>Database view.</b>
    > How to add fiends into standard tables apart from
    > Append structures
    >
    > I cam to know that in selection screen if we enter
    > value in one field the fields can be filled by its
    > corresponding values . Eg: If we enter material no
    > field then the correspondig values will
    > be entered into other select options  Plant and
    > stotrage location.
    <b>Use the fm dynp_values_update</b>
    > If can to know that it is possible through fuction
    > module f4in_table_value_equest. I tried this but iam
    > unable to get the result.
    > I saw in search help docmentation that through import
    > and export parameter it is possible.
    >
    > when to use upload function module is used and please
    > give example
    >
    > if you have 20000 thosand records and if there is a
    > problem in 11000 th record in a standard reprot how
    > to rectify it
    >
    > Debugging in smart forms
    <b>Write the statement break-point <your user id> in the command lines.</b>
    > what is the use of log data changing check box in
    > technical settings screen of se11
    <b>Log data changes
    The logging flag defines whether changes to the data records of a table should be logged. If logging is activated, every change (with UPDATE, DELETE) to an existing data record by a user or an application program is recorded in a log table in the database.
    Note: Activating logging slows down accesses that change the table. First of all, a record must be written in the log table for each change. Secondly, many users access this log table in parallel. This could cause lock situations even though the users are working with different application tables.
    Dependencies
    Logging only takes place if parameter rec/client in the system profile is set correctly. Setting the flag on its own does not cause the table changes to be logged.
    The existing logs can be displayed with Transaction Table history (SCU3).</b>
    > how to find base table name for fields of a screen
    > usnig sql trace (st05)
    <b>Go to st05.
    Start trace.
    Run the required program.
    Deactivate the trace.</b>
    > what is the difference between database view and
    > maintenance view
    >
    >
    > Please clear my doubt
    > Thanks in advance

    >                                              Ranjith

  • A simple question please help.

    Hi
    I have 2 textfields and a button. I want to input a number( diameter) in the first textfield  ( inputField) and by clicking on the button (myButton), I want to get the result (circonference) in the second textfield ( inputField1). diameter*3.14. I know it is a simple question, but it comes from a very simple mind. So have mercy on me.
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.text.TextFormatAlign;
    import flash.events.MouseEvent;
    var inputField:TextField = new TextField();
    var myFormat:TextFormat = new TextFormat();
    myFormat.size = 44;
    inputField.defaultTextFormat = myFormat;
    inputField.restrict = "0-9";
    inputField.maxChars = 6;
    inputField.multiline = false;
    inputField.textColor = 0x000000;
    inputField.border = true;
    inputField.width = 150;
    inputField.height = 50;
    inputField.x = 75;
    inputField.y = 50;
    inputField.borderColor = 0xFF0000;
    inputField.type = "input";
    addChild(inputField);
    var inputField1:TextField = new TextField();
    var myFormat1:TextFormat = new TextFormat();
    myFormat1.size = 44;
    inputField1.defaultTextFormat = myFormat;
    inputField1.maxChars = 1;
    inputField1.multiline = false;
    inputField1.textColor = 0x000000;
    inputField1.border = true;
    inputField1.width = 150;
    inputField1.height = 50;
    inputField1.x = 275;
    inputField1.y = 50;
    inputField1.borderColor = 0xFF0000;
    addChild(inputField1);
    myButton.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_2);
    function fl_MouseClickHandler_2(event:MouseEvent):void
       trace("Mouse clicked");

    use:
    import flash.display.Sprite;
    import flash.text.TextField;
    import flash.text.TextFieldAutoSize;
    import flash.text.TextFormat;
    import flash.text.TextFormatAlign;
    import flash.events.MouseEvent;
    var inputField:TextField = new TextField();
    var myFormat:TextFormat = new TextFormat();
    myFormat.size = 44;
    inputField.defaultTextFormat = myFormat;
    inputField.restrict = "0-9";
    inputField.maxChars = 6;
    inputField.multiline = false;
    inputField.textColor = 0x000000;
    inputField.border = true;
    inputField.width = 150;
    inputField.height = 50;
    inputField.x = 75;
    inputField.y = 50;
    inputField.borderColor = 0xFF0000;
    inputField.type = "input";
    addChild(inputField);
    var inputField1:TextField = new TextField();
    var myFormat1:TextFormat = new TextFormat();
    myFormat1.size = 44;
    inputField1.defaultTextFormat = myFormat;
    inputField1.maxChars = 1;
    inputField1.multiline = false;
    inputField1.textColor = 0x000000;
    inputField1.border = true;
    inputField1.width = 150;
    inputField1.height = 50;
    inputField1.x = 275;
    inputField1.y = 50;
    inputField1.borderColor = 0xFF0000;
    addChild(inputField1);
    myButton.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler_2);
    function fl_MouseClickHandler_2(event:MouseEvent):void
    inputField1.text=String(Math.PI*Number(inputField.text));

  • I'm confused answer this simple question please...

    I have askew at least 10 people on here "when you get BT Infinity will they install a phone line for free?" And everyone has said yes is this true? Because I signed up today and they said a extension is free but and phone line isn't or is she wrong?

    If you have no BT line whatsoever a phone line would be installed free with an 18 month contract. If you have an existing BT line then BT would put infinity on that line.
    You could have BT set up a free new line for infinity and keep your existing line as well. But that would be strange as it would mean your paying for line rental twice.
    So best to ask BT to put infinity on your existing line. They won't provide an extension, but they can provide a long Ethernet cable if you want the hub in another room

  • Simple Question, need answer please!

    Hi,
    I've simply forgotten how to select part of a track in Garageband?
    I've imported a 4 minute track and need to select 30 seconds of it in the middle somewhere. I done it yesterday, it highlighted smaller yellow boxes along the top of the track but i cannot get it to show this time!
    Answer appreciated!

    Don't worry, I found it!

  • Help with Forte: very simple question, please help!

    I recently downloaded the community version of Forte (Sun One) but can't seem to get any new empty class programs to execute properly. I know something is probably not set up right, which is why I really need a little help to get started. Regardless of the code I try to execute, the output error is always:
    "java.lang.NoClassDefFoundError: (name of program)
    Exception in thread "main" "
    Please let me know what I'm not doing right. I would really appreciate anybody's thoughts on this problem because I would love to get Forte working so I can start learning Java. Thanks for your input!

    I would tell you that Forte is not a tool for the beginner. you should look at something simpler. Forte is a fully integrated development environment. I would look at a simple editor like emacs, available at gnu.org. The commands of this editor are quite difficult to get use to.
    As for setting the class varialbe. It depends on the O/s that you are using. win98/me is different than NT/xp. Need to know one or the other before explaining.
    email me if you have question. email address is in my profile.

  • Some Question Please answer I am a beginner

    Hello Friends
    I have some question
    1. what is the difference between forms and report
    2. what is the difference between simple report and xml publisher report
    3. what are the types of Database Types in Oracle
    4. what are the types of SQL Loader
    In Advance Thanks

    1) Oracle form: acts like an user interface between data base and user input. User can Query the data and view the under lying data.Basically Oracle forms are front end tools for user interaction and application setup.
    Oracle Report: is the reporting component in EBS, where in when the user gets the data based on the parameters provided.
    refer to the developer Guides for more information.
    http://www.oracle.com/technetwork/developer-tools/forms/index.html
    2) template will be used in the XML publisher which can be developed by a RTF file, and registration of the report in EBS has a separate process. Check the below link for more information
    http://docs.oracle.com/cd/B34956_01/current/acrobat/120xdoig.pdf
    3) Oracle data types are similar like other languages, these are used for handling the data.There are several built-in data types, check the below link.
    http://docs.oracle.com/cd/B28359_01/server.111/b28318/datatype.htm
    4) SQL loader is basically used to load the data from flat file to data base table by using a control file. Please go through the below link for more information and concepts.
    http://docs.oracle.com/cd/B19306_01/server.102/b14215/ldr_concepts.htm
    Regards,
    -

  • Simple Question Please URGENT

    Hello All,
    I'm having a little problem in witting an SQL statement.
    I'm sure there is a simple solution for it but its just not clicking with me!.
    Anywayz,
    I'm trying to write a statement that in the FROM clause, there is a formula, and i would like to assign conditions to this formula in the WHERE Clause
    Ex:
    SELECT DateValue(FLD_AS_STRING) FROM Table1 WHERE ???
    I want the statement to convert the FLD_AS_STRING field (which is in string format) to Date format, and in the same time i want to only view fields that it's FLD_AS_STRING is greater than today's date (after it is converted to Date)?
    How can i do that in this statement?
    Thanks in advance,
    Best Regards

    who do you mean "we"?Forum members that are quite fed up with people declaring their matters (more) urgent then other people's questions. I'm also one of them.
    I just wanted to grab people's attention for helpA simple thread with an appropriate subject line that describes the problem in short and a message that includes enough information to develop a solution for said problem would suffice.
    in the same time, it IS urgent, because my work is
    based on the solution for this issue...So what about everybody's else work? Not as important as your task?
    BTW, i dont see how rude that could be, could you plz
    explain!?Just imagine if everyone that wants to grab attention in this forums uses urgent in the subject line. Do you really consider that the way to go?
    C.

  • 1020/WP questions, please answer!

    Hi,
    Im thinking of buying a Lumia 1020, even though its ugly as he** and 0,5 inch too big. I wished it was in the same shell as my old 808 PureView which fit in ONE hand and no sharp corners which makes my hand bleed after sms´ing alot.... Whatta great phone that 808 PureView was btw! Also battery could be removed...
    Here is my BIG question!
    Can I have multiple Hotmail emails accounts active in my 1020 phone and does all accounts support IMAP so all personal folders and EVERYTHING are downloaded into my phone, not just the basic folders and first 25 or 50 mails? This worked on the N8 and my 808 for a couple of years and all folders were constantly synced in real time until Nokia did some secret change which only allowed 15min, 30 min sync and only basic folders were updated, not even read mails were indicated as read but as new until I read the min the phone too.
    And Im NOT talking about ExchangeAutoSync now...which for some reason only can handle one account(!?)
    There are smaller Lumias but sadly Nokia ofcoarse make everything else smaller too, like the camera which is the big reason I wanna buy the 1020...and for the WP system which give me access to things on the internet I could not acces with Belle.
    I have no Ideas how the WP email gadget looks or work, so can someone please explain and or show me? Im totally new to the WP, is there something the Belle had which WP dont have? Any other big differences between the 808 PureView and the 1020? 
    Thanks for any reply!

    http://www.windowsphone.com/en-IE/how-to/wp8/people/email
    You can create more Hotmail accounts yes, how many mails are available on the phone (from how far back) depends on settings and not on mail count. You can access any folder in the Hotmail/Outlook.com/Live account.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Applecript and xcode. Simple question, unknown answer. help!

    Hello,
    I am completely new to XCode and have been trying to use some self-made applescript libraries for a new Applescrip-xcode app.
    My question is just how to call from my main script (applescrip) the functions inside those libraries. I used to do something like this (and works fine) when using applescript editor:
    set library_file to "pathtolibFolder:myLibrary.scpt"
    set myLibrary to (load script file (library_file))
    set aVariable to aFunction() of myLibrary
    This code (I think obviously) does not work in xcode, and I think there should be somewhere something like:
    #include "myLibrary.scpt"
    Those self-made-libraries are already compiled and have been imported (non .applescript but .scpt), de-compiled and re-compiled by xcode correctly (no errors), but I don't know where I have to put the connections to those libraries in my project. I'm sure the answer is simple but I'm unable to find it by myself.
    Thanks!
    Message was edited by: rampol

    Replying myself... I think I've found the answer, not yet tried but looks nice. I post (paste) it here cos it might be useful to someone. I'll let you know if that works:
    How could I include an applescript as its own ASOC class?
    It's pretty straightforward. In XCode, Make a new file ... class... ASOC.
    And you can basically paste in your applescript into the middle of the file that is created. Make sure that you change the names of any handlers you want to call from outside the class into ASOC methods by adding an underscore between name and parentheses; i.e. from doThething() to doTheThing_()
    A typical applescript handler:
    property aProperty : "a string"
    global aGlobal
    on doTheThing(withThis)
    return retVal
    end doTheThing
    as its own ASOC class:
    script aScriptClassName
    property parent : class "NSObject"
    property aProperty : "a string"
    global aGlobal
    on doTheThing_(withThis)
    return retVal
    end doTheThing_
    end script
    Then, to call the methods in your new ASOC class from another ASOC class, the easiest thing to do is add your new class to your application's Interface Builder NIB and connect it to a property in the ASOC class you want to call your methods from.
    property myOtherClass : missing value
    myOtherClass's doTheThing_(itsInput)
    -------------------------------------------------

  • Real simple question, please!

    I want to record podcasts on my G5 (with or without the built in mike) but want to use theme music which I own (purchased, commissioned) as an intro and then again at the end when I'm done.
    Is there an idiot proof software that lets me do this with no learning curve to speak of? I saw the tutorial on Garage Band and it seemed easy if you use the built in music loops, but what about mp3 files I own that are currently on itunes?
    Can anyone tell me the best way to make these kinds of simple podcasts?
    Thanks so much!
    dr. Jonny

    The text will be in the template file somewhere.
    I assume you are searching the elements on the stage, try
    searching the elements in the library. Double check the
    actionscript as well just in case the text is dynamically produced
    through that. Rest assured, the text will be there somewhere.
    Good luck.

  • Simple Question -- Please reply

    I have a web page where i have to upload test.jpg evey time. So instead of
    giving <input type=file name=filnename> & browse the file
    everytime i wrote
    < input type =file name=filename value="c:\test.jpg> but is it not working.
    Still i have to browse the c:\test.jpg for uploading.
    so is there any way to set the value (as a string or whatever) to <input type=file name=filename value="test.jpg">
    please help
    amitindia

    You are posting in the wrong forum. This is a java forum not a htm/javascript/any other.
    Besides that, you should not use uri pointing to local hard drivers for the could will run in the cliente machine where you do not know where things are.
    May the code be with you.

  • Simple question please

    Hi All
    I'm new to Generics but not new to Java.
    Let A and B represent classes or interfaces
    why the following is true:
    A<B's subclass> is subclass of A<? super B>
    I don't udnderstand why the above is correct
    please help me
    Thank u in advance

    JAddicted wrote:
    A<B's subclass> is subclass of A<? super B>It's not, who says so?
    Easy check (let C <: B):
    A<? super B> a = new A<C>();won't compile.
    Concrete example that does not compile:
    ArrayList<? super Number> a = new ArrayList<Integer>();What is true, though: If C <: B, then A<B> <: A<? super C>
    More on subtypes in Generics:
    http://www.angelikalanger.com/GenericsFAQ/FAQSections/TechnicalDetails.html#Which%20super-subset%20relationships%20exist%20among%20wildcards?

  • Simple question, please help

    I just need to know right now can SSL be used for secure FTP to send commands and data over separate channels, and if so, how? I want to replace a simple FTP socket connection with a secure one, nothing fancy. I don't want to use HTTP unless I absolutely have to. Any advice would be appreciated.

    Has anyone evaluated all the different options available and found the better alternatives? I have found SSH Communications Security's SSH Secure Shell, RSA Security's BSafe SSL-J, ValiCert's SecureTransport (a.k.a. FileDrive) and others. I haven't compared them in detail yet and was hoping to get some advice from others out there who are doing the same sort of thing.

  • Help with a simple question-please

    Forgive me if this has been covered already, it seems like such a simple request but I can not find any simple answers...
    I am currently using the trial version of acrobat 9.. I am considering buying. I want to create fillable PDF forms(for personal use). When I fill them them out I want to be able to email the filled out form, and save a copy of the filled out form. Can I do this? If yes how?
    Basically, i want to take all my personal forms that I now send out via snail mail(some are order forms, some are claim forms that I send to my insurance co, etc...). I want to make them into fillable pdf's so i can fill them out on my computer and then email them to whoever I choose. Can I do this? How?

    Do you want them to be filled0in with Reader, or Acrobat? To create a form in the first place, you'll need Acrobat. Once you've added the fields and entered the form data, you just have to save it as a new document. You can then attach the document to an email as you would any other type of file. You can also set up a "submit" type button to partially automate the process of saving and attaching a document to an email.
    If you want to create a form that Reader users can fill-in and save, you will have to Reader-enable the document. In Acrobat 9, you do this by opening the document in Acrobat and selecting "Advanced > Extend Features in Adobe Reader...".
    Regarding locking the document, you cannot do it securely with Reader, but you can set up the form so that the fields are set to read-only after it is filled-in but before it is saved. This may require a bit of programming in JavaScript, but it's not too complicated.
    George

  • A very simple question, please help.

    How would I output/print out a string in color rather then the standard black?
    If anyone can help me or point me in the right direction would be greatly appreciated.
    For example for extra clarification, if I want to print out a string "Hello World", how can I print it out in different colors such as in blue or red.
    Output to a JApplet ( TextArea)
    Thanks!
    Edited by: ff4930 on Nov 30, 2007 9:18 AM

    You can change the colour of all the text in a JTextArea by setting its foreground property:
    yourComponent.setForeground.setColor(Color.RED);If you just want have multiple colors in one JTextArea, that's not possible. You will have to use a more advanced component, like JEditorPane or JTextPane:
    http://java.sun.com/docs/books/tutorial/uiswing/components/editorpane.html
    In basic cases, if the text doesn't have to be editable by the user, you can use a JLabel and pass it simple html:
    String text = "<html><font color='red'>red text</font> " +
    "<font color='green'>green text</font> " +
    "<font color='blue'>blue text</font></html>";
    yourLabel.setText(text);

Maybe you are looking for

  • Icloud password reset is not coming to my original email

    Hello, I have a unique problem. Kindly consider the following points: My yahoo email that i used to originally set up my icloud got hacked but i have been able to restore account now. In the mean time, i was able to assign my device to new icloud acc

  • Lower performance for select in our setup

    We are currently doing performance testing for timesten for 2000 users. The application is a java project and is deployed on weblogic server. We are facing very poor performance with timesten. The response time for the same code with Oracle db is 0.1

  • Utilization of Cenvat Credit through J1IH (Plz. Guide)

    Practice followed by co. is to Utilize Cenvat Credit through J1IH T.Code - In J1IH, Tab Other Adjustment is used (i.e ETT-MRDY) for this purpose. Accounting entry ideally should get  passed through J1IH is - ED Payable A/C Dr. To RG23A BED A/C ED Ces

  • How to represent foreign key relationship between entity services

    Hi All, I have two entity services sbu and lob with remote persistensy(web service).In the sql database also i have these two tables. lob table attributes: lobId and lobName. sbu table attributes:sbuId,sbuName,and lobId.Here lobId a is foreign key re

  • Filter data in transfer rules using start routine

    Hi all! I am an absolute newbie here, but I have a question regarding start routines and I noticed many questions get solved around here. My situation is the following: I have to create a start routine where the data to be transferred is filtered on