Why can't I add some data to my DB?

The problem appears when i try add some data to phpMyAdmin DB.  Alert.show shows me the line from php file saying that the query is not completed : "echo "<status>Sukurti nepavyko</status>";
Please help me.
This is all code from app, php and database:
app
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" verticalAlign="middle" horizontalAlign="center"
applicationComplete="klaseinit(), init(), tipasinit()">
    <mx:Script>
    <![CDATA[
    import mx.controls.Text;
    import mx.events.ResizeEvent;
        import mx.rpc.events.ResultEvent;
        import mx.controls.Alert;
        import mx.controls.DateField;
        import mx.events.DateChooserEvent;
        import mx.collections.ArrayCollection;
        [Bindable]
        public var newUsername:String;
        [Bindable]
        public var newPassword:String;
        [Bindable]
        public var newPassword2:String;
        [Bindable]
        public var newVardas:String;
        [Bindable]
        public var newPavarde:String;
        [Bindable]
        public var newKlase:String;
        [Bindable]
        public var newTipas:int = new int();
        [Bindable]
        public var newTel:String;
        [Bindable]
        public var newAdresas:String;
        [Bindable]
        public var newElpastas:String;
        [Bindable]
        public var newGimimoData:Date = new Date();
        [Bindable]
        public var newGimimoData2:String;
        [Bindable]
        public var dataDump:String = "dataDump";
        private function klaseinit():void{
        klaseServ.send();
        private function tipasinit():void{
        tipasServ.send();
       private function dateChooser_init():void {
                newGimimoDataTxt.dayNames=['Sekm', 'Pirm', 'Ant', 'Tre', 'Ket', 'Penk', 'Sest'];
                newGimimoDataTxt.monthNames=['Sausis', 'Vasaris', 'Kovas', 'Balandis', 'Gegužė', 'Birželis', 'Liepa', 'Rugpjūtis', 'Rugsėjis', 'Spalis', 'Lapkritis', 'Gruodis'];
                newGimimoDataTxt.firstDayOfWeek = 1;
       private function klaseResult(evt:ResultEvent):void{
            newKlaseTxt.dataProvider = evt.result.status;
       private function tipasResult(evt:ResultEvent):void{
            newTipasTxt.dataProvider = evt.result.status;
       private function tipasChange():void{
       if (newTipasTxt.selectedItem == "Mokinys" || newTipasTxt.selectedIndex == 3)
       newKlaseTxt.enabled = true;
       else
       newKlaseTxt.enabled = false;
        private function addNewUser():void{
        if (newUserTxt.text == "" || newPassTxt.text == "" || newPass2Txt.text == "" || newVardasTxt.text == "" || newPavardeTxt.text == "" || newKlaseTxt.text == "" || newGimimoDataTxt.text == "")
        Alert.show("* pažymėti laukai yra būtini!", "Tuščias laukas");
        else
        if (newPassTxt.text != newPass2Txt.text){
        Alert.show("Klaidingai pakartojote antrajį slaptažodį!", "Klaidingai pakartojote");
        newPassTxt.text = "";
        newPass2Txt.text = "";
        else
        newUsername = newUserTxt.text;
newPassword = newPassTxt.text;
newVardas = newVardasTxt.text;
newPavarde = newPavardeTxt.text;
newKlase = newKlaseTxt.selectedItem.toString();
newGimimoData = DateField.stringToDate(newGimimoDataTxt.text,"YYYY-MM-DD");
newTipas = newTipasTxt.selectedIndex.valueOf();
newElpastas = newElpastasTxt.text;
newTel = newTelTxt.text;
newAdresas = newAdresasTxt.text;
newUserTxt.text = "";
newPassTxt.text = "";
newPass2Txt.text = "";
newVardasTxt.text = "";
newPavardeTxt.text = "";
newGimimoDataTxt.text = "";
newElpastasTxt.text = "";
newTelTxt.text = "";
newAdresasTxt.text = "";
newUser.send();
       private function newUserResult(evt:ResultEvent):void{
        Alert.show(evt.result.status, "Result");
       private function init():void{
        getUsers.send();
        private function getUsersResult(evt:ResultEvent):void{
        userDG.dataProvider = evt.result.user;
    ]]>
    </mx:Script>
<mx:HTTPService id="newUser" url="php\newUser.php" method="POST" result="newUserResult(event)">
    <mx:request xmlns="">
        <newuser>{newUsername}</newuser>
        <newpassword>{newPassword}</newpassword>
<newvardas>{newVardas}</newvardas>
<newpavarde>{newPavarde}</newpavarde>
<newklase>{newKlase}</newklase>
<newgimimoData>{newGimimoData}</newgimimoData>
    </mx:request>
    </mx:HTTPService>
    <mx:HTTPService id="klaseServ" url="php\klase.php" method="POST" result="klaseResult(event)">
    <mx:request xmlns="">
        <data>{dataDump}</data>
    </mx:request>
    </mx:HTTPService>
    <mx:HTTPService id="tipasServ" url="php\tipas.php" method="POST" result="tipasResult(event)">
    <mx:request xmlns="">
        <data>{dataDump}</data>
    </mx:request>
    </mx:HTTPService>
    <mx:HTTPService id="getUsers" url="php\getUsers.php" method="POST" result="getUsersResult(event)">
    <mx:request xmlns="">
        <data>{dataDump}</data>
    </mx:request>
    </mx:HTTPService>
<mx:VBox>
<mx:ApplicationControlBar dock="false">
<mx:Label text="MENIU" color="blue"/>
<mx:MenuBar id="myMenuBar" labelField="@label">
            <mx:XMLList>
                <menuitem label="MenuItem A" >
                    <menuitem label="SubMenuItem A-1" type="check"/>
                    <menuitem label="SubMenuItem A-2" type="check"/>
                </menuitem>
                <menuitem label="MenuItem B"/>
                <menuitem label="MenuItem C"/>
                <menuitem label="MenuItem D" >
                    <menuitem label="SubMenuItem D-1" type="radio" groupName="one"/>
                    <menuitem label="SubMenuItem D-2" type="radio" groupName="one"/>
                    <menuitem label="SubMenuItem D-3" type="radio" groupName="one"/>
                </menuitem>
            </mx:XMLList>
        </mx:MenuBar>
<mx:LinkBar dataProvider="{['Facebook','Chat','Friends']}" />
<mx:rollOverEffect>
<mx:Glow blurXTo="5" blurYTo="5" color="white" />
</mx:rollOverEffect>
</mx:ApplicationControlBar>
<mx:HBox top="10" horizontalGap="10" left="10" right="10">
<mx:Panel title="Naujas Vartotojas" paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" layout="vertical" horizontalAlign="center">
<mx:HBox horizontalGap="10">
   <mx:VBox verticalGap="10" horizontalAlign="right">
     <mx:Label text="*Tipas"/>
      <mx:Label text="*Klasė"/>
      <mx:Label text="*Slapyvardis"/>
      <mx:Label text="*Slaptažodis"/>
      <mx:Label text="*Pakartokite slaptažodį"/>
      <mx:Label text="*Vardas"/>
      <mx:Label text="*Pavardė"/>
      <mx:Label text="Gimimo data"/>
      <mx:Label text="E.Paštas"/>
      <mx:Label text="Telefonas"/>
      <mx:Label text="Adresas"/>
   </mx:VBox>
   <mx:VBox>
     <mx:ComboBox id="newTipasTxt" change="tipasChange()"/>
      <mx:ComboBox id="newKlaseTxt"/>
      <mx:TextInput id="newUserTxt"/>
      <mx:TextInput id="newPassTxt"/>
      <mx:TextInput id="newPass2Txt"/>
      <mx:TextInput id="newVardasTxt"/>
      <mx:TextInput id="newPavardeTxt"/>
      <mx:DateField id="newGimimoDataTxt"
      editable="true"
            formatString="YYYY-MM-DD"
      width="160" height="22"
      showToday="false"
      displayedMonth="8"
      displayedYear="1999"
      firstDayOfWeek="1"
      creationComplete="dateChooser_init();"
      yearNavigationEnabled="true">
      </mx:DateField>
      <mx:TextInput id="newElpastasTxt"/>
      <mx:TextInput id="newTelTxt"/>
      <mx:TextInput id="newAdresasTxt"/>
   </mx:VBox>
</mx:HBox>
   <mx:Button label="SUKURTI" click="addNewUser();"/>
</mx:Panel>
    <mx:Panel title="Visi Vartotojai" height="390">
            <mx:DataGrid id="userDG" height="350" horizontalScrollPolicy="on" verticalScrollPolicy="on">
                <mx:columns>
                <mx:DataGridColumn headerText="Klasė" dataField="klase" width="40" textAlign="center"/>
                <mx:DataGridColumn headerText="Tipas" dataField="tipas" width="40" textAlign="center"/>
                <mx:DataGridColumn headerText="Pavardė" dataField="pavarde"/>
                <mx:DataGridColumn headerText="Vardas" dataField="vardas"/>
                    <mx:DataGridColumn headerText="Slapyvardis" dataField="username"/>
                    <mx:DataGridColumn headerText="Slaptažodis" dataField="password"/>
                    <mx:DataGridColumn headerText="Gimimo data" dataField="gimimodata"/>
                    <mx:DataGridColumn headerText="E.Paštas" dataField="elpastas"/>
                    <mx:DataGridColumn headerText="Tel" dataField="tel"/>
                    <mx:DataGridColumn headerText="Adresas" dataField="adresas"/>
                </mx:columns>
            </mx:DataGrid>
    </mx:Panel>
</mx:HBox>
</mx:VBox>
</mx:Application>
php file
<?PHP
$hostname_conn = "localhost";
    $username_conn = "root";
$password_conn = "";
    $conn = mysql_connect($hostname_conn, $username_conn, $password_conn);
mysql_select_db("socDB");
//$values = $_POST['id'];
//mysql_real_escape_string POST'ed data for security purposes
    $newuser1 = $_POST["newuser"];
    $newpassword1 = $_POST["newpassword"];
$newvardas1 = $_POST["newvardas"];
$newpavarde1 = $_POST["newpavarde"];
$newklase1 = $_POST["newklase"];
$newgimimoData1 = $_POST["newgimimoData"];
$newtipas1 = $_POST["newtipas"];
$newelpastas1 = $_POST["newelpastas"];
$newtel1 = $_POST["newtel"];
$newadresas1 = $_POST["newadresas"];
$query = "SELECT * FROM vartotojas WHERE USERNAME = '$newuser'";
$result = mysql_query($query);
$logged = mysql_num_rows($result);
if ($logged == 1)
$log = false;
else
$log = true;
if ($log == true)
$sql = "INSERT INTO vartotojas (USERNAME, PASSWORD. VARDAS, PAVARDE, KLASE, GIMIMODATA, TIPAS, ELPASTAS, TEL, ADRESAS) VALUES('$newuser1','$newpassword1','$newvardas1','$newpavarde1', '$newklase1','$newgimimoData1','$newtipas','newtipas1','$newtel1','$newadresas1)";
if (!mysql_query($sql, $conn))
echo "<status>Sukurti nepavyko</status>";
else
echo "<status>Naujas vartotojas sukurtas!</status>";
else
echo "<status>Šis vartotojo vardas yra užimtas, bandykite kita!</status>";
?>
phpMyAdmin structure:
Please help!

$sql = "INSERT INTO vartotojas (USERNAME, PASSWORD. VARDAS, PAVARDE, KLASE, GIMIMODATA, TIPAS, ELPASTAS, TEL, ADRESAS) VALUES('$newuser1','$newpassword1','$newvardas1','$newpavarde1', '$newklase1','$newgimimoData1','$newtipas','newtipas1','$newtel1','$newadresas1')";
you appear to have missed a quotation mark right at the end of this statement, i've highlighted it in red.
a brief check over, you seem to be doing everything correctly, my bet would be that you've made a simple mistake in your syntax like i mentioned above, you'll just have to check through it thoroughly.
if it still doesn't work, i'd suggest cutting it down in size, try to add one field and get that working. Once it does, build it up from there testing each time and see when it goes wrong.
i think i've already mentioned to you that i have an example app here that adds information to a database:
http://www.mattlefevre.com/viewExample.php?tut=flexPHP&proj=Simple%20Login%20Application
i'd recommend going back to that if you still can't get it to work, as i know that's working fine

Similar Messages

  • Why can't I add some songs to a playlist?

    Hi,
    I'm wondering why certain songs won't drag and drop or Add To a Playlist?  There are certain songs in my music library that, when attempting to move, appear with the red circle/slash through icon instead.
    All of my songs have either been purchased through iTunes store or imported from a CD, if that helps.
    Thanks

    I ejected my iPhone then it worked. Maybe it locks the contents in some way.

  • Why can't I add narration now ?

    I have added narration in the past on previous versions of Premiere elements and on Pre 10 but in the last 2 weeks I get an error when I click on the red record button I get a error message that my audio hardware selection does not have any input channels and I should go to Preferences, Audio Hardware to correct this.
    I go to Preferences Audio hardware and and it shows Premiere elements WDM Sound and next box has ASIO setting. I click on these and I see no other possibilities or choices.
    I still have Pre 8  loaded and the narration will not work now on it with the same error.
    What could cause this after narration has always worked in the past?

    Bill I believe I have answered your questions If not get
    back to me and I will try. I am a Snowbird in a motorhome traveling in AZ. And
    the internet comes and goes from time to time. And being a senior my computer
    skills leave me at a disadvantage. I really appreciate you trying to help me.
    Thank You
    Ralph
    Computer Lenova Ideapad Y-530 Windows 7 64 bit
    Processors: Intel ® Core 2 DUO CPU T5900@ 2.20 GHz
    Intel® Core 2 DUO CPU T5900@ 2.20 GHz
    Chip set Mobile Intel 4 series chipset Processor To Dram
    controller 2A40
    All drivers have been updated and rechecked for updates
    today all were current.
    When in project and I click (Edit, Preferences, Audio
    Hardware) The box opens with Default device shown as Premiere Elements WDM
    sound. Then when I click ASIO settings a new window opens showing Logitech H
    150 as default device.( Left Panel 3.5 MM External Jack)  I also use this in Skype for phone calls and
    also tried it in Windows Movie Maker and it works OK.
    In the ASIO box there is 3 other choices:
    Speakers (High definition Audio Device)
    Digital Audio (S/PDIF) (High definition Audio Device)
    Laptop internal (High definition Audio Device)
    I Have tried all 4 devices with the same results
    When in project and clicking on Audio, Add narration, the (Record
    voice narration) window pops up and when I clink the microphone box to choose
    mic the box lights up but no choices show.
    In Control Panel, device mgr I do not see the Logitech  h 150 listed
    Narration was working till about 2 weeks ago. I do not
    believe I have changed anything.
    A bout 3 days ago I uninstalled Premiere el 10 and Photoshop El 10 and reinstalled both, I thought that may help but no change
    Date: Fri, 10 Feb 2012 10:37:01 -0700
    From: [email protected]
    To: [email protected]
    Subject: Why can't I add narration now ?
        Re: Why can't I add narration now ?
        created by Bill Hunt in Premiere Elements - View the full discussion
    Welcome to the forum. What is the make/model of your mic.? What is the connection type? What is the make/model of your sound card/chip? Do you have the latest driver for that sound card/chip installed? In a program, like Windows Recorder, does the mic. work fine? In Control Panel>System>Hardware>Device Manager, does your mic. show up with no errors, or warnings? What is the ASIO setting now? Good luck, and please let us know a bit more. Hunt
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4198766#4198766
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4198766#4198766. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Premiere Elements by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Why can't I open some of my documents on Pages even though I created them all on the same IPad with the same Pages ap?

    Why can't I open some of my documents on Pages even though I created them all on the same IPad with the same Pages ap?

    I think I know the problem because I've had it myself. I didn't upgrade iWorks on my iPad, but after Apple made changes to iCloud (concurrent with Mavericks) any docs passing through it were modified and made unreadable. Even though, as you say, they were created on my iPad using the previous version of iOS Pages, which I didn't upgrade.
    iCloud is the culprit, if your iPad settings had iCloud>Documents & Data enabled, the docs were modified and disabled in the cloud.
    I made a further mistake. After I saw this happening, I didn't think to turn off auto updates, and Apple pushed the new version of iOS Pages onto my iPad. The result was that ALL my docs disappeared from the iPad, and from iCloud.com also. I have not been able to recover them.
    I've been talking to the Pages engineering team about it. If they come up with an answer, I'll post it here. Meanwhile, get those older files backed up somewhere safe if you can.

  • Why can't Adobe add the feature of viewing focus points? This is an obvious,  common sense feature that Adobe Engineers must understrand how to do, No?

    Why can't Adobe add the feature of viewing focus points? This is an obvious,  common sense feature that Adobe Engineers must understrand how to do, No?
    I've seen this requested in several past Lightroom versions.
    Is Adobe not addressing this basic feature for a reason?, I mean, even Aperture has this feature, it can't be that hard to add? Can it?
    Maybe Adobe isn't reading the feature request?

    Honestly, I am hardly qualified to even guess - there are tons of bugs reported that would be easy to fix, but aren't, features that would be useful and easy enough to implement, but aren't. Things like focus points which seem like a no brainer but are never implemented - your guess is as good as mine..
    But to be clear: focus points are different for different cameras, and are stored in proprietary metadata. - not impossible to get at, obviously, but requires some programming/maintenance..
    Worth noting: Apple is shutting down their Aperture business. Yeah, they support focus points and all kinds of good stuff, but I guess Aperture isn't a real money-maker for them (lotsa maintenance work, but not a lot of revenue) - relatively small market.
    Adobe has been working on Revel, and Lightroom Mobile.., instead of focus points (and bug fixes, and...) - my guess: that's where the money is, or where they think it is.
    Cheers,
    Rob

  • HT201386 Why can't I add a title to a photo anymore?

    Why can't I add a title to a photo anymore in Iphoto editing?
    Thanks,
    Lpkaufman

    For a transition to work, you need handles... basically, enough footage to overlap each other so that the transition can grab from both sides... your clip is merely 7 frames, way too short to be able to add a transition...
    I've used the "joining two pieces of fabric" analogy before, but I think it was too girly.. Perhaps another way to think about it, is to think of a "dovetail joint" used in wood working... the two pieces of wood need to grab onto each other in order to hold together...
    Anyhow, doing a quick search to perhaps better explain, I found this:
    http://multimedia.journalism.berkeley.edu/tutorials/finalcut/transitions-handles /

  • Why can't I add text in the signature panel in firefox?

    why can't I add text in the signature panel in firefox?  I have adobe acrobat pro XI.  I can open a pdf in acrobat pro and am able to add text to a pdf, but when I open a pdf in firefox, the "add text" option is not available.

    When you install Acrobat XI you are also installing Reader for use in the browser. Reader is "sandboxed", or as it says in the Preferences, it is in "Protected Mode". Acrobat does not understand the concept of running in sandboxed memory (sandbox is a security feature to prevent the bad guy from exploiting a memory error and getting into a memory address where they can do damage to your computer) so to help protect Acrobat users the same way Reader users are protected we just install Reader along with Acrobat, but it is only used in the browser (part of this is because the bad guys use web sites as their primary method of distributing corrupted PDF files that can cause problems).
    That said, because you are in Reader the file needs to be Reader Enabled prior to being posted to the web site (or opened in the browser). Once the file is Reader Enabled you should be able to add the text annotations.
    Steve

  • Why can I not open some attached emailed pdf files?

    PLEASE HELP ME! I HAVE TO OPEN THESE FILES MY BUSINESS DEPENDS ON IT! why can I not open some attached pdf files and others are ok?

    PDF files are extremely reliable. You may have a software issue. I have the problem on 2 identical systems with the exact same specs. The problem occurs at the same exact interval. It may be a windows update. We have had to re-install software form the DVD in each instance. This fixes it for awhile and then it recoccurs. Adobe acts as if they have never heard of the problem...imagine that. I'm the only one with th problem.
    This is happens with CS6 volume lic product.
    If you dont own Adobe product it will be even more difficult to find and answer as the reader is used my so many people.
    We know we have the problem again when we double click opn a PDF and nothing happens. SOme have reported that reloading does not fix the problem.
    Wish I could help you. I am looking for answers to this issue right now and phone support is a 30 minute wait.
    Very frustrating.

  • Why can't I see the data in the spreadsheet ?

    why can't I see the data in the spreadsheet file in Which I wrote my output data? I set the format of write to spreadsheet file to be %.11f. Though I can see only colums of zeros, I can plot out the data.

    I tried th "%.11f" format and it worked in the attached VI (6.1). Please respond and attach a small example VI that demonstrates your problem.
    Chris_Mitchell
    Product Development Engineer
    Certified LabVIEW Architect
    Attachments:
    array_test.vi ‏15 KB

  • Why can't I add HD videos to my iPod touch?

    So I recently bought an iPod touch, and I haven't had trouble with it until now. I downloaded a free TV show extra thing and it's in HD & SD, and it downloaded fine and everything. But when I tried to add it to my iPod, a popup comes up with the message: "Blah blah blah" was not copied to the iPod "Michaela's iPod" because it cannot be played on this iPod.
    Why? I tried to do the "Advanced Settings" and convert it, but the convert option is grayed out and I can't choose it. I thought the iPod touch could play HD (and I do have another HD video on it currently), so why can't I add this new HD/SD video to my iPod? And I know there's enough space because I have 24.6 GB free space.

    It's the screen format see below.
    The iPad and iPhone 4 can play High Definition (HD) content and Standard Definition (SD) content. iPods and the original iPhone, iPhone 3G, and iPhone 3GS can play Standard Definition (SD) content. To find what video formats are supported, see the Tech Specs page, click your device's product family, and then your specific model. All HD purchases from the iTunes Store also include an iPod/iPhone-compatible Standard Definition version to accompany the HD version. When syncing an HD purchase from the iTunes Store, iTunes will automatically sync the SD video for devices that require SD content.

  • Why can't i move some music to my iPhone from iTunes?

    why can't i move some music to my iPhone from iTunes? i have some songs the tracks names are faded and wont move to my iphone and others that arnt faded and still wont move?

    For the faded tracks right mouse click on them and select Check Selection.
    What are the others that will not move?

  • Why can't I print some emails?

    Why can't I print some emails?    

    Hello paulette238,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/ts3147
    Have a nice day,
    Mario

  • Why can't I add any more photos to my nearly completed movie?

    Why can't I add any more photos to my nearly completed movie?

    Assuming you are using iMovie, please post your question in the following section...
    https://discussions.apple.com/community/ilife/imovie

  • Why can't I add or edit an entry on myiPhone Cal?

    Why Can't I add ,or edit an entry on my iPhone Cal?

    Wienderful,
    Make sure your email address on the iPhone and the Exchange server are the same. This article explains more:
    http://support.apple.com/kb/TS1865
    Hope this helps,
    Nathan C.

  • Why can I only add one app in passbook?

    Why can I only add one app (Starbucks) in Passbook? 

    You can add many passes to Passbook, what makes you think you can only add one?
    Check out http://support.apple.com/kb/HT5483.

Maybe you are looking for

  • ComboBox - Setting Selected Values from data

    I am running into a problem in Flex 3 that seems to be different from Flex 2. Maybe someone can help. I have a function for setting a combobox selected item for a location for a value when the titlewindow completes loading. The value is a prior value

  • The picture in Messages is not the same as my iCloud/Contacts Me Card

    Messages has pictures of yourself on one side and who you are chatting with on the other. I changed my account picture on my Mac and used the same one for Contacts. I went to iCloud.com and changed it there also. Messages on the Mac still shows the o

  • Im having a problem installing adobe air its telling me i may not have admin rights even though i do can you help me?

    im having a problem installing adobe air its telling me i may not have admin rights even though i do can anyone help me?

  • Regarding ENTER in BDC's

    hi guru's, i have done a bdc rec prog. here is the code: perform open_group. perform bdc_dynpro      using 'SAPLMGMM' '0060'. perform bdc_field       using 'BDC_CURSOR'                               'RMMG1-MATNR'. *perform bdc_field       using 'BDC_

  • Photoshop keeps crashing

    Hello, I keep getting "Photoshop has quit unexpectedly" and loosing all my work. It happens a lot, and with no recover work feature I am getting pretty frustrated. I have lost hours of work. Many things seem to cause the crashes, there are some thing