Don't understand cffunction and cfcomponent

I am trying to alter Forta's ajax related select tutorial to fit my needs.  I am having trouble understanding the details of this .cfc though.
<cfcomponent output="false">
    <!--- Get array of media types --->
    <cffunction name="get_states" access="remote" returnType="array">
        <cfset data="">
        <cfset result=ArrayNew(2)>
        <cfset i=0>
        <!--- Get data --->
        <cfquery name="data" datasource="mydsn">
        SELECT id,states
        FROM state
        </cfquery>
        <!--- Convert results to array --->
        <cfloop index="i" from="1" to="#data.RecordCount#">
            <cfset result[i][1]=data.id[i]>
            <cfset result[i][2]=data.state[i]>
        </cfloop>
        <cfreturn result>
    </cffunction>
    <!--- Get art by media type --->
    <cffunction name="get_waters" access="remote" returnType="array">
        <cfargument name="location" type="string" required="true" default="">
        <!--- Define variables --->
        <cfset var data="">
        <cfset var result=ArrayNew(2)>
        <cfset var i=0>
        <!--- Get data --->
        <cfquery name="data" datasource="mydsn">
        SELECT id,name
        FROM waters
        WHERE bow_state = '#arguments.location#'
        </cfquery>
        <!--- Convert results to array --->
        <cfloop index="i" from="1" to="#data.RecordCount#">
            <cfset result[i][1]=data.id[i]>
            <cfset result[i][2]=data.name[i]>
        </cfloop>
        <!--- And return it --->
        <cfreturn result>
    </cffunction>
</cfcomponent>
When I put '#arguments.id#' into the second query, I get results.  However, I'd like to query by the name instead, so I am trying location.  I don't fully understand so I am hacking around with this a bit but I'd like to 1 - get results by name instead of id and 2 - understand the arguments variable so I really know what is going on.
Thanks!

Sorry, didn't see this before I posted.
But I think my suggestion was in keeping with the example.  If you need to select on "state", then make the "state" column of your first query to be the first value in the array that you return:
<!--- Get data --->
<cfquery name="data" datasource="mydsn">
     SELECT id,states
     FROM state
</cfquery>
<!--- Convert results to array --->
<cfloop index="i" from="1" to="#data.RecordCount#">
     <cfset result[i][1]=data.state[i]>
     <cfset result[i][2]=data.state[i]>
</cfloop>
This will make your select look something like this in the rendered HTML:
<select id="states" name="whatever...">
     <option value="Alabama">Alabama</option>
     <option value="Alaska">Alaska</option>
</select>
So then, on your second, dependent select, you'd specify the binding like so (just like you did, really):
<cfselect name="waters" bind="cfc:_ffc_cfc_select_jump.get_waters({states})" bindonload="false"></cfselect>
However, now, because the value of the "states" select options are state names, rather than ids, you should now be able to use the argument in your query based on state names:
<!--- Get art by media type --->
<cffunction name="get_waters" access="remote" returnType="array">
     <cfargument name="location" type="string" required="true" default="">
     <!--- Define variables --->
     <cfset var data="">
     <cfset var result=ArrayNew(2)>
     <cfset var i=0>
     <!--- Get data --->
     <cfquery name="data" datasource="mydsn">
        SELECT id,name
        FROM waters
        WHERE bow_state = <cfqueryparam value="#arguments.location#" cfsqltype="varchar" /> <!---Be sure to queryparam!!!--->
     </cfquery>
     <!--- Convert results to array --->
     <cfloop index="i" from="1" to="#data.RecordCount#">
          <cfset result[i][1]=data.id[i]>
          <cfset result[i][2]=data.name[i]>
     </cfloop>
     <!--- And return it --->
     <cfreturn result>
</cffunction>

