Help for a Mac newbie please!

Hi all,
I just got my lovely MacBook Pro yesterday... and could use some help with these 2 problems...
1 - on my Windows PC I have a VPN connection to 1 of my clients. When I tried to set it up on the Mac it's asking for an IPSEC shared secret? Is there any way to disable this requirement, or does my client have to set a key on his server?
2 - I am having a problem connecting to my windows laptop through my home network...if I enable the Guest account on windows XP, the MacBook connects no problem. If however [as I really want to] I try to connect as a "proper" user with username and password, the Mac keeps telling me the username or password is wrong...which it definitely isn't!
My thought is regarding the "domain"...I don't have one set up at home...just a workgroup called "home"...so when I try to login I am only typing in the username...the tooltip for the usernae field says domain\username...do I need to put anything here for domain, and if I do, what...as there isnt one!
Thanks,
Nige

Try my post
http://discussions.apple.com/thread.jspa?threadID=1359723&tstart=0

Similar Messages

  • Urgent help for extremely new newbie - please.

    I have been asked to set up a Labview program to graph and log
    thermocouple temperature measurements from two Keithley 2001 Multimeters
    and a DC voltage from HP 34420A nano Volt/Micro Ohm Meter. All three are
    instruments are IEEE interfaced to a Windows 98 machine running Labview
    (version 5.0 I think.) I have a couple of weeks to get the job done.
    The problem is that I have never used Labview. I am an experienced C,
    Fortran, BASIC programmer but this graphical system is completely new.
    My situation is complicated because I am told the experienced person who
    was originally going to set this up left under bad circumstances and
    took many of the manuals. I would greatly appreciate any and all help I
    can get.
    Please feel free to send responses directly to me.
    [email protected]
    Thanks,
    Stan Thomas

    In article
    <[email protected]>,
    Stan Thomas
    wrote:
    > I have been asked to set up a Labview program
    to graph and log
    > thermocouple temperature measurements from two
    Keithley 2001 Multimeters
    > and a DC voltage from HP 34420A nano Volt/Micro
    Ohm Meter. All three are
    > instruments are IEEE interfaced to a Windows 98
    machine running Labview
    > (version 5.0 I think.) I have a couple of
    weeks to get the job done.
    > The problem is that I have never used Labview.
    I am an experienced C,
    > Fortran, BASIC programmer but this graphical
    system is completely new.
    > My situation is complicated because I am told
    the experienced person who
    > was originally going to set this up left under
    bad circumstances and
    > took man
    y of the manuals. I would greatly
    appreciate any and all help I
    > can get.
    >
    > Please feel free to send responses directly to
    me.
    >
    > [email protected]
    >
    > Thanks,
    >
    > Stan Thomas
    >
    >
    All manuals are available at
    http://www.natinst.com/manuals/
    They also have an example program database at
    http://www.natinst.com/support/epd/
    Sten Karlson
    D/A Production AB
    SWEDEN
    Sent via Deja.com http://www.deja.com/
    Share what you know. Learn what you don't.

  • Safari display help for a Mac newbie!

    Hi everyone,
    I have never used Macs before so I hope this question isn't too ridiculous...!
    When using Safari, all the web pages I open are either half or three-quarters the size of the screen even when I use the little plus (maximize) button in the top left hand corner.
    Only one page has ever fitted the full screen. Is there any way to make all pages opened with safari full-screen size? I've fiddled around with the settings but to no avail...
    Any help would be greatly appreciated!

    The easiest way I have found to do this is to high light and drag the following java script to your bookmarks menu bar. Name it any thing you want. I called mine re-size. Click it and it will expand the window full page. It works with Safari 2, safari 3 beta, FireFox, Omni-wed, and SeaMonkey.
    Full screen script for browsers
    javascript:self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);

  • Help for an Apple newbie please???

    Hi all, I have just acquired my first Apple computer which is an older PowerPC G3 running OS X 10.1.2
    I would like to know how I go about upgrading the OS to a later version please? For example can I simply purchase a copy of OS X 10.3 or 4 and install it or do I need to go through the intermediate versions (10.2 to 10.3 etc)?
    Does anyone know if these later OS are even compatible with the PowerPC G3?
    Sorry for the basic questions, but as I say I am a complete novice with Apple computers and your guidance would be greatly appreciated.
    thanks,
    Graham
    PowerPC G3   Mac OS X (10.1.x)  

    Hi Graham,
    you have to buy the retail full install disks, regardless whether you upgrade to 10.3. or 10.4. Please also post the exact model of G3 you have. Not all G3s are compatible with 10.3 and only a few can run 10.4. You might want to check out the system requirements:
    Requirements for Mac OS X 10.3
    Requirements for Mac OS X 10.4
    Be aware that you cannot upgrade directly from 10.1.x to 10.4! You either have to upgrade to 10.2 or 10.3 first or you perform an Erase&Install.
    Most likely you will need a firmware upgrade prior to the upgrade: Firmware Upgrades
    If this answered your question please consider granting some stars: Why reward points?

  • Help for a mac newbie.......

    hello all. i recently purchased a used MBA original 1.6Ghz intel core 2-duo 2GB 667 MHz DDR2 SDRAM, running MAC OSX Lion 10.7.3 (11D50b). its my first macbook. the issue i have is that i cannot input my own password, ie, when i go to input a new password it asks for the old password, something i dont have! i have tried to contact the seller, but am having no joy. how do i reset the entire macbook, to a point were i can set my own password. even to a point were it is like a new purchase, so that i may set it up how i want it, with my own passwords,settings, apps, programmes etc. Thanks

    Use the install DVD for that MacBook Air to erase and Install the operating system. When you do that then you can enter your own password.
    Missed your saying your on Lion change that to read boot from the Recovery Partiton by hold down Command = R as you boot.
    Allan

  • Help for a java Newbie please!

    Hey guys I'm writing this program for my Java 1 class I can't seem to get it complie. This is the first time we've worked with building out own classes. And I have a feeling that I'm doing something small and silly. If someone could just take a look at it I'd be more than happy.
    This is the Class we had to write it has 4 different fields of "employee information" This one looks fine.
    public class Employee
       private String name;           
       private int idNumber;      
       private String department;
       private String position;
       public Employee(String theName, int theIdNumber, String theDepartment,
                        String thePosition)
             name = theName;
             idNumber = theIdNumber;
             department = theDepartment;
             position = thePosition;
       public void setName( String theName )
             name = theName;
       public void setIdNumber( int theIdNumber )
                idNumber = theIdNumber;
       public void setDepartment( String theDepartment )
                department = theDepartment;
       public void setPosition( String thePosition )
                position = thePosition;
       public String getName()
                return name;
      public int getIdNumber()
                return idNumber;
      public String getDepartment()
                  return department;
      public String getPosition()
                 return position;
    } I think this one is good, it compiles just fine.
    Now we had to write a program that accesses the class and store "employee information" for 3 different employees and recall it. It only recalls for one right now, it doesn't compile though... sad day. Any help would be AMAZING THANKS in advanced.
    import javax.swing.JOptionPane;
    public class EmployeeInfo
       public static void main(String[] args)
           String firstEmployeeName = "Susan Meyers";
           String secondEmployeeName = "Mark Jones" ;
           String thridEmployeeName = "Joy Rogers";
           int firstEmployeeId = 47899;
           int secondEmployeeId = 39119;
           int thirdEmployeeId = 81774;
           String firstEmployeeDepartment = "Accounting";
           String secondEmployeeDepartment = "IT";
           String thirdEmployeeDepartment = "Manufacturing";
           String firstEmployeePosition = "Vice President";
           String secondEmployeePosition = "Programmer";
           String thirdEmployeePosition = "Engineer";
           Employee Employee1 = new Employee();
           Employee1.setName(firstEmployeeName);
           Employee1.setIdNumber(firstEmployeeId);
           Employee1.setDepartment(firstEmployeeDepartment);
           Employee1.setPosition(firstEmployeePosition);
           Employee Employee2 = new Employee();
           Employee2.setName(secondEmployeeName);
           Employee2.setIdNumber(secondEmployeeId);
           Employee2.setDepartment(secondEmployeeDepartment);
           Employee2.setPosition(secondEmployeePosition);
           Employee Employee3 = new Employee();
           Employee3.setName(thirdEmployeeName);
           Employee3.setIdNumber(thirdEmployeeId);
           Employee3.setDepartment(thirdEmployeeDepartment);
           Employee3.setPosition(thirdEmployeePosition);
           JOptionPane.showMessageDialog(null, "Name          ID Number   " +
                                         "Department      Position     /n" +
                                         Employee1.getName() + "   " +
                                         Employee1.getIdNumber() + "   " +
                                         Employee1.getDepartment() + "      /n");
      System.exit(0);
    }

    Also the compiling error I get is
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:28: cannot find symbol
    symbol  : constructor Employee()
    location: class Employee
           Employee Employee1 = new Employee();
                                   ^
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:39: cannot find symbol
    symbol  : constructor Employee()
    location: class Employee
           Employee Employee2 = new Employee();
                                   ^
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:50: cannot find symbol
    symbol  : constructor Employee()
    location: class Employee
           Employee Employee3 = new Employee();
                                   ^
    O:\HomeWork\CIS 260\Assignment 5\EmployeeInfo.java:52: cannot find symbol
    symbol  : variable thirdEmployeeName
    location: class EmployeeInfo
           Employee3.setName(thirdEmployeeName);
                                ^
    4 errors

  • Help for a Bluetooth Newbie please!

    Hi
    I have just got a Nokia 6230i (which looks like i may have alot of problems with according to your forums!).
    I am trying to connect up to my PC. I have a very basic question which is, how do i know if my computer has bluetooth on it? it is Windows XP.
    When i installed the PC Suite disc i got with the phone it said it said my available connections were bluetooth, serial cable and USB, which i took to meaning i had bluetooth on my computer! Am i completely wrong?
    I am completely new to all this bluetooth stuff sorry. i have made my phone visible (if this is the same as 'unhiding' it.) and urned it on, but when i try to connect through the PC Suite software, it say it cannot be connected.
    Help!!

    Yes, the other phrase is "dongle", typically what is sold are small Bluetooth adapters (dongles) that can be attached to the USB port in your PC.
    There are certainly many options available. If you go to a store I would try to make sure form the sales person that the dongle supports Microsoft Windows XP Bluetooth.
    Microsoft has Bluetooth sw in Windows in Windows XP, but the Service Pack needs to be 2. YOu can check you system setup easily by:
    Right click on the "phone icon" in your Windows Tray (area in bottom right in your screen) Select "about PC Suite" from the list and click. Windows opens, select "system info" and you can see what Windows version you have.
    If you have something like this visible:
    Operating system:
    Microsoft Windows XP
    Build 2600
    Service Pack 2
    Bluetooth stack:
    Microsoft Bluetooth stack
    Version 5.1.2600.2180
    Then it will be relatively easy to take Bluetooth into use in your PC.
    Just attach the dongle to USB port and let Windows guide you through the Bluetooth dongle driver install process.
    Then you will have the possibility to connect your phone and Nokia PC Suite over Bluetooth.

  • Purchasing help for the mac

    hi all.
    new to mac and relatively new to adobe. hoping for some guidance.
    i run a small design build firm and recently ported to the mac os while still running a couple of boot camp installs of windows and parallels with windows 7 on the laptop. I am currently using Aperture to get my images organized and have been reasonably happy with it.
    i am in need of a "poster - workflow" using something like indesign but i am sure i could also use photoshop (which I am familiar with) and illustrator (for various vector manipulations i imagine). i'll also be doing some modest print material, keynote presentations and i have a wordpress website/blog and will be updating a very old blog at some point in the future. i would also /love/ to have a way to manipulate 3D files into my print work in creative ways.
    can anyone give me the lowdown as to whether I should be buying the InDesign CS5 Suite that includes Photoshop, ID and AI (for the mac) and whether I need to look at Acrobat 3D (for Wind 7 because there is no Mac option for this)?
    I mention some tangential issues in case anyone can offer tangential advice and apologies if this is not exactly the right forum as I am just getting started on figuring out where to enter the discussion over here.
    TIA for any help.
    Jon

    thanks very much John.
    sorry, i have been trying to work my way through the mud over here.
    so the "poster workflow" would be something along the lines of a 24 x 36 inch set of poster boards for a competition and I'd ideally like to be able to set the images, update them and then have the poster update. I had a really pleasant experience with the ID demo a number of months ago so I'm totally sold on ID.
    i also do a lot of 3D modeling and expect to include "vector-based" images in some of these presentations. since i am familiar with photoshop i am also sold on photoshop. i've been on the mac for a year and a half and editing images has been a mess quite frankly without it. so i'm hoping to solve a number of problems.
    do you by any chance have any experience with the mac?
    i mean, i guess "CS5.5" is the suite of products mentioned above is that right? do i have any deals that i can work if i purchase this (pricewise)? I don't think I can hold off until 2Q 2012 which I assume means somewhere around March?
    Anyway, the other issue is that I am organizing images in Aperture and I can't quite figure out if I get a more economical workflow by moving to something like Lightroom. It would be great to not have to always export images out of aperture to get them into the AI, ID, Photoshop workflow. But I am not sure how Lightroom works with these three, either.
    Lastly, my look at Acrobat 3D /seemed/ like it was pretty robust. It appears that I can insert a 3D model into a pdf document and let others rotate it around in real time. It also appeared that it would let me do an "exploded axonometric" in a rather easy manner. the pain for me here is if it is only available on the windows platform.
    anyway, i realize some of this is rather specialized and that some of it is rather obtuse as I try and hack my way forward.
    any advice you can offer I'd be grateful for...
    regards.

  • Help for a bewildered idiot please

    Dear Geniuses
    Proud owner of an (almost new -refurb) MBP and some fine software called Final Cut Studio 2 badly needs your help
    .Firstly have to admit Im a very recent convert to the Mac side of life (about 6 days!)and aforementioned software
    All was going swimmingly and was very impressed (except for the lack of a right click button but hey)and had even reached lesson 3 of my training DVD when all of a sudden getting a dropped frame warning (its a MBP 17/2.5/2gb/250-5400) moved application and associated files to my Lacie 500gb - 7200 external drive (I think) connected on firewire 800 reduced the RT to medium p/b and half frame rate ...no joy still getting freezing and stuttering of picture ( I disabled warnings)
    Anyway for Mac experts out there a few questions
    1 would upping my Ram to 4 gb help
    2 should I connect via e-SATA (and how )
    3 any other suggestions
    4 (whats the best mouse with a right click for a mac????)
    Very frustrated but thanking all in advance
    cheers

    1 would upping my Ram to 4 gb help ... more RAM is always a good thing
    2 should I connect via e-SATA (and how ) ... that would certainly give you faster disc access. you would need an ExpressCard/34 based eSATA adaptor
    3 any other suggestions ... you can configure your OS X System Preferences >> Keyboard and Mouse >> Trackpad settings to allow you to right click by doing a two finger tap. Enable the "For secondary clicks..." option.
    4 (whats the best mouse with a right click for a mac????) ... well I like the Apple Mighty Mouse personally, but any basic two button mouse will work without need for third party drivers. more "fancy" mice will usually ship with Mac drivers too
    other thoughts:
    just how full is your external hard disc? if its chok full of stuff then you'll likely get much reduced performance.
    bigger disc drives do not necessarily mean faster disc drives. a basic RAID 0 pair will give you much better performance than a single disc
    how many apps are you running simultaneously? make sure you don't have unneeded applications open at the same time as their background processes and RAM footprint will eat away at the resources available to FCP

  • I wanna help for advance mac and more product on iran

    dear sir or madam
    i am hossein emami from iran
    and i have a forum about mac and more apple product
    do you can help me to Mac in advance on iran.
    if anybody can help me please sending email to me.
    thanks a lot
    Hossein emami
    <Edited by Host>

    Perhaps you could write to Apple at Apple, Inc.
    1 Infinite Loop
    Cupertino, CA 95014
    USA and see if they have any materials that they could send you. Otherwise, I don't know if you have access to Facebook or something like that, you could set up a site there? What most people do though, is get together a user's group and meet to discuss all things Apple.

  • Help for buying mac from abroad

    basically i want to buy a mac from the US but i live in england. so it will be posted to a friends auntie in the us and then was going to have her send it to me. but i heard there is high tax price to send it across. so does anyone have any idea how much it will cost? or has someone else done this before? thanks for any advice.

    It's a simple matter to call UPS or Federal Express and find out what the shipping costs would be from the US to you. Call your customs office and find out what the duty, import taxes, and VAT would cost.
    As Ned has said you will not have a UK configured machine which also means a US keyboard, US version of OS X installed, etc.
    You will pay US shipping to your relative's location and US sales tax which averages around 7%. For a Mac Pro's basic price the sales tax will be roughly $175.00 USD and shipping another $40 USD. That totals about $215 USD or around 110 pounds. You will then pay VAT and import taxes plus shipping to the UK which I'm pretty sure will run more than 90 pounds total.
    Seems pretty obvious to me that you are better off buying it locally.

  • Adobe non-responsive/ineffective in exchanging CS (Windows) for CS (Mac). Please help?

    I accidentally purchased a copy of CS (Windows) directly from Adobe when I needed CS (Mac). I immediately went through the process to make an exchange to the CS (Mac) and was approved. While I'm still able to download CS (Windows), I was never given a link to download CS (Mac). My attempt to resolve with Adobe is getting me nowhere. I really just want to be able to download the CS (Mac) that I exchanged for. Has anyone experienced such trouble with Adobe?

    if this is a recent occurrence,
    http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l
    Return, cancel, or exchange an Adobe order

  • Mac Newbie  Please help: Airport Express conflict: cordless phone?

    Hello,
    I apologize if there have been threads on this before, but I searched and searched to no avail. Here is my problem:
    I recently purchased the new 15" MacBook Pro... LOVE IT! I also purchased an Airport Express for wireless. I have SBC Yahoo! DSL with a 2Wire modem w/built-in firewall. With Apple Care help, I have been able to connect just fine to the internet via the Airport Express. However, after my computer goes into sleep mode (overnight, for example)... when I "wake up" the computer and try to get onto the net or access my email, I cannot... usually there is a box that appears on my desktop that says someting along the lines of cannot find my connection.
    As an aside, I have an old cordless 2.4 GHz phone in my apt. One Apple Care rep told me this was the problem and that I needed a 5.8 GHz phone. Another Apple Care rep told me that might help, but told me has used both 2.4 and 5.8 phones and fnids they can both have this problem so he wanted to try resetting the airport using the bridge feature hoping that would fix things. This solution failed.
    I don't mind spending a few bucks on a new phone. I just want to have a reasonable expectation that this is indeed the problem. Any thoughts? Similar experiences? Also, if you have had and have solved this problem, is a 5.8 Ghz phone or the new DECT phones a better choice? I don't want to buy a phone that will work but impair my net speed. And finally, what are the chances that a microwave in an adjoining room or a neighbor’s phone could be causing this? I heard murmurings that Apple had fixed these problems with the newest Airport Express models.
    Thank you!!!

    I did notice something that confused me; right after I clicked MANUAL SETUP in Airport Utility: a window that said something about ALLOW, DENY, ALWAYS ALLOW my personal information (or "confidential", I forget the exact wording and have not been able to replicate it)... after clicking DENY a few times and failing to get into MANUAL SETUP, I clicked ALWAYS ALLOW and everything seemed good to go. Any information you can give me on this, and what I did by allowing all?
    This sounds like OS X's software firewall is doing its job. (ref: System Preferences > Security > Firewall). When you selected Manual Setup, this request had to go through the OS X firewall and it was asking you if this request was ok to do. When you first answered DENY, it prevented you from successfully administering the AirPort. The right response, in this case, is what you chose next and that's ALWAYS ALLOW.
    Also in the manual setup/airport utility/wireless should my CHANNEL be set at AUTOMATIC?
    Yes, in most cases this would be the best choice as it allows the AirPort to choose which radio channel to operate on that is clear of any other 5 GHz Wi-Fis in your area.
    And should the little box that says ALLOW THIS NETWORK TO BE EXTENDED (located under the Network Name be clicked?
    No. In this case, you are not extending the wireless range of your router with another AirPort base station, so leaving this unchecked would be appropriate.
    Also, I let my computer go into sleep mode for a few hours while I had a dinner and a late nap and even used the new phone a few times. When it came out of sleep mode, my solid green light on the Airport Express was still there and while it took a second, I was still able to get email, connect to the net, etc.!
    That would be normal operation.

  • Help for an international wedding please!!!

    Hi, I wonder if someone might be able to help me? My son is getting married in the USA and we'd like to set things up so that people in the UK can watch and hear the wedding. In addition, my elderly Father (who will remain in the UK as can't make the trip to the US on grounds of age and health) has been asked, by his Grandson, if he will give a Blessing during the service.
    There will be a webcam at the Church in the USA - this will either be via one already installed there, or may be via my laptop!
    I just wondered if someone might be able to advise the best way that we can set all this up - I guess the question is really "Is it possible to do a conference call via Skype?" as the people in the UK who would like to watch the wedding are scattered around and won't all be in front of one webcam!!
    Really appreciate any help that you good people might be able go give, thank you in advance.
    Mike

    Hi Graham,
    you have to buy the retail full install disks, regardless whether you upgrade to 10.3. or 10.4. Please also post the exact model of G3 you have. Not all G3s are compatible with 10.3 and only a few can run 10.4. You might want to check out the system requirements:
    Requirements for Mac OS X 10.3
    Requirements for Mac OS X 10.4
    Be aware that you cannot upgrade directly from 10.1.x to 10.4! You either have to upgrade to 10.2 or 10.3 first or you perform an Erase&Install.
    Most likely you will need a firmware upgrade prior to the upgrade: Firmware Upgrades
    If this answered your question please consider granting some stars: Why reward points?

  • Help for a mac beginner?

    A few years ago i was given a Blue & White PowerMac G3 as part of my "severance" when the web-dev company I worked for went out of business. It's been hanging around unused since then. I'm looking to use it strictly for writing projects and email -- nothing fancy. But I need to do some upgrades on it just to get the internet hookup. What route do I need to go to be able to get online and run MS Office 2001? Thanks for your help!
    Here are the specs --
    B/W PowerMac G3
    384MB
    PPC G3
    350MHz
    OS 8.6
    Two (2) internal hard drives of 6GB each.
    Apps: Illus 9, Photoshop 6, ATM Deluxe, BBEdit 5, Dreamweaver 3, Flash 4 & 5, Quark 4, InDesign 1.5, MS Office 2001
    Help!
    B/W G3   Mac OS 8.6 or Earlier  

    Hi, Brooklynmambo -
    Welcome to Apple's Discussions.
    But I need to do some upgrades on it just to get the internet hookup.
    What might those be?
    There are many folk still running OS 8.6 who have no problem getting on line, even using DSL. If your ISP has some specific requirements, please advise what those might be.
    The first thing to do, while it still has OS 8.6 on it, is to make sure the firmware on it has been updated. It is needful to do that before any late versions of OS 9 can be installed, and before installing OSX. You can download the applicable firmware updater from this Apple KBase page -
    Article #86117 - Firmware Updates
    Note - it's a good idea to print out the included instructions before updating the firmware.
    Once that is done, your machine should be good to go for all versions of OS 9, as is.
    However, it would not hurt to increase the RAM - adding one more 256MB module (which is the largest a B&W G3 can use) would be best; two of those would not hurt, especially if you plan to go on to OSX.
    Re going on to OSX -
    Your machine is rated for all versions of OSX released to date; it would be well to not consider any OSX version earlier than OSX 10.2. OSX 10.3 is probably one of the better choices for that model.
    You might want to consider replacing one of the two hard drives with a larger one, for use with OSX - it needs about 3GB of drive space to install, and runs best when there is at least 5GB of free space left afterwards.

Maybe you are looking for

  • Can I Use Time Machine With Carbon Copy Cloner?

    As of today, I upgraded my iMac (and eventually my Macbook) to Snow Leopard. I used Carbon Copy Cloner to create a clone of my drive to my external (I did a clean install) and now that Snow Leopard is installed, I only want to put back on to my compu

  • Apple TV is working but screen is blank

    My Apple TV appears to be working fine, as the led blinks when I use the remote, and I'm able to play songs from iTunes Library, but I can't get anything to appear on the screen. What I've tried so far: 1.) Connecting with both HDMI and 2 different s

  • Adding or deleting whole artists or albums

    How do you delete a whole artist from the iTunes library? How do you add a whole artist/album to a playlist?

  • How to invoke Reverse Engineer database objects utility

    Hi, I am using oracle designer 6.0 with patch 7 and oracle 8.1.7 can you please guide me how to get the database object ( like table defition ) into the orale designer application. Regards, Gouri

  • Importing text from other older software

    Have several text formats ie.in Pagemaker 4.0 and Clarisworks. Can these be imported into pages 08? If so, how!? Thanx