Not yet decided

I've been using Dreamweaver and Flash to build sites for
about a year. I'd like to learn to build sites with data bases
attached. Several sites linking to one database.
Anyway, I don't know where to start or what programs would
make the most sense for someone with very limited programming
knowledge like myself. I'd like to stick to the Adobe/Macromedia
programs so I'm considering Coldfusion-Flash.
So, the question is, what programs would the easiest for me
to lean while not limiting too much the sites?

ColdFusion would be a good choice for you, especially b/c it
integrates well with Flash and databases, either Access (comes with
Office) or MySQL (free!) or MS SQL Server (big and sorta
expensive).
The best book to learn ColdFusion is by Ben Forta. It's
called the Web Application Construction Kit (WACK) and you can find
it on Amazon. There are different versions of ColdFusion to
download for free, I use version 7.02 still but the latest is
version 8.0. Here's a
link
to get started with the intro and download the software.
You can also pick up the book "Teach yourself SQL in 10
minutes" to get a good grip on the database part.
Link

Similar Messages

  • My iphone was stolen so I decided to delete my device in find my iphone,  but the it has not yet been deleted bec the device is not connected to the internet yet. Can I undo my changes before it will be deleted from icloud? Thank you

    Hi Suport,
    My iphone was stolen yesterday so I decided to delete my device in find my iphone,  but the it has not yet been deleted bec the device is not connected to the internet yet. Can I undo my changes before it will be deleted from icloud? I want to undo the changes because I may find my phone when it connects to the internet. Thank you
    See image below:
    email is [email protected] for questions thank you Apple. I hope you could help me.

    Sorry, you can't undo your action remotely.

  • Updates should (optionally) be blocked if key addons are not yet compatible

    Example: I depend on Roboform to maintain several hundred unique secure passwords and other user credentials. Updates to firefox frequently break the addon. I should be able to say no thankyou to any update until the addons have caught up.
    At the moment, that requires an uninstall of firefox and reinstallation of the old version.
    a) is there a better workaround?
    b) when is the (delay until addon compatible) option going to be made available?

    nobody is addressing the actual issue I am raising.
    I'm fully aware of how the update process works - including third party addons
    The design flaw I'm addressing is the Firefox update procedure itself. Telling us that an addon is incompatible AFTER the update is as useful as a chocolate teapot.
    We need to know BEFORE THE FIREFOX UPDATE PROCEEDS whether or not key addons (of our choice) are already compatible. If they are not, then we should simply have the option of delaying the update until the addons have caught up.
    To achieve this, we need an additional option in the Addon manager which says something like "Delay Firefox Update (and warn user) if Addon is incompatible with update".
    We could then mark the relevant key addons and be assured that, come the next firefox update, it would check the compatibility status of those marked addons before proceeding with the update. If if found any not yet ready, it would warn the user that the update could not be carried out without disabling the addon (and give the user an option to proceed regardless, if, for instance, the user decides the benefits of updating firefox - eg to fix a major security flaw - outweigh the inconvenience of losing the addon for a few days)
    I hope that is clearer now.

  • FillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?

    I know this is a very basic question and I also undestand that I have to include the same in my XXXFactoryList.h file.
    But the issue is that I have included it perfectly every where and still I an getting this ASSERT due to this, no instance of my CSDTPObserver:CObserver is getting created
    Please help to get this rectifiedFillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    below code from file CSDTPObserverImpl.cpp
    CREATE_PMINTERFACE(CSDTPObserverImpl, kCSDTPObserverImpl)
    /* CSDTPObserverImpl Constructor
    CSDTPObserverImpl::CSDTPObserverImpl(IPMUnknown* boss)
      : CObserver(boss, IID_ICSDTPOBSERVER)
    below code from CSDTPFactoryList.h:
    REGISTER_PMINTERFACE(CSDTPObserverImpl, kCSDTPObserverImpl)
    Below code from CSDTP.fr:
    resource FactoryList (kSDKDefFactoryListResourceID)
      kImplementationIDSpace,
      #include "CSDTPFactoryList.h"
    resource ClassDescriptionTable(kSDKDefClassDescriptionTableResourceID)
    AddIn
      kDocBoss,
      kInvalidClass,
      IID_ICSDTPOBSERVER, kCSDTPObserverImpl,
    Below code from CSDTPID.h:
    // InterfaceIDs:
    DECLARE_PMID(kInterfaceIDSpace, IID_ICSDTPOBSERVER, kCSDTPPrefix + 6)
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 5)
    Can some one please point out the mistake I am doing here???

    Hi Dirk,
    Please see below configuration in XXXID.h file:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 3)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,  kCSDTPPrefix + 4)
    Above configuration is giving me below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPObserverImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now I changed the configuration as below:
    // ImplementationIDs:
    DECLARE_PMID(kImplementationIDSpace, kCSDTPServiceProviderImpl, kCSDTPPrefix + 0)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPIndesignResponderImpl, kCSDTPPrefix + 1)
    DECLARE_PMID(kImplementationIDSpace, kCSDTSelectionObserverImpl, kCSDTPPrefix + 2)
    DECLARE_PMID(kImplementationIDSpace, kCSDTPObserverImpl, kCSDTPPrefix + 4)        //<-------changed from 3 to 4
    DECLARE_PMID(kImplementationIDSpace, kCSDTPStartupShutdownServiceImpl,   kCSDTPPrefix + 3)    //<-------changed from 4 to 3
    Now it is giving below ASSERT:
    FillOutInterfaceInfo - Impl kCSDTPStartupShutdownServiceImpl not yet registered. Missing from factory list resource in plugin kCSDTPPluginID?
    Now this looks really wierd. I also tried with some random combinations 5,6,7 but none is working and some how 3 is not working but 4 is working. Now how can I decide which
    is going to work and why 3 is not working here.
    Please enlighten me if any one has any clue here

  • I'm tired of constantly reading "not yet" for any questions regarding a 64-bit Firefox. Exactly WHEN will there be a FF 64-bit?

    I'm tired of constantly reading the simplified answer of "not yet" for any questions regarding a 64-bit Firefox. Exactly WHEN will there be a Firefox 64-bit?

    That hasn't been decided yet for Windows PC's. So instead of "not yet", how about '''when it is ready for release'''?

  • How can i check for posted but not yet commited changes in a form

    Dears
    I make changes programmatically in a form then i post it using (Post built in).
    If the user exits the form, i make check for any changes in the form to commit it using the system variable :system.form_status
    Unfortunately the value of this system variable is 'Query' not 'Changed' because of using the post built in.
    Is ther another system variable ( or any another way ) that check for posted but not yet commited changes in the form ?
    Thanks a lot
    Mostafa Abolaynain

    I had faced similar situation. Using of package variable which identifies, what is the user's latest action.
    This is just a workaround.
    Capture what the user has performed into a variable say, PKG_VAR.ACTION,
    This will be assigned values like List L, and Create C, Update U and Saved S.
    If commit is executed,assing the status S to the variable.
    So while closing,
    IF :system.form_status = 'CHANGED' or PKG_VAR.ACTION in ('C','U') THEN     
    -- validate the data, n perform commit.
    else
    -- just close the form.
    end if;
    Regards
    Deepz : )

  • Unable to get the composite instance for the invocation. This could be because instance has not yet been created or because the audit level for the SOA infra has been set to Off

    I am on Oracle 11.1.1.7 BPM suite on W8 64 bit. I can't launch the flow trace and get the error "Unable to get the composite instance for the invocation. This could be because instance has not yet been created or because the audit level for the SOA infra has been set to Off".  I have set the audit level to development at the soa-infra>SOA Administration> Common Properties > Audit level set to development and Capture Composite Instance State is Checked.
    Can somebody advice.
    Thanks

    Can you please confirm me the following steps...
    Log in to the EM console, Expand soa-infra (soa_server1) , go to the partition where your composite is been deployed, Click on your composite, On the right, click on the dropdown Settings and choose Composite Audit Level. you can choose to set the Audit Level for this composite. If you choose Inherit, it will take the settings to what the server is being set to. Otherwise, we can override it by choosing Off, Production, or Development.
    Make sure your setting for that composite is not Off, keep inherit or production or development.
    Thanks,
    N

  • How to revert back a SAP NOTE? Dump- Field symbol has not yet been assigned

    Hi Experts,
    We r getting dump(cause: Field symbol has not yet been assigned) in production for ABUMN tx, so, when debugged, it came to know that, the Field symbol is coming from REUSE_ALV_LIST_DISPLAY!!
    So, for some reason the system message text is not getting output in ALV-->Dump!!
    So, found a NOTE causing this problem!!
    So, pls. let me know that, How to revert back this/any SAP NOTE? pls. in detail steps wise!!
    thanq
    Edited by: Srinivas on Jan 24, 2008 4:32 PM

    Hi
    In SNOTE tcode,  select the Note that you implemented and click on 'RESET SAP Note Implementation'
    shylesh

  • How do I go back to Firefox 5.0? I need to use Selenium IDE, which is not yet compatible with 6.0.

    How do I go back to Firefox 5.0? I need to use Selenium IDE, which is not yet compatible with 6.0.

    The link is to the latest update to 4.o which was 4.0.1
    The 4.0.1 and 5.0 are two separate versions as installing 4.0.1 over 5.0 will just give you the old 4.0.1 as the end result.
    The 5.0 is partially as a security update in place of 4.0.2.
    The Skype extension was only for to make it so you can dial phone numbers on a web page in the separate Skype program right so if you were not using it then no need for the Skype extension for the separate Skype application to work.

  • "Transfer structure is not yet active" in each variant of a process chain

    I run a big process chain in test environment that I had never run before, but find almost every variant of the process chain show the red error, when I right click the red color variant, get the msg at the status bar that says "Transfer structure is not yet active".  Is there a way that can do the mass activation of all master data attributes?
    Thanks

    Hi I have the same error message
    When I intend running the program to Activate Transfer Structures I get  the following error messages
    @5C\QError@     Activation not possible: Transfer structure contains invalid field LANGU
    @5C\QError@     Transfer structure 0MATERIAL_HIER_AB1 NOT activated successfully Activate manually
    @5C\QError@     Activation not possible: Transfer structure contains invalid field NODENAME
    @5C\QError@     Transfer structure 0MATERIAL_HIER_AB1 NOT activated successfully Activate manually
    @5C\QError@     Activation not possible: Transfer structure contains invalid field LANGU
    @5C\QError@     Transfer structure 0MATERIAL_HIER_AB1 NOT activated successfully Activate manually
    @5C\QError@     Transfer structure 0MATERIAL_HIER_AB1 NOT activated successfully Activate manually
    Please Advise on how to fix it .

  • HT2589 when I try and log in my i-tunes account or my app store account on my i-phone it says "this apple I.D has not yet been used on the i-tunes store" it gives me 2 optins "cancel" or "review" I press review, enter my bank details but they decline..why

    Hi can anybody help or advise me? I've recently bought the i-phone 4s, I've set up my apple I.D and password but everytime I try and log in it says "this apple I.D has not yet been used on the i-tunes store" I click "review" follow the instructions and agree to the terms and condition's, enter my bank details but it declines every time? I've tried both my accounts and its declined both, this stops me from logging in so I can't download anything for free or buy anything, my sister had the option of skipping the bank details part when she created her apple I.D and just enters her's when buying something, why do I not have that option?? And why is it declining my bank details...please HELP!!!!!

    The details I'm entering are correct, I choose visa as my card type, enter my card number, enter my expiry date and my last 3 digts on the reverse of the card, enter my address and zip code plus my home telephone number, click continue and it says "the payment method you have selected has been declined, please enter another payment method". I've lost count how many times I've tried, I've typed my details in slowly making sure I put them in properlly and it still declines it, I've even tried makeing a new apple I.D and when I get to the bank details part it declines it again so I am forced to press cancel and all details are not saved so its just like I'm hitting a brick wall, its ******* me off!!! I can't even download any of the free app's because to do so you must log in but when I do it says "this apple I.D has not yet been used in the i-tunes store" review my details and can't get past the bank details part. So doesn't log me in, I'm honestly out of ideas

  • Why does my ipad say not yet connected to itunes store? It wont let me download apps

    I'm a first time user. Tohis happens when i try to download an app it always says that its not yet connected to the itunes store. Help?! (the new ipad 3)

    1.5GB is basically full.  Your iPad needs an absolute minimum of 10% of its total space free, and maybe more.
    You can go to Settings > General > Usage and see the space hogs and do some cleaning based on what you see.

  • Why when i want to download a free app from app store it asks for my apple id and when i give my apple id it then says "this apple id has not yet been used in the itunes store". i dont even know what that means and it will this happen everytime?

    why when i want to download a free app from app store it asks for my apple id and when i give my apple id it then says "this apple id has not yet been used in the itunes store". i dont even know what that means and it will this happen everytime?

    If you are within 14 days of purchase you can still return the iPhone and get the phone that suits your needs, however, I think you will find that no matter which phone you get the content provider will want to know how you are going to pay for future purchases. For Android phones it is Google, and they will certainly want to know.
    To create an Apple account without a credit card see: http://support.apple.com/kb/HT2534

  • Please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    Ok, you should generally only get this when you are converting your ID to an iTS account for the first time.
    Sign into iTunes with your Apple ID and you should get this.... IRC once you agree or accept it's now an iTS account and you wont get that again.

  • Whenever i try to login with my apple ID , it says this ID is not yet used on itunes. & because of this i can't even download apps. Please someone tell me what should i do ? ASAP.

    Whenever i try to login with my apple ID , it says this ID is not yet used on itunes. & because of this i can't even download apps. Please someone tell me what should i do ? ASAP.

    Read here:
    http://support.apple.com/kb/ht2589

Maybe you are looking for

  • Acrobat 7 Accessibility - Turning Off Reading

    I am using Acrobat 7.0.5 Professional. Recently, the program began automatically launching the dialog box to read a document out loud each time a new document is opened. I searched the help files and cannot find any way to turn this feature off. Anyo

  • Cancel a delete action in a trigger

    Hi, I would like to know the best way to cancel a delete in a trigger, I want to instead change a Field called Active to 'N' My application is built on views that exclude records with this flag set to 'N' I have found the IF DELETING ('id') THEN synt

  • RPD: Multiuser Environment Problems

    Hi All, We are planning to use MUD in OBIEE -Rpd development. I am wondering is there any know issues /Common Mistakes I have to watch out for/Aviod ? How will MUD repository will get impact when we integrate with LDAP servers for external Authentica

  • Why does LabVIEW take significantly longer to display a large amount of Chineese characters? (intentionally misspelled)

    EDIT: I am intentionally misspelling the word for "the language of China" otherwise the forum will censor me, seriously. We have a large application based on LabVIEW. In this application, we use flattened strings to pass data between VIs. I recently

  • Graph drawing in JSP

    How can i get my jsp to draw a graph automatically with results from a database. The main problem is tryiing to get the JSP to display a graph. The rest I could probably figure out. Can anyone help me please??????????????????????