Some help needed on WRT350N

I noticed some strange behavior on my WRT350N. When this router's power is recycled, sometimes it will refuse to work with my cable modem. I can see in the administration tab that proper IP address has been assigned by my cable operator but external internet world remains unreachable. All the settings are the same as before. The only way to bring the pair working again is to reset the router back to factory default. When I do that, I have to re-enter all my configuration again which is a great pain. By the way, as some have noted, the save configuration function doesn't work. When I try to load in the saved file, the router admin will complain that it is an invalid file.
I have the latest firmware at 1.03.2 btw.

Go get an exchange on it. Sounds faulty.

Similar Messages

  • Some help needed  for guides.

    Hi,
    I need this script, or another, to place guides in "dead-centre" (50%/50%)horizontal and vertical!
    Since I'm a nobody in Jsx I need some help, badly!! :)
    For 2 day's I've seen nothing but "errors" :(
    Can somebody help me, please?
    Regards
    Mahon
    Code: start
    // make guideline
    function guideLine(position, type) {
    // types: Vrtc & Hrzn
    // =======================================================
    var id296 = charIDToTypeID( "Mk " );
    var desc50 = new ActionDescriptor();
    var id297 = charIDToTypeID( "Nw " );
    var desc51 = new ActionDescriptor();
    var id298 = charIDToTypeID( "Pstn" );
    var id299 = charIDToTypeID( "#Pxl" );
    desc51.putUnitDouble( id298, id299, position );
    var id300 = charIDToTypeID( "Ornt" );
    var id301 = charIDToTypeID( "Ornt" );
    var id302 = charIDToTypeID( type );
    desc51.putEnumerated( id300, id301, id302 );
    var id303 = charIDToTypeID( "Gd " );
    desc50.putObject( id297, id303, desc51 );
    executeAction( id296, desc50, DialogModes.NO );
    Code: End

    Please try this...
    var strtRulerUnits = app.preferences.rulerUnits;
    var strtTypeUnits = app.preferences.typeUnits;
    app.preferences.rulerUnits = Units.PIXELS;
    app.preferences.typeUnits = TypeUnits.PIXELS;
    guideLine(app.activeDocument.width.value/2, 'Vrtc');
    guideLine(app.activeDocument.height.value/2, 'Hrzn');
    app.preferences.rulerUnits = strtRulerUnits;
    app.preferences.typeUnits = strtTypeUnits;
    function guideLine(position, type){
        var desc27 = new ActionDescriptor();
            var desc28 = new ActionDescriptor();
            desc28.putUnitDouble( app.charIDToTypeID('Pstn'), app.charIDToTypeID('#Pxl'), position );
            desc28.putEnumerated( app.charIDToTypeID('Ornt'), app.charIDToTypeID('Ornt'), app.charIDToTypeID(type) );
        desc27.putObject( app.charIDToTypeID('Nw  '), app.charIDToTypeID('Gd  '), desc28 );
        executeAction( app.charIDToTypeID('Mk  '), desc27, DialogModes.NO );

  • Some help needed getting file path

    I had some help earlier attaching a file to mail via a dialog. That worked great.
    Now I am trying to get a particular file to attach.
    The following works but if i try to dynamically define the path ie comment out line 1 and bring into the script lines 2 and 3 it only adds the folder (line one). Any ideas?
    tell application "Finder" to set the_files to {alias "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:440b_progress certificate_8.pdf"} --------------line 1
    --set the_path to "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:" as alias ---------line 2
    --set attach_file to "440b_progress certificate_8.pdf" -------line 3
    tell application "Finder" to set the_files to the_path & attach_file
    tell application "Mail" to tell (make new outgoing message) to set visible to true
    tell application "Mail"
    tell front outgoing message
    repeat with a_file in the_files
    make new attachment with properties {file name:a_file} at after the last paragraph
    end repeat
    set visible to true
    end tell
    end tell

    Your problem is in the line:
    <pre class=command>tell application "Finder" to set the_files to the_path & attach_file</pre>
    where the_path is an alias and attach_file is a string representing the file name.
    When you use the concatenate operator ( & ) with two different object classes (in this case an alias and a string), you get a list as the result, so after this line runs the_files equates to a list containing two items:
    <pre class=command>{alias "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:", "440b_progress certificate_8.pdf"}</pre>
    There's no way that Mail.app can translate that into something that can be attached to an email message.
    Instead, what you want to do is NOT define the_path as an alias, leave it as a string. Now the above line would result in one long string of the form:
    <pre class=command>"Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:440b_progress certificate_8.pdf"</pre> 
    which can easily be coerced to an alias suitable for Mail.app:
    <pre class=command>set the_path to "Alberti work:WSC projects:WSC Blue Haven 440b:Construction:Progress Certificates:"
    set attach_file to "440b_progress certificate_8.pdf"
     tell application "Finder" to set the_files to alias (the_path & attach_file)</pre>

  • Some help needed in creating trigger

    Hi Everybody,
    I was practicing trigger and I came across a question but i was not able to form a logic to create the trigger..
    Here is the question
    While modifying the EMP table, ensure that the salary is in the valid range as specified in the SALGRADE table (between lowest losal and highest hisal)
    desc salgrade
    Name                                      Null?    Type
    GRADE                                              NUMBER
    LOSAL                                              NUMBER
    HISAL                                              NUMBER
    desc emp
    Name                                      Null?    Type
    EMPNO                                     NOT NULL NUMBER(4)
    ENAME                                              VARCHAR2(10)
    JOB                                                VARCHAR2(9)
    MGR                                                NUMBER(4)
    HIREDATE                                           DATE
    SAL                                                NUMBER(7,2)
    COMM                                               NUMBER(7,2)
    DEPTNO                                             NUMBER(2)I was trying to create a trigger but I was not sure what to use in the condition to check for the validation.
    So, if anybody can help me that would be a real help and let me understand the concepts pretty well
    Thanks and Regards
    Peeyush

    Hi,
    What do you want to do if the sal is not in the allowed range?
    The code below raises a user-defined exception:
    SELECT     'OKAY'
    INTO     in_range
    FROM     salgrade
    WHERE     :NEW.sal     BETWEEN     losal
                   AND     hisal
    AND     ROWNUM          = 1
    IF  in_range  IS NULL
    THEN
         RAISE  sal_out_of_range;
    END IF;What is the new sal is NULL? The code above allows them. If you don't want them, a NOT NULL constraint is better than a trigger.
    This diesn't do exactly what you said. The code above checks to see if sal is in the allowed range on any single row of the salgrade table. If there are gaps in the table, and the new sal happens to fall into one of those gaps, this will raise the error.
    For example, in the standard salgrade table, the lowest losal is 700, and the highest hisal is 9999,, but some non-integer values in that range (lsuch as 1200.5) are not BETWEEN losal and hisal on any row. I assume this is what you really want, but, if not, you can use MIN (losal) and MAX (hisal).
    Edited by: Frank Kulash on Jun 13, 2011 1:10 PM
    Edited by: Frank Kulash on Jun 13, 2011 1:18 PM
    When I wrote the above, I hadn't seen your 2nd message.
    In triggers, you need a DECLARE statement before you declare local variables, such as v_lowsal. (By the way, I would call it v_losal, to be consistent witht the column name.)
    Is there a column called grade in the emp table? If not, then what is :NEW.grade?
    If salgrade has more than 1 row, then SELECT ... INTO ... FROM salgrade will raise a TOO_MANY_ROWS exception, unless you put something in the WHERE clause that guarantees you'll never return more than 1 row. (That's why I used "AND ROWNUM = 1".)

  • Some help needed on Order-to-cash process

    Hi Gurus,
    i need some insight on how to use/config the Order-to-cash process.
    if someone could help me out in this, it would be greatly appreciated.
    Thanks in advance
    Poorna.

    Hi,
    Please find info on
    https://wiki.sdn.sap.com/wiki/display/ERPLO/SD%20Configuration
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/8c/df293581dc1f79e10000009b38f889/content.htm
    Thanks,
    Vrajesh

  • Oracle forms installation - some help need

    I am trying to install Oracle forms - but get the follwing message:
    Checking swap space: 576 MB available, 1535 MB required. Failed <<<<
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation,at which time they will be rechecked.
    Continue? (y/n) [n]
    actually - I have no choice to choose y and try what's going on - so - is this means that I shoul add some 1.5 GB of RAM to my computer? (I have already 700MB, only 300 of them are used)? I am using WinXP, free HD is above 3.5 GB, 2.4GHz processor.
    Can I try to find some workaround - e.g. simply try to copy jar's from 'stage' (direcotry in installation disk) in Oracle application server's lib directory (where it is in Oracle_Home directory?)?
    Any experience with installing Oracle forms?
    This was trying to run setup.exe, but when I am trying to run wsf.exe - I get:
    SEVERE: Unable to locate the MDAC Update Status registry key value, probably because the installation was aborted.
    MDAC possibly stands for Microsoft Data Access Components? If so - where is problem - I can run a lot of DB servers, including Oracle server itself normally?
    BTW - is there any free service available for Oracle Forms skills development (e.g. as for Oracle SQL the Intel test drive is available?)
    user454720

    OK - now I increased the max limit of my page file and now I achieved this:
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.0, 5.1 or 5.2 . Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors . Actual
    4294967296 Passed
    Checking swap space: must be greater than 1535 MB . Actual 1600MB Passed
    Checking Temp space: must be greater than 150 MB . Actual 1942 MB Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\DOCUME~1\ADMINI~1\LOCALS
    ~1\Temp\OraInstall2006-03-18_01-57-43PM. Please wait ...
    however - after this I receive the standard messgae:
    'setup.exe has encountered a problem and need to close. we are sorry for the inconvenience..... Please tell Microsoft about thsi problem'
    actually - I have little ideas what to do further - maybe I should look for other Oracle Installer version? I am using:
    Oracle Universal Installer version: 10.1.0.2.0
    and I am trying to install
    Oracle Deveoper Suite: 10.1.2.0.2 (so - a bit higher)
    I can run OUI without any problems, my Default JRE is 1.5_1 - so - all seems to be OK?
    Please - if any idea - help me :))
    Thanks in advance!

  • Some help needed for shopping calculator program

    Hi. I would like to thank you in advance for helping me. At the moment I am pretty much stuck. I don't know how to add the input using 'while loop'. This is what I'm suppose to do:
    Write a program called ShoppingCalculator.java that allows the user to enter the prices of several items they have bought and then tells them the total amount. The user can enter the prices for as many items as they want, until they click Cancel. The program should then output the total amount they spent, in a message dialog box. Use pounds for all the amounts.
    So far I have written:
    import javax.swing.JOptionPane;
    public class ShoppingCalculator
        public static void main(String[] args)
                boolean done = false;
                double amount;
                String input;
                while (!done)
                        input = JOptionPane.showInputDialog("Enter the amount you spent on the next item:");
                        amount = Double.parseDouble (input);
                if (done = true)
                        JOptionPane.showMessageDialog (null, "You spent a total amound of £" + amount  );
    }Sorry if the code doesn't make much sense cause I've been changing the code around so many times that.
    At one point when I was playing around with the code, I manage to make the input dialog loop nicely but when I pressed cancel, the message dialog only output the last input I put in. What I'm really stuck here is I need to know how to add the input when using 'while loop' and is it correct to use the IF Statement on this program. Please give me some advice on how to and I will try to work on it again.

    Ok. I have edit the code and this is what it looks like:
    import javax.swing.JOptionPane;
    public class ShoppingCalculator
        public static void main(String[] args)
                boolean done = false;
                double amount;
                String input;
                double total = 0;
                while (!done)
                        input = JOptionPane.showInputDialog("Enter the amount you spent on the next item:");
                        amount = Double.parseDouble (input);
                            if (input == null)
                                        total = total + amount;
                                        JOptionPane.showMessageDialog (null, "You spent a total amound of " + total  );
    }I created another variable (total) and it even compiled. The only problem I have now is the message dialog wouldn't show at the end. When I press cancel and nothing happen. This is what I get on my output command window:
    Exception in thread "main" java.lang.NullPointerException
    at sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:991)
    at java.lang.Double.parseDouble(Double.java:510)
    at ShoppingCalculator.main(ShoppingCalculator.java:23)
    Java Result: 1
    Anything that isn't right here?

  • Some help needed setting up NAT in 2x Airport network

    I'm wondering if anyone can give me some advice on how to get port forwarding to work on my network.
    DSL comes into the house downstairs and from the DSL modem it goes right into an Airport Express. I am on the second floor though, and the Airport's signal isn't strong enough for my G5's antenna to pick up. That's why I have another Airport Express on the first floor, expanding the Airport network.
    The two Airport Express units are in a "WDS".
    I would like to run a home server, so I have to open up port 21 and forward it to my G5, which gets its internet from the 2nd Airport Express unit.
    How do I do this? The Airport's have IP's in the 10.0.0.x range. The G5 is in the 192.168.2.x range because it also connects to a wired router. Do they both have to be in the same range?
    Port Forwarding seems disabled on the Airports because I use WDS. I can check the Distribute IP checkbox in the Network tab, but then I get a warning it shouldn't be enabled with WDS on.
    Any ideas?
    Thanks in advance,
    Maarten

    Hi Henry,
    I managed to get it working. I thought port fowarding was greyed out on both Airport units, but it only was on the relay one. Not on the main one. Also, I first accidently forwarded port 21 to the G5's wired IP address instead of its wireless (Airport) IP address.
    The setup is exactly as you described (your 2nd paragraph). The wired router is only there to connect 4 PC's to the G5. They don't need internet (I don't want Windows to have internet), they just need just data transfer with the G5 (MIDI data and VNC control). It's on a different IP range than the Airport network.
    One issue I am still experiencing is that when Airport is turned on on the G5, the router network (the 4 PC's) don't appear in Finder > Network. When I turn off Airport, the router network appears within a second. So there is a file sharing conflict or something there.
    Thanks for your help,
    Maarten

  • Some help needed! thanks!

    hi everybody! this is my first time here... and i need help! days ago unfortunately I had some troubles with my pc and all my stored music was deleted... the question is: can I transfer the music in my iPod in my pc?! I tried but I didn't succeed! thanks for your help! Fenix

    Hi.
    Try www.versiontracker.com and try some searches for ipods, there are quiet a few recovery software programs to use, unfortunantly I own a mac so I don't know of any programs that are for PC but try that website and I'm sure you'll find something.
    Good Luck.
    Kirby

  • My report on installing Windows 7 RC x64 on my lenovo X200 (Still some help needed!)

    I upgraded from Vista and for a brief moment everything seemed to work but then problems started and I did a clean install. BUT there are quite some issues:
    - Unknown PCI Simple Communications Controller in Device Manager (Which drivers are needed?)
    - Intel GMA driver reports to be installed but I don't have the Settings app to change power saving things and I don't have the GPU video acceleration as well as some problems with 3D Games (QuakeLive)
    - Fans seem to spin more than under Vista. Not sure about that one. (Have to observe with new drivers from lenovo)
    Fixed:
     - Can't install Bluetooth driver (No Device found) - Installed the OSD Package following a guide posted somewhere on the board (manual registry key added, installed in vista mode) and could then enable BT using the Fn Keys and the Drivers were installed automatically by Wind7 after that
    - Fn+F2 (Lock) does not work, Fn+F5 (WiFi&Bluetooth) does not work - Same fix as BT issue
    - Brightness change does not show the green onscreen bar, does not work after sleep - Fixed through the Hotkeys Driver for Win7 (provided by lenovo on the Win7 Beta Drivers page)
    - Power Manager - New Drivers for Win7 by lenovo
    Doesn't work but it's crap anyways:
    - Presentation Director won't install correctly
    Doesn't work but not important:
    - Audio Driver from lenovo only worked after "Install with recommended Settings" and the SmartAudio pane in the Control Panel does not work so I uninstalled and the Win drivers work perfectly
    - Fn+Pause (doesn't do anything)
    - Fn+PrtSc (doesn't do anything)
    - Intel AMT wouldn't install (I'm not in an Enterprise Environment so I don't need it anyways)
    What works:
    - Active Protection
    - Camera (at least it installed. Didn't try it out)
    - All other Fn Keys, Volume Buttons, Onscreen Display of volume/ThinkLight change
    - Intel Matrix and Turbo Memory drivers installed
    - lenovo System Interface installed
    - WLan (Out of the box and after I killed it with the deinstallation of Access Connections, worked again with Intel drivers)
    - Fingerprint (Win Update)
    - Chipset (Win Update)
    - LAN (Win Update)
    - Display (Win Update)
    - Power Management Driver (Win Update)
    - Trackpint (Win Update)
    - Audio (Out of the box)
    - Modem Drivers installed
    Untested/Not Installed:
    - Easy Eject Utility (Not needed anymore with new Win7 Driver behavior)
    - ThinkVantage Menu & Message Center
    - Access Connections
    It works quite well but the GMA and Brightness issues are really annoying! BUT I hate it, that the System Update App isn't available anymore and stopped working with Vista SP2 (RC). One app which manages all the Driver and support software installation is just perfect! I hope lenovo will release something like it again (Maybe as a sidetab in the official Win7 Update app )
    Does someone know how I can fix the the red problems?
    Thank you.
    Message Edited by Chrigi on 05-28-2009 01:11 PM
    Message Edited by Chrigi on 06-06-2009 03:42 AM

    Grüezi Christian:
    I did a clean installation (as opposed to an upgrade) of W7 RC on my W500, and discovered that all of the problem you mention are quite easily solved.  Basically, they seem to be caused by the computer needing the correct device driver for the item - in other words, the device driver is not provided on the W7 CD, you need to get it from the Lenovo website.
    In your case, because you did an upgrade install (rather than wiping your hard drive and doing a clean install), chances are that you already have the required drivers present on your computer.  They will be located at the root level of your 'C:' drive in a folder entitled 'drivers' (in other words, C:/drivers/).
    All you have to do is point your computer in the correct direction, to assist it to find the driver that is present on your hard drive.
    Here is how I recommend you proceed:
    1) Open the Device Manager.  In W7, you can accomplish this from the control panel (Start - Control Panel - Device Manager).
    2) Look for an item in the device manager that the computer is unhappy about.  These are normally identified with exclamation points or similar icons beside them.
    3) Right-click on one of these problem items, and choose 'Update Driver Software'.
    4) Select the lower option (the non-default option), which is 'Browse my computer for driver software'.
    5) In the window that appears, use the browse button to navigate to C:/Drivers, and confirm that the check box 'include subfolders' is checked.
    6) Press the NEXT button.  The computer will then go fishing through the C:/Drivers folder, find what it needs, and install it.
    You will have to iterate this procedure for each item in the device driver list that shows a problem.  It may also be necessary to reboot the computer after each iteration.
    Hopefully, this will solve your problems.  Please let us know what your experience is.
    gruss,
    Michael
    Message Edited by PanEuropean on 05-17-2009 01:35 PM
    W520 (4270 CTO), which replaced a W500 (4062-27U), which replaced a T42P, which replaced an A21P...

  • Some help needed regarding Files and URLs on a server

    I don't get it - my applet works in a local directory, but not on a server. This has to do with the loading of files (I load an array of images to use, but when I attempt to use that array, it comes up with the error ArrayIndexOutOfBounds), but I can't understand what the problem is...
    I have a code that loads files (using File objects) from the current directory (a .jar file) into the program. I do not simply type in the file names - I set it so that the program searches for them based on a prefix in the file name. This works fine on my computer, and I never navigate to files outside of the .jar file. Why might this have a problem on a server? Would URL objects be more appropriate?
    Note: I alter the file base String in this way before loading it (this stands for the current directory)
    fileBase = applet.codeBase.toString().replace('\\', '/');codeBase is simply the applet's codeBase() method put into a URL variable. The replace statement is there so that there are no backslashes. And this works perfectly on my computer. Any help? Would it work if I used a URL instead? If so, how do I perform a search function with a URL (so that all the filenames within a certain directory are returned as Strings)?

    Thanks for the info, it helps a lot. You say there is no "practical" way to search for a file under a URL path. What I am trying to do is load a file that begins with a particular prefix. (eg. I wish to load a file called "funnyImage0011204924." However, the numbers after the prefix "funnyImage" are variable, and might require change in the future. Is it possible to load any file with the prefix "funnyImage," using URL methods? Would I need to create a new class? Is this impossible?)
    Please remember that I do not plan to go outside the .jar file, so there is no point in trying to get around server permissions and all that if it is unnecessary.

  • Some help needed for improrting and editing

    Hi,
    I need a litle help with two issues.
    1) I was trying to edit a photo but when i click the edit button, I can see the photo at the top of the screen in the film strip but not in the edit screen and I have also noticed for this particular picture I cannot view it in full zoom. All I can see is an " ! " mark.
    2) I deleted this picture and tried to import again but iphoto states that it cannot import because it already exists. I tried closed the program, deleting the cache.

    Derek
    It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss
    iPhoto is a database and like any database it needs you to manipulate the data via the app itself, and not via a back door. So, that's why it thinks the pic is still there - because the entry in the database is still there.
    The correct way to remove a pic is to move it to the iPhoto trash and empty the iPhoto trash. This will remove the pic from the database and the HD.
    Now your database base is bunged up you have two choices: one is to return things precisely the way they were the other is to create and populate a new library.
    To create and populate a new library:
    Note this will give you a working library with the same Events and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    In the iPhoto Preferences -> Events Uncheck the box at 'Imported Items from the Finder'
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library (Right Click -> Show Package Contents on your desktop and find the Originals folder. From the Originals folder drag the individual Event Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Assuming you renamed a file to make it easier to find:
    There are three ways (at least) to get files from the iPhoto Window.
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    To upload to MySpace or any site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser. Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves. If you're willing to risk database corruption, you can restore the older functionality simply by right clicking on the iPhoto Library and choosing 'Show Package Contents'. Then simply make an alias to the folders you require and put that alias on the desktop or where ever you want it. Be aware though, that this is a hack and not supported by Apple.
    Regards
    TD

  • Some help needed with initWithNibName and UITableViewCell

    Hiya guys, been going at this for a few hours now and came to the conclusion I can use a helping hand.
    *Here's the .m file* http://thepreciousyears.com/web/MainViewController.m
    The jist of the issue is I have a table view that has custom cells, each individual cell calls its respected detail view from separate nib files. This is working as expected.
    In the CustomCell I used IB and setup custom IBOutlets as you'll see in the code. I got this working fine.
    The issue is I can't seem to figure out how to give each cell its own respective title/author/date/image. If you look at the above code you'll see that title/author/date/image will repeat.
    Any help would be appreciated!
    Cheers!

    // tell our table what kind of cell to use and its title for the given row
    - (UITableViewCell *) tableView:(UITableView *) tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    // Define CellIdentifier @"customCell"
    // ** make sure the expansion of kCellIdentifier is entered under InfoViewCustomCell Attributes in IB
    InfoViewCustomCell *cell = (InfoViewCustomCell *)[tableView dequeueReusableCellWithIdentifier:kCellIdentifier];
    if (cell == nil)
    // ** this line isn't doing anything except making a memory leak
    // cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCellIdentifier] autorelease];
    cell = [[[NSBundle mainBundle] loadNibNamed:@"InfoViewCustomCell" owner:nil options:nil] objectAtIndex:0];
    // ** be careful about hard coding a zero index in the above nib array; that index can be version dependent
    // ** (e.g. it could be one)--it's safer to take the last element of the array or even to walk the array
    // ** to find an object of the expected class.
    // ** the next four lines are setting the properties of each cell to the same info,
    // ** so we would certainly expect each cell to display the same text and image
    [[cell articleName]setText:@"Article1"];
    [[cell authorName]setText:@"John Doe"];
    [[cell date]setText:@"June 21st, 2009"];
    [[cell image]setImage:[UIImage imageNamed:@"test.jpg"]];
    // ** this is the kind of statement which would populate each cell with different
    // ** text, since the text selection is based on the row:
    //cell.textLabel.text = [[self.infoTableData objectAtIndex:indexPath.row] objectForKey:kTitleKey];
    // ** thus the above four lines should be implemented something like this:
    // ** NSDictionary *rowData = [self.infoTableData objectAtIndex:indexPath.row];
    // ** [[cell articleName] setText:[rowData objectForKey:kTitleKey]];
    // ** [[cell authorName] setText:[rowData objectForKey:kAuthorKey]];
    // ** etc.
    return cell;
    Hope the above is helpful. I haven't run the recommended code in a test bed yet, so please don't be surprised if I made a typo. If there are bugs you can't find right away, just let me know. I'm running very similar code in several projects, so any glitches should be very easy to fix.
    - Ray

  • Some help needed with fstab

    I just attached a new disk to my machine, so i can use its 80 gb for my mp3 library.
    I want to have full access to all the disk and read/write permissions for all the users in the system.
    As root, i created the directory /media/Music
    I edited fstab like this:
    UUID=5a87c116-3e2f-4cd8-825a-18adc82651fa /media/Music ext4 users,defaults 0 1
    But i still cannot write anything to the disk as normal user.
    Before going on, i want to ask if there is a problem because i created the /media/Music folder as root, and the permissions are drwxr-xr-x with root as owner or if the problem remains in the fstab configuration.
    Im also trying to mount a ntfs partition on demand, so i added this line to fstab as well:
    UUID=747C1C797C1C37F6 /media/XP ntfs-3g users,uid=1000,gid=100,fmask=0113,dmask=0002,noauto 0 0
    I want read/write support once i mount it... but i get an error message about privileges.....
    Thanks!
    Last edited by Xi0N (2009-04-08 21:35:51)

    graysky wrote:
    Xi0N wrote:Before going on, i want to ask if there is a problem because i created the /media/Music folder as root
    Yep... chown it to your user:group you want to own it, then mount it and you should be good to go.  Example: user name is willy and group is willy::
    # chown willy:willy /media/Music
    is the -R option needed in this situation?
    Also, i want to make sure that the fstab string about this partition is correct, is it?
    About the ntfs partition, i have to automount it for getting all the privileges i want, but i dont want to mount it on every bootup....
    Thanks

  • Some help needed ^^

    Here is the thing. On my stage i call a movie clip from the library (basically the structure of the file is form one xml file different entries are loaded in tables that are being loaded from the library on the main stage. and depends on how many entries in the xml i have flash creates this number of tables for the info). This MC is being exported for AS with Identifier = address_groupID and in that movie clip i have another one with Identifier = cont. My question is how on a varviable named dir to assign the location where my text fields are located. They are in the movie clip with the Identifier cont.

    If you are talking about the identifiers that you would use for dynamically adding the objects to the movie during runtime, that's pretty much their only purpose.  When it comes to assigning properties or controlling those objects once they are loaded dynamically, you need to use the instance names that they have been assigned.
    It is not clear if your inner mc is loaded dynamically or if it resides inside that mc in the library, but if it is the latter, you will need to assign an instance name to it via the properties panel, and use that to target it.  Similarly, assuming you are using attachMovie to load the outer mc, in that attachMovie code you specify a name arameter for the movie.  This is the name you need to use to target that.
    If what I've explained is entriely foreign to what you have, then you should show the code you are currently using to process these things.

Maybe you are looking for

  • How do I use an external hard drive that has been used on a windows machine on my mac....

    I have recently just bought a new mac and want to edit files that are currently saved on my external hard drive that I used on my windows machine. Is there any way to be able to do this or will I have to transfer all files across to my mac and then r

  • With iOS 7 how do you close the apps you've used on your iPad?

    I was in the habit of double clicking, holding down an app, then closing all that I used. With iOS7 that doesn't work?

  • Read of XML file and post to IDOC

    Hi I'm working on a <b>WAS620</b> and need to read an XML file from a customer, extract the fields needed and post these via IDOC ORDERS01. My problem is HOW to read the XML file? Can anyone give me the steps involved/links to examples etc - I have n

  • Self Assigned IP? Can't connect~!

    Self-Assigned IP? Cannot connect to the internet. I see the router/network name, I have good connection, but no IP? It assigns a 169.xxx.xx.xxx -I have repaired permissions -Deleted AirPort from the network list and re-added it -Deleted plists -Turne

  • MS Exchange 2013 certificate error.

    we just setup Exchange 2013 but I cant configure outlook . it brings two error messages. 1. There is a problem with a proxy server's security certificate. the name on the certificate is invalid or does not match the name of the target site. 2. The co