Similar Messages

  • Help on assignment, don't understand JOptionPane and showInputDialog

    Hi, I am currently studying java and have problems doing my assignment. here is the assignment question. What I am looking for is pointers and hints to start on my assignment. I am not looking for the source code, rather the way to actually understand it and start writting my code
    I believe this assignment wanted me to create a class Object called Zeller with the methods in it and a ZellerTester to test the Object?
    I read up on the JOptionPane and the showInputDialog, but don't really quite understand it.
    Do i need a constructor for the Object Zeller?
    Does my assignment require me to put the showInputDialog as a method in the Zeller class? Or put it in the ZellerTester?
    The isLeapYear is a method in the Object Zeller?
    Here is the assignment question
    Examine the method
    showInputDialog() and study its function. Note the return type of this method.
    Write a program on the following requirements:
    1. Use the JOptionPane facility to ask the user for three positive integers,
    representing the day, month and year of a date.
    2. Use the Zeller�s congruence formula to find the day of the week.
    3. Should include a method boolean isLeapYear(int year)
    that will return true if year is a leap year, and false otherwise.
    The method should check for leap years as follow:
    return true if the year is divisible by 400.
    return true if the year is divisible by 4 but not by 100
    return false for the remaining values
    Thank you.

    I can't seems to return the method back to the main
    Not sure where has gone wrong...
    here is my code
    import javax.swing.*;
    public class ZellerTester
        public static void main(String[]args)
        int day  = 28;
        int month = 2;
        int year = 2007;
        int z;
        boolean isLeapYear;
        String[] displayName = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
        if(month==1 || month==2) {
            if (isLeapYear = false)
                day = day-1;
              else
                day = day-2;
        if(month<3)
            month = month + 12;
        z = (1 + day + (month * 2) + (3 * (month + 1) / 5) +
             year + year / 4 + year / 400 - year/ 100) % 7;
        System.out.println("The day is " +displayName[z]);
    public boolean isLeapYear(int year)
           if (year%400 == 0)
               return true;
           else if((year%4 == 0) && (year%100 != 0))
                return true;
           else
                 return false;
    }

  • Re: This is so basic I'm embarassed to ask. I don't understand Y0 and dY?

    ( sorry if it's posted twice, it didn't seem to get through the first time)
    Hi,
    The problem might be, that the precision of the x-scale is default 1
    (e.g. -0.01 gets 0.0). Put it to 2 (e.g. -0.01 stays -0.01). Then it works
    fine.
    Regards,
    Wiebe.
    >
    > "abarkan" wrote in message
    > news:[email protected]..
    > > After using LabVIEW for 4 years, I'm so embarassed to admit I don't
    > > get Y0 and dY (and X0, dX). Just now, I was trying to make the y-axis
    > > on my chart read from -0.01 to 0.1 in 0.01 steps (so -0.01, 0, 0.01,
    > > 0.02, 0.03, ... 0.1). But I can't!?!? It seems to me that I should
    > > make Y0 = -0.01 and dY = 0.01, b
    ut this doesn't work. I've tried
    > > numerous things, and I've played this game numerous times in the past,
    > > but always I had to give up. How can this trivial task be so elusive?
    > > [email protected]
    >
    >

    Also, your chart should be large enough to print all labels. If you don't have enough space, choose the STYLE with all markers and min/max limits. If you need some other labels (except min/max), use Marker Spacing Arbitrary and a combination of labels+markers will fill the available space.

  • I don't understand ul and li

    Hi, 20 qiestions from me tonight!
    . sorry bout that.
    I'm trying to get to grips with unordered lists. I want to
    make my menu bar a list, so in dreamweaver i higlighted severl ines
    of text and clicked the list button, and sure enough it made a
    list, but i wanted to get ride of the bullets and the margin, so i
    wrapped it all in div: #designmenulist. Then i made the adjustments
    but nothing happened. So i looked at some code i was given earlier
    (from anthor topic i started) and noticed the list div ended in
    "ul". So i retyped in the code view my div to be called:
    #designmenulist ul. and now the changes are applied! i'm not sure i
    understand why this works. And now the code for my div reads:
    <div id="designmenulist">
    <ul>
    <li>Year 1</li>
    <li>Misc projects</li>
    <li>Helicopter</li>
    <li>Year 2</li>
    <li>Airline seat</li>
    <li>Departure lounge</li>
    <li>Entertainment system</li>
    <li>Year 3</li>
    <li>Transport interchange</li>
    <li>Delivery van</li>
    <li>Placement</li>
    <li>Year 4</li>
    <li>Drum kit</li>
    <li>Cockpit </li>
    </ul>
    </div>
    but in my global.css, #designmenulist doesn't exist, only
    #designmenulist ul. but it still works. this puzzles me.
    Also, do i need a #designmenulist li? and what does that do?
    Thanks, Mark

    Consider the tags to be boxes within boxes. ul is "unordered
    list" (as
    opposed to ordered list, which items start with 1. 2. etc.)
    "li" means line
    item and within each unordered list (between the ul and the
    /ul, you could
    have any number of li and /li pairs.
    If the div is designlist then anything you applied to
    #designlist would
    reference the whole div. If you want something (say a margin)
    on the
    unordered list itself (the ul) .. you would apply it to
    #designlist ul which
    means the ul that is contained in div designlist.
    But if you wanted something like padding on each item within
    the unordered
    list .. you would apply it to #designlist ul li .. which
    means the li within
    the ul within designlist and those rules are just for those
    list items
    within that list within that div.
    Make sense?
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Mark Hazeldine" <[email protected]> wrote
    in message
    news:[email protected]...
    > Hi, 20 qiestions from me tonight!
    . sorry bout that.
    >
    > I'm trying to get to grips with unordered lists. I want
    to make my menu
    > bar a
    > list, so in dreamweaver i higlighted severl ines of text
    and clicked the
    > list
    > button, and sure enough it made a list, but i wanted to
    get ride of the
    > bullets
    > and the margin, so i wrapped it all in div:
    #designmenulist. Then i made
    > the
    > adjustments but nothing happened. So i looked at some
    code i was given
    > earlier
    > (from anthor topic i started) and noticed the list div
    ended in "ul". So i
    > retyped in the code view my div to be called:
    #designmenulist ul. and now
    > the
    > changes are applied! i'm not sure i understand why this
    works. And now the
    > code
    > for my div reads:
    > <div id="designmenulist">
    > <ul>
    > <li>Year 1</li>
    > <li>Misc projects</li>
    > <li>Helicopter</li>
    > <li>Year 2</li>
    > <li>Airline seat</li>
    > <li>Departure lounge</li>
    > <li>Entertainment system</li>
    > <li>Year 3</li>
    > <li>Transport interchange</li>
    > <li>Delivery van</li>
    > <li>Placement</li>
    > <li>Year 4</li>
    > <li>Drum kit</li>
    > <li>Cockpit </li>
    > </ul>
    > </div>
    >
    > but in my global.css, #designmenulist doesn't exist,
    only #designmenulist
    > ul.
    > but it still works. this puzzles me.
    > Also, do i need a #designmenulist li? and what does that
    do?
    >
    > Thanks, Mark
    >

  • Ios 6 orientation doesn't work and boot time increases. How to solve these issues for dummy? I don't understand code and strings suggested by others.

    I just upgraded from ios 5 to ios 6 on my ipad2. Now orientation doesn't work properly. Boot time increase, it takes longer time to boot. Is there any configuration to solve these issues? I can't understand the explanation with code and strings found on google to solve the orientation issue. Any easy configuration for dummy ?

    It supports well for ios 5. I couldn't remember (5.x.x) exactly but I always keeps update for ios5 and the abnormality starts when I upgraded to ios 6.

  • T450s and docking stations : don't understand differences and limitations

    Hi,
    As you may have seen in my previous posts, I leave my previous company and my good old X220. So I am really wondering if I upgrade or not to the new T450s, or if I search for a X220/X230/T420s/T430s refurbished.
    One of my main concern, is the total display size when docked. I used to use quad FHD screens on my old X220, and I was thinking about increasing again the total display size by replacing 2 FHD screen by 1 4K monitor. However, it seems impossible to run 1 4K and 2 FHD simultaneously.
    So my question is, Where can I find the differences and limitations of the docking stations available for the T450s regarding the display size ability ?
    On the product sheet of the docking stations , Lenovo said "* Some of the video ports have exclusive use and are also dependent on the docked ThinkPad configuration".
    Ok, but where can I have this information ?
    Many thanks for your answers,
    Lenovo X220 4287-CTO / Intel Core i7 2640M @ 2.8 / Corsair Vengeance 16 Go@1866 MHz CL10 / Samsung SSD 840 PRO 512 Go / Bios 1.38 / Linux Xubuntu 14.04LTS / eGPU ATI Radeon 5870 Eyefinity 6 / 2x DELL U2142M / 2x DELL U2212HM

    According to https://software.intel.com/en-us/articles/quick-reference-guide-to-intel-processor-graphics,
    For HD5500 on U processor : 
    Independent Digital Displays : Yes (at most, 3 displays may be supported at one time)
    Maximum Display Resolution : U-Processors: 3840 x 2160 @ 60 Hz
    So 4 displays won't be possible on T450s.
    So, I guess, you can run :
    1 4K display @ 60hz 
    OR
    something like 3 FHD/WUXGA displays
    If someone can confirm...
    Lenovo X220 4287-CTO / Intel Core i7 2640M @ 2.8 / Corsair Vengeance 16 Go@1866 MHz CL10 / Samsung SSD 840 PRO 512 Go / Bios 1.38 / Linux Xubuntu 14.04LTS / eGPU ATI Radeon 5870 Eyefinity 6 / 2x DELL U2142M / 2x DELL U2212HM

  • Perform and form params, here's a thing i don't understand

    Hi all experts,
    a simple & dumb doubt I'd like to clarify about parameters in a form, if anybody can help
    Here's the declarative part of my sample code:
    TYPES: BEGIN OF ty_loghier,
                otype TYPE otype,
                objid TYPE hrobjid,
                stext TYPE stext,
               END OF ty_loghier.
        TYPES: tbl_ty_loghier TYPE TABLE OF ty_loghier.
        DATA: loghier TYPE tbl_ty_loghier WITH HEADER LINE.
    The FILTER form that follows should operate on the previously declared internal table, as follows:
    PERFORM filter CHANGING loghier[].
    I declared the form as follows:
    FORM filter CHANGING itab TYPE tbl_ty_loghier.
    but the syntax checker tells me that "TABLE- expected, not tbl_".
    I don't understand why, and also, I'd like to declare the form such that the itab used in the form is meant to be an internal table with header line. Seems quite a simple question but... I'm wasting a lot of time :P

    Hi ,
    Try this code...
    TYPES: BEGIN OF ty_loghier,
                otype TYPE otype,
                objid TYPE hrobjid,
                stext TYPE stext,
               END OF ty_loghier.
    DATA: loghier TYPE STANDARD TABLE OF ty_loghier .
    DATA : wa_loghier TYPE ty_org_data.
    PERFORM filter CHANGING wa_loghier.
    FORM filter CHANGING itab TYPE ty_loghier.
    Regards,
    Sachin M M
    Edited by: Sachin Mathapati on Jun 17, 2009 4:19 PM

  • HELP!! Don't understand why my new phone won't work!!

    HELP!! I just brought my iPhone home and went through the activation process. Everything was fine. Then all of a sudden, where the bars for service are... it says "Searching" and won't stop. I also can't get into anything. I press on the screen... nothing. I reset it twice... nothing. It's still doing it. I don't understand why and I can't speak to anyone in technical support right now. Has this happened to anyone else? I just want to cry because I bought this phone a few hours ago and it already is giving me crap! Someone help me!!!

    it's a new account, but I was sending texts and everything was fine. now all of a sudden it keeps going on and off and won't let me do anything. Just says "searching"
    it's really ticking me off!!! no one said there might be problems while activating it. I didn't pay this much money for a phone I can't even use!

  • I can't don't understand code in netbean and it's about Jframe.

    i use netbean to design 2 jframe with some buttons on both frame.
    frame1 is login form, frame2 is mainform. i want to show loginform then click the button1 to show 2nd jframe.
    then i click exit on 2nd jframe and it come back to loginform(frame1).
    i do alot of search on the google and here. i know the basic to show a jframe using
    setVisible or .show() .hide(), etc..
    the problem is what is my jframe variable name in netbean?
    i know i can create an jframe object
    such as: JFrame frame1 = new JFrame(); etc.. (it's ok if the syntax is wrong for now).
    When i use netbean, i drag the Gui components to the Jframe. The jframe is generated by netbean automatically.
    When the main program runs, it calls main() method, follow by :
    public void run() {
    new LoginForm().setVisible(true);
    new LoginForm().setVisible <--- setVisible(true) means show the form.
    and is new LoginForm() create an object from LoginForm class.
    public LoginForm() {
    initComponents();
    When it create a new object, it runs default constructor and calls iniComponoents and finally show the jframe.
    my question is when you create object, you usually declare variable and use variable to hold reference to the object.
    that's why i don't understand how it works here.
    it only create news object, bu no variable to holding it. how do i control this Jframe to show and hide without a reference variable????????????
    Edited by: roadorange on Feb 29, 2008 10:08 PM

    roadorange wrote:
    Encephalopathic . thank your reply so much. your reply is fast. i love it and love this forum.. LOLyou're welcome
    i tried hand-written code, and it looks just fine when design few buttons, labels and textfields.
    The adjustment of buttons(labels) are not that good on the frame.
    However, when you use IDE, you can drag the button on any spot you like in the jframe.... and in the process not learn how Swing works, and lose flexibility and power. Sorry to sound conceited, but I'll match any of your netbeans-created GUI's with one of my own, and mine will likely be better -- and I'm not all that good at this just yet.
    Much luck.

  • Which Mac Pro? More cores=slower speeds? And most of us know the speed matters or FPU for music and I don't understand the faster is for the least amount of procs. And while I get the whole rendering thing and why it makes sense.

    Which Mac Pro? More cores=slower speeds? And most of us know the speed matters or FPU for music and I don't understand the faster is for the least amount of procs. And while I get the whole rendering thing and why it makes sense.
    The above is what the bar says. It's been a while and wondered, maybe Apple changed the format for forums. Then got this nice big blank canvas to air my concerns. Went to school for Computer Science, BSEE, even worked at Analog Devices in Newton Massachusetts, where they make something for apple. 
    The bottom line is fast CPU = more FPU = more headroom and still can't figure out why the more cores= the slower it gets unless it's to get us in to a 6 core then come out with faster cores down the road or a newer Mac that uses the GPU. Also. Few. I'm the guy who said a few years ago Mac has an FCP that looks like iMovie on Steroids. Having said that I called the campus one day to ask them something and while I used to work for Apple, I think she thought I still did as she asked me, "HOW ARE THE 32 CORES/1DYE COMING ALONG? Not wanting to embarrass her I said fine, fine and then hung up.  Makes the most sense as I never quite got the 2,6,12 cores when for years everything from memory to CPU's have been, in sets of 2 to the 2nd power.  2,4,8,16,32,64,120,256,512, 1024, 2048,4196,8192, 72,768.  Wow. W-O-W and will be using whatever I get with Apollo Quad. 
    Peace to all and hope someone can point us in THE RIGHT DIRECTION.  THANK YOU

    Thanks for your reply via email/msg. He wrote:
    If you are interested in the actual design data for the Xeon processor, go to the Intel site and the actual CPU part numbers are:
    Xeon 4 core - E5.1620v2
    Xeon 6 core - E5.1650v2
    Xeon 8 core - E5.1680v2
    Xeon 12 core - E5.2697v2
    I read that the CPU is easy to swap out but am sure something goes wrong at a certain point - even if solderedon they make material to absorb the solder, making your work area VERY clean.
    My Question now is this, get an 8 core, then replace with 2 3.7 QUAD CHIPS, what would happen?
    I also noticed that the 8 core Mac Pro is 3.0 when in fact they do have a 3.4 8 core chip, so 2 =16? Or if correct, wouldn't you be able to replace a QUAD CHIP WITH THAT?  I;M SURE THEY ARE UO TO SOMETHING AS 1) WE HAVE SEEN NO AUDIO FPU OR PERHAPS I SHOULD CHECK OUT PC MAKERS WINDOWS machines for Sisoft Sandra "B-E-N-C-H-M-A-R-K-S" -
    SOMETHINGS UP AND AM SURE WE'LL ALL BE PLEASED, AS the mac pro      was announced Last year, barely made the December mark, then pushed to January, then February and now April.
    Would rather wait and have it done correct than released to early only to have it benchmarked in audio and found to be slower in a few areas- - - the logical part of my brain is wondering what else I would have to swap out as I am sure it would run, and fine for a while, then, poof....
    PEACE===AM SURE APPLE WILL BLOW US AWAY - they have to figure out how to increase the power for 150 watts or make the GPU work which in regard to FPU, I thought was NVIDIA?

  • I am new to Final Cut Express and don't understand why I am unable to drag transitions into Canvas? Something wrong in my setup? It's not the overlays they are "on" so can anyone advise me please?

    I am new to Final Cut Express and don't understand why I am unable to drag transitions into Canvas? Something wrong in my setup? It's not the overlays they are "on" so can anyone advise me please, by the way the "L" doesn't appear in the bottom left hand corner either? and by the way how can I get rid of that irritating Blue badge saying "AutoFill your contact details" all mine are in "address book" already!

    You can't drag a transition into the canvas. If you're dragginmg a transition from the effects tab you drag it between the edit point of two clips in the timeline.
    Make sure show edit overlays is turned on in the Canvas view popup.

  • I don't understand the thing you call live bookmarks never used it, and most forums I have used notify VIA E-mail not giving out my E-mail address information when a reply has been made to the thread in question.

    So how do I get notified of updates in this forum? As I said: I don't understand the thing you call LIVE BOOKMARKS I have never used them, and most forums I have used notify VIA E-mail not giving out my E-mail address, or other private information when a reply has been made to the thread in question, so how do I get notified of updates in this forum? I have seen no normal options for setting my viewing preferences used for this forum. Thank You.

    Thanks for your reply via email/msg. He wrote:
    If you are interested in the actual design data for the Xeon processor, go to the Intel site and the actual CPU part numbers are:
    Xeon 4 core - E5.1620v2
    Xeon 6 core - E5.1650v2
    Xeon 8 core - E5.1680v2
    Xeon 12 core - E5.2697v2
    I read that the CPU is easy to swap out but am sure something goes wrong at a certain point - even if solderedon they make material to absorb the solder, making your work area VERY clean.
    My Question now is this, get an 8 core, then replace with 2 3.7 QUAD CHIPS, what would happen?
    I also noticed that the 8 core Mac Pro is 3.0 when in fact they do have a 3.4 8 core chip, so 2 =16? Or if correct, wouldn't you be able to replace a QUAD CHIP WITH THAT?  I;M SURE THEY ARE UO TO SOMETHING AS 1) WE HAVE SEEN NO AUDIO FPU OR PERHAPS I SHOULD CHECK OUT PC MAKERS WINDOWS machines for Sisoft Sandra "B-E-N-C-H-M-A-R-K-S" -
    SOMETHINGS UP AND AM SURE WE'LL ALL BE PLEASED, AS the mac pro      was announced Last year, barely made the December mark, then pushed to January, then February and now April.
    Would rather wait and have it done correct than released to early only to have it benchmarked in audio and found to be slower in a few areas- - - the logical part of my brain is wondering what else I would have to swap out as I am sure it would run, and fine for a while, then, poof....
    PEACE===AM SURE APPLE WILL BLOW US AWAY - they have to figure out how to increase the power for 150 watts or make the GPU work which in regard to FPU, I thought was NVIDIA?

  • HT1296 When i attempt to sync my iphone it continues to say this computer is no longer authorized for apps and they will be deleted?? I don't understand?? I put my password and authorize but same message comes up.  What to do??

    When i attempt to sync my iphone it continues to say this computer is no longer authorized for apps and they will be deleted?? I don't understand?? I put my password and authorize but same message comes up.  What to do??

    I found the solution in another post.  By deleting all my apps, I was able to sync the phone.  I hope I don't have to delete all my apps every time I want to sync my phone, but at least now I am able to sync my phone.

  • My iMessage is still not working with my iPod touch 5th generation, and I don't understand the whole troubleshooting thing

    I read the thing for the troubleshooting messages and I don't understand it. I just want to send and receive messages on my iPod touch 5th generation 

    iOS: Troubleshooting Messages

  • I try to create my Account ID....and i don't understand why i have to put payment? before my friend create Account ID don't have to put payment they still can create account ID... and now i buy iphone but i don't have credit card that mind i can't not do

    Dear
    I try to create my Account ID....and i don't understand why i have to put payment? before my friend create Account ID don't have to put payment they still can create account ID... and now i buy iphone but i don't have credit card that mind i can't not do it

    Hi,
    This Link explains how to Set Up an Account ID...  without a credit card...
    http://support.apple.com/kb/HT2534
    Hope it helps,
    Cheers,

Maybe you are looking for

  • Error while generating WebService Proxy..!!

    Hi... I am getting an Error when i try to generate a Web-Service Proxy on JDeveloper for one of the Oracle WorkFlow Services viz., the[b] "TaskService" ie., http://host:port/integration/services/TaskService/TaskServicePort?wsdl The wizard exits with

  • ECL-Viewer does not save Layer

    After doing redlinig using WebECL-Viewer in cFolders i click on "Finish viewer session". A promt asks to save the Layer.cgm but after that, no Layer is saved. Anyone knows this problem? Has anyone a suggestion what to do? Thanks!

  • Who has Office 2003 installed? Need your help

    http://bugs.winehq.org/show_bug.cgi?id=25460 In Word/Excel File->Properties dialog. When I type something in a text box and press TAB, the next text box becomes active (as expected). But before that the tab symbol is inserted into the first text box.

  • Refresh Mechanisms - Urgent!

    Hey, Can anyone tell me if fast refresh is implemented with replication of sql commands or with another way of applying changes, like SQL-Server's Merge Replication? I'd like to know also how Multimaster Replication Assynchronous Replication is imple

  • It looks like a battery problem, but isn't

    I have a 4G, purchased the end of 2004. I replaced the battery last year. The battery appeared to go again, so I replaced it again. The battery looked half charged when I connected it, though it said fully charged when I used someone else's charger (