I don't suppose

that the art board size restriction was releived with CS5, eh?  I quit getting excited about such things many years ago.
It's funny when there's a thread that Corel Draw 5 can open, that Illustrator CS5 can't.... isn't it?

Hi,
Did you get any solution to this problem I am also getting the same error messaage.
regards,
Rajesh
TransactionRolledbackException in method: public abstract java.lang.Integer org.learn.labormgmt.customer.interfaces.CustomerManagerBean.save(org.learn.labormgmt.customer.value.CustomerValues) throws org.learn.labormgmt.customer.CustomerException,java.rmi.RemoteException, causedBy:
org.jboss.tm.JBossRollbackException: Unable to commit, tx=TransactionImpl:XidImpl[FormatId=257, GlobalId=ILANGO/16, BranchQual=, localId=16] status=STATUS_NO_TRANSACTION; - nested throwable: (javax.ejb.EJBException: Method is not a known CMP field accessor, CMR field accessor, or ejbSelect method: methodName=ejbStore)

Similar Messages

  • I don't have Mobile me, but my notes on my ipad and my iphone no longer sync over the air. Any answers?

    I don't have Mobile Me, but my ipad and iphone notes used to sync over the air and they no longer do.
    Does anyone have any answers?

    In iCal's preferences, you can configure whether and when events get purged.
    As for recovering old, deleted events... I don't suppose you have backups?...

  • Where is the DELETE key -- and I don't mean "backspace"

    Every PC of any stripe that I have ever owned -- and we're talking a lot of machines in nearly 30 years of this -- has had two 'delete' keys.
    One is a backspace key -- it erases characters in before the cursor. It's usually found above the enter/return key, where the backspace key used to be on those old-fangled typewriter machines.
    The other key was a "delete" key -- which would erase characters that apper AFTER the cursor. There the backspace key would erase backwards, the delete key would erase forwards.
    So, where is the DELETE key on a Mac keyboard? Is there some combination of keys that will serve that purpose? Or does somebody really think I'm going to move the cursor to the end of some place and delete backwards ALL the time?
    I read in yesterday's Wall Street Journal that Steve Jobs doesn't like buttons, but this is ridiculous. It could, in fact be a fatal error... I've still got 10 days to take this thing back...
    --PS

    I don't suppose there is any kind of utility program that would let me re-map they keyboard, so that I could make, say, the "enter" key at the bottom into a "forward-delete" key (I never use that enter key, my hands are trained to use the "enter/return" key where it's always been on a typewriter -- yeah, I'm that old...)
    Either buried on the Mac somewhere or a third party program that would let me do that? Would sure make the MacBook more liveable... I delete a LOT!
    Thanks,
    --PS

  • Is the W520 supposed to whirrr and click even when completely shut down?

    I just received my W520 (#4270CTO) about 3 weeks ago.  This is my first laptop (to be used for video editing and animation), so I'm not sure what to expect.
    I noticed that when I shut down the W520 (go to "Start" select "shutdown"), it continues to make a very faint whirrr and click noise.  The noise pattern goes like this:  long whirrrr, click, short period of silence, then it repeats.  It does this all the time when the computer is turned off.  Even when I don't use the computer for 2 days, and it is turned off, it continues to whirr and click.  It only stops when I disconnect the battery and reinstall it.  Only then, is it completely silent.
    Is it supposed to do that (the whirr and click all the time)?
    The whirr and click noise is very soft, so you have to lift it up and listen to it but it is audible.  My friend says that it is the hard drive noise, and said it should not be doing that, but he doesn't have a W520, and isn't familiar with it.  So I thought I should ask someone else who has one to see if theirs is doing the same thing.
    I also noticed that the fingerprint reader LED stays lit all the time except for when the computer is on and I'm using it.  It stays green even when the computer is shut down and the lid is closed.
    Please help.  Is my W520 working properly, or should I call for tech support?
    Thanks for any comments and advice.

    The power brick makes no noise.  I am charging the battery now, and the power brick is warm but silent.
    I've only noticed the noise coming from the underside of the computer when my W520 is turned off with the battery still attached.
    If I remove the battery and reinstall it, the noise stops.
    If I plug in the power brick, the noise stops.  (The brick doesn't even have to be plugged into a wall socket.  I could just plug the power brick into the computer without plugging in the other end to a power supply.)
    Of course, if I remove the battery the noise also stops.
    But if I use the W520, then shut it down and leave the battery attached, it will continue to make the faint long whirrr and click noise.  I have let it sit without turning on the machine for 3 days, and it continued to make the soft noise every day.
    I don't suppose your computer makes the same noise.  Maybe my computer really is defective.  It works great otherwise.

  • What is supposed to happen if the font for a control on the startup form does not exist on the system?

    Say you put a button on a form and dont change the font ie ms san serif, then the app is installed on a system that does not have the font ms san serif installed. Is it supposed to throw an error when the form initializes? Since this happens before any user
    code the error can go untrapped in the start up form and crashes to the system.
    I discovered it does this if you specify the font in the designer to be "Arial Narrow" and it is not installed. But whats funny is the error is not font does not exist, it is "Arial Narrow" does not support style Regular. Even though
    I set the font in the IDE for the control. How can I be setting it with the IDE to something that does not exist for the font I set (Arial Narrow is on the IDE system)?
    I have always thought that vb would just use a different font if the control font did not exist without an error. In my case it was a secondary form so the error was trapped. But, I don't see how to trap the error if it is the startup form.

    PS
    "I meant that you should set the buttons font to something like
    MS Sans Serif "
    What if ms sans is not on the system? Then you cant do anything.
    Maybe I am being picky but just sayin...
    I don't suppose you're being picky specifically although I think I got a headache attempting to do the below.
    I do think this is a bug though which you should probably report.
    However I tried this and it worked fine. Except I had to alter the Form1.Designer.vb file to do this. I tested this. I didn't test without this to see if I would get the exception you received.
    I downloaded a Font called Kingsthings Christmas from the second link in my post for links to download fonts. Added that to my systems Fonts and tested the code. Removed that from my systems fonts and tested the code. It worked in both instances.
    I suspect that the Font in the Form1.Designer.VB file for the New Font for the TabControl and TreeView would work with the default system font set to use 21.75! and font style regular but if the default system font didn't support both of those then an issue
    could occur obviously. So if somebody used Control Panel to set the default system font to something that doesn't support those two things then you will need to alter the code to detect what the default system font can use for those two settings
    possibly.
    Form1's code
    Option Strict On
    Imports System.Drawing.Text
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.Location = New Point(CInt((Screen.PrimaryScreen.WorkingArea.Width / 2) - (Me.Width / 2)), CInt((Screen.PrimaryScreen.WorkingArea.Height / 2) - (Me.Height / 2)))
    TreeView1.BeginUpdate()
    TreeView1.Nodes.Add("Parent")
    TreeView1.Nodes(0).Nodes.Add("Child 1")
    TreeView1.Nodes(0).Nodes.Add("Child 2")
    TreeView1.Nodes(0).Nodes(1).Nodes.Add("Grandchild")
    TreeView1.Nodes(0).Nodes(1).Nodes(0).Nodes.Add("Great Grandchild")
    TreeView1.EndUpdate()
    For Each f As FontFamily In New InstalledFontCollection().Families
    RichTextBox1.AppendText(f.Name.ToString & vbCrLf)
    Next
    End Sub
    End Class
    Form1.Designer.VB files code which you're not supposed to alter of course.
    Option Strict On
    Imports System.Drawing.Text
    <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
    Partial Class Form1
    Inherits System.Windows.Forms.Form
    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
    Try
    If disposing AndAlso components IsNot Nothing Then
    components.Dispose()
    End If
    Finally
    MyBase.Dispose(disposing)
    End Try
    End Sub
    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.
    'Do not modify it using the code editor.
    Dim FontToUse As Font
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
    For Each f As FontFamily In New InstalledFontCollection().Families
    If f.Name.ToString = "Kingthings Christmas 2" Then
    FontToUse = New Font(f.Name.ToString, 24)
    Exit For
    Else
    FontToUse = New Font(SystemFonts.DefaultFont.FontFamily.Name.ToString, 24)
    End If
    Next
    Me.TabControl1 = New System.Windows.Forms.TabControl()
    Me.TabPage1 = New System.Windows.Forms.TabPage()
    Me.TabPage2 = New System.Windows.Forms.TabPage()
    Me.TabPage3 = New System.Windows.Forms.TabPage()
    Me.TabPage4 = New System.Windows.Forms.TabPage()
    Me.TabPage5 = New System.Windows.Forms.TabPage()
    Me.TreeView1 = New System.Windows.Forms.TreeView()
    Me.RichTextBox1 = New System.Windows.Forms.RichTextBox()
    Me.TabControl1.SuspendLayout()
    Me.SuspendLayout()
    'TabControl1
    Me.TabControl1.Controls.Add(Me.TabPage1)
    Me.TabControl1.Controls.Add(Me.TabPage2)
    Me.TabControl1.Controls.Add(Me.TabPage3)
    Me.TabControl1.Controls.Add(Me.TabPage4)
    Me.TabControl1.Controls.Add(Me.TabPage5)
    Me.TabControl1.Font = New System.Drawing.Font(FontToUse.FontFamily.Name.ToString, 21.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
    Me.TabControl1.Location = New System.Drawing.Point(6, 32)
    Me.TabControl1.Name = "TabControl1"
    Me.TabControl1.SelectedIndex = 0
    Me.TabControl1.Size = New System.Drawing.Size(600, 183)
    Me.TabControl1.TabIndex = 0
    'TabPage1
    Me.TabPage1.Location = New System.Drawing.Point(4, 43)
    Me.TabPage1.Name = "TabPage1"
    Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage1.Size = New System.Drawing.Size(592, 136)
    Me.TabPage1.TabIndex = 0
    Me.TabPage1.Text = "TabPage1"
    Me.TabPage1.UseVisualStyleBackColor = True
    'TabPage2
    Me.TabPage2.Location = New System.Drawing.Point(4, 43)
    Me.TabPage2.Name = "TabPage2"
    Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage2.Size = New System.Drawing.Size(592, 136)
    Me.TabPage2.TabIndex = 1
    Me.TabPage2.Text = "TabPage2"
    Me.TabPage2.UseVisualStyleBackColor = True
    'TabPage3
    Me.TabPage3.Location = New System.Drawing.Point(4, 43)
    Me.TabPage3.Name = "TabPage3"
    Me.TabPage3.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage3.Size = New System.Drawing.Size(592, 136)
    Me.TabPage3.TabIndex = 2
    Me.TabPage3.Text = "TabPage3"
    Me.TabPage3.UseVisualStyleBackColor = True
    'TabPage4
    Me.TabPage4.Location = New System.Drawing.Point(4, 43)
    Me.TabPage4.Name = "TabPage4"
    Me.TabPage4.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage4.Size = New System.Drawing.Size(592, 136)
    Me.TabPage4.TabIndex = 3
    Me.TabPage4.Text = "TabPage4"
    Me.TabPage4.UseVisualStyleBackColor = True
    'TabPage5
    Me.TabPage5.Location = New System.Drawing.Point(4, 43)
    Me.TabPage5.Name = "TabPage5"
    Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
    Me.TabPage5.Size = New System.Drawing.Size(592, 136)
    Me.TabPage5.TabIndex = 4
    Me.TabPage5.Text = "TabPage5"
    Me.TabPage5.UseVisualStyleBackColor = True
    'TreeView1
    Me.TreeView1.Font = New System.Drawing.Font(FontToUse.FontFamily.Name.ToString, 21.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
    Me.TreeView1.Location = New System.Drawing.Point(9, 229)
    Me.TreeView1.Name = "TreeView1"
    Me.TreeView1.Size = New System.Drawing.Size(704, 235)
    Me.TreeView1.TabIndex = 1
    'RichTextBox1
    Me.RichTextBox1.Location = New System.Drawing.Point(9, 475)
    Me.RichTextBox1.Name = "RichTextBox1"
    Me.RichTextBox1.Size = New System.Drawing.Size(702, 124)
    Me.RichTextBox1.TabIndex = 2
    Me.RichTextBox1.Text = ""
    'Form1
    Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
    Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
    Me.ClientSize = New System.Drawing.Size(720, 606)
    Me.Controls.Add(Me.RichTextBox1)
    Me.Controls.Add(Me.TreeView1)
    Me.Controls.Add(Me.TabControl1)
    Me.Name = "Form1"
    Me.Text = "Form1"
    Me.TabControl1.ResumeLayout(False)
    Me.ResumeLayout(False)
    End Sub
    Friend WithEvents TabControl1 As System.Windows.Forms.TabControl
    Friend WithEvents TabPage1 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage2 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage3 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage4 As System.Windows.Forms.TabPage
    Friend WithEvents TabPage5 As System.Windows.Forms.TabPage
    Friend WithEvents TreeView1 As System.Windows.Forms.TreeView
    Friend WithEvents RichTextBox1 As System.Windows.Forms.RichTextBox
    End Class
    La vida loca

  • Systemd update broke my network because I don't have ipv6

    I use a custom 4.0 kernel and I don't have ipv6 compiled into it because I don't use it.  This worked fine in systemd 218 but with 219 systemd-networkd throws a hissy fit and refuses to bring up my network interface at all.  Luckily I still have the Arch kernel installed so I was able to boot into that to use the network.  This is also how I know for sure it's because of my kernel configuration.  Is there any workaround for this?
    Apr 19 18:02:25 arch systemd[1]: Starting Network Service...
    Apr 19 18:02:25 arch systemd-networkd[318]: Enumeration completed
    Apr 19 18:02:25 arch systemd-networkd[318]: enp7s0 : Cannot configure IPv6 forwarding for interface: No such file or directory
    Apr 19 18:02:25 arch systemd-networkd[318]: enp7s0 : enp7s0 : could not bring up interface: Address family not supported by protocol
    Apr 19 18:02:25 arch systemd-networkd[318]: enp7s0 : enp7s0 : could not set route: Network is unreachable
    Apr 19 18:02:25 arch systemd-networkd[318]: enp7s0 : link configured
    Apr 19 18:02:25 arch systemd[1]: Started Network Service.
    Last edited by weirddan455 (2015-04-19 23:18:06)

    R00KIE wrote:
    Similar (if not the same) bug already filled https://bugs.freedesktop.org/show_bug.cgi?id=90103
    It will probably take some time until the devs get around to it.
    Yea that's the same bug I'm running into.  I don't suppose making an account to add a "me too" would help anything.  Thanks for the find though.  Saved me from writing a duplicate report.
    R00KIE wrote:If one is using static ip configuration dhcp=ip4 doesn't help and IPForward=ipv4 is an unrelated setting.
    And yea I'm using static IP.  Looks like systemd-networkd is a lost cause until they fix it.
    Last edited by weirddan455 (2015-04-20 18:30:46)

  • TS1398 what if you done all the steps and your still waiting to connect?

    i need help getting my ipod to connect to the internet

    I don't suppose that you could give us a clue what happens when you try?

  • 9 of my playlists  got deleated at the same time, dont know how! I dont suppose their is any way to get them back??

    9 of my playlists got deleated at the same time! I don't suppose their is any way to get them back??

    If these deleted playlists are no longer on your iPod, in your iTunes library, or in a backup somewhere, I'm afraid you are out of luck and will need to recreate them to the best of your ability. Sorry.
    B-rock

  • I don't like it when webbrowsers keep passwords and usernames in their system. for example gmail, you type in your username and password and it remembers it. i don't know how to undo this.

    In gmail, you would normally only see the accounts' name if you typed in the first letter of it and it pops up all the emails logged in on that computer with the first letter. Mines a B, but that's easy for anyone to know if they have my email. I would really like it if someone could help me fix this password/username lock thing.

    I don't suppose it makes you any happier that you just need to double-click rather than guess the first letter of the user-id.
    The user-id is remembered in cookies. You can remove cookie through Tools > Options > Privacy
    The password connected to a user-id is collected upon successful use and clicking on yellow security bar. You can remove password through Tools > Options > Security
    If you have a Master Password then it will restrict additions and deletions of passwords until a Master Password was entered for the session. Changes to the master password or show passwords require additional entry of master password at time of use.
    If you don't want cookies or passwords saved because other have access to your computer that is what Private Browsing ("Ctrl+Shift+P") is for
    Anyone with physical control of the computer owns it.
    Possibly relevant:
    * Cookies - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Cookies
    * Master password - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Master_password
    * User name and password not remembered - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/User_name_and_password_not_remembered
    * Locked or damaged places.sqlite - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    * Private Browsing | How to | Firefox Help<br>https://support.mozilla.com/en-US/kb/Private%20Browsing

  • Drag and drop images into anchored frames -- can this be done with the images imported by reference?

    My company bought a product from another company and the only manuals files that came with it were in pdf format. I am currently grabbing text out in Acrobat, then pasting and reformatting it in FrameMaker. Boring and tedious. . . .
    Eventually I get to the point of importing the illustrations. There are *hundreds* of them. As a rule, we import the files by reference, to keep the chapter size smaller and to be able to double click the image to open it for modification.
    However, I can drag an image file from the folder window and drop it into an anchored frame. Oooh, this is fast--way faster than all the mousework that goes into clicking file>import>file>[choosing the file then hitting the import button].
    But, dang it, that copies the image into the FrameMaker file. No double-click opening. Giant fm. file size. Mad boss, shaking an SOP standards sheet in my face.
    So, my question: Is there a way to import an image *by reference* by dragging and dropping them into an anchored frame?
    Thanks, folks.
    Moore. Matt Moore.

    I tried the RTF route and, in addition to getting the body text I wanted, got paragraph after paragraph of the page numbers, the illustration text, the header and footer verbiage, all randomly placed between body text paragraphs.
    I did the same file twice, once by saving as RTF and deleting unwanted stuff, then repairing body paragraphs (each line of which is a seperate paragraph in the RTF file) and also by sweeping only the necessary text, then copying and pasting it page by page. The second method was a bit faster and less frustrating. Not to say that it isn't slow and frustrating in itself, but just a bit less. Less errors, too, with the second method.
    Bummer about importing by reference. I don't suppose there's a way to set up recorded actions with hotkeys, is there? Like in Illustrator?
    Thanks, Art.
    Moore. Matt Moore.

  • How do I get more text options in photoshop??

    How do I get more text options in Photoshop?  I have the basic package, but I would like more script options.
    Thank you,
       Maureen

    I don't suppose you have a full CC subscription?  It comes with a feature called Typekit which I love. Along with an ever increasing range of top quality fonts, it has the best font manager I have used, and excellent search facility.
    The web is full of additional font sites like dafont
    http://www.dafont.com/
    Otherweise, Google is your friend
    If you want Text Effects then Google will help you out there as well

  • Excel Get ActiveX References​.vi and closing references -- grrr

    I'm new to ActiveX stuff, but eager to learn! 
    The "grrr" in my Subject line is a reference to how I feel about LabVIEW's documentation from time to time.  I'm a dinosaur who came from text-based programming, and did a fair amount of C coding, so sometimes with LabVIEW I'm left with this awful feeling in the pit of my stomach like, "Good grief!  How much memory must LabVIEW be hogging up in the background when I use this vi?" or "What happens to those variables (wires) in that subVI when it completes but doesn't close?  What are their statuses when I come back in the next time?" or "What if I put a lot of elements into that array the first time and then started from element zero the second time and just put in a few?  What has happened with the memroy that was allocated when there were a lot of elements?"
    Today I'm stewing about this "Excel Get ActiveX References.vi," and what happens to the "ActiveX references" it generates each time I call the subVI in which "Excel Get ActiveX References.vi" lives.  I think that at least one of the "ActiveX references" it generates when I call it is of the type Excel._Application.  Then there appears to be an Excel._Workbook, and others.  You see, I've used "Excel Easy Report.vi" to put some data into an Excel spreadsheet, and I want to tell Excel to do a "Save" on the open spreadsheet.  I think ActiveX is the (a) right way to do that, so I'm wading into the ActiveX fray...  But this "Excel Get ActiveX References.vi" says in its help file, "Do not close ActiveX references opened with the Excel Get ActiveX References VI. References must remain open until the report is closed. Otherwise the error 3001 will occur."  Well, these Excel workbooks that get created by my VI could well stay open until after my LabVIEW VI terminates!
    So (finally), here are some of my quesitons:
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existance.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    Well, thanks for reading my novel.  I don't know what can be done with LabVIEW documentation to make it more satisfying to folks like me, but perhaps someone can weigh in on all my ActiveX questions here.
    Thank you in advance,
    Steve Brady
    Solved!
    Go to Solution.

    You need to close EVERY ActiveX reference you open.  If you don't you'll end up with some Excel processes running even after LabVIEW exits.  You can see them in Task Manager.
    I, personally, don't like the LabVIEW Report Generation Tool Kit for working with Excel.  I don't think it's flexible enough.  I have a growing library of VIs that I've written that open, manipulate, and close Excel.  Some references I pass from VI to VI and some I close right after I use them.  It all depends on what I'm doing.  If I want to enter read or write data from/to a certain range I'll get the range reference, read or write the data, then close it right away because I have no use for it any more.  On the other hand, when I open Excel or a Workbook I keep the reference until I'm done, which could be later in the program.
    1)  When I go through my subVI once, pointing to one workbook, I'll get one set of references "created" or "opened" or whatever you call it when ActiveX references spring into existence.  Now, when I exit the subVI, is it going to automatically try to "close" those ActiveX references?  I don't suppose so, since subVI's stay in memory until the calling VI closes.
    2)  Now, I come back into my subVI a second time.  New workbook gets created, so I get new references.  Ok, fine.  Uh oh!  What happened to those old references?  I suppose that if I didn't somehow save them off, I've probably lost the ability to get them back (maybe I'm wrong, but I don't need them back), but is LabVIEW going to "close" those old references (from previous times through the subVI) because I can't get to them anymore?  Won't that cause the dreaded error 3001?  If LabVIEW is not going to "close" them, what in tarnation happens to them (the old C programmer in me creeping back out)??  Now it's some oddball, orphaned reference, floating out there, hogging memory, waiting to make something crash intermittently and be a debugging nightmare?
    3)  Now, here's the real scary one.  I think I might dodge the "error 3001" bullet in questions 1) and 2), but now let's say the user closes my LabVIEW application while Excel is still open.  All those workbooks are still open.  Presumably, all those ActiveX references I was not supposed to close are still open.  I really hope that LabVIEW is decent enough to close/erase/delete/blow-away (whatever the right word is) all those ActiveX references which were opened/created by "Excel Get ActiveX References.vi" when my program terminates.  But, oh no!  Won't the error 3001 come along then?  I suppose I can just dump it in the shutdown error handling.
    1)  No, LabVIEW will NOT close those references.  You need to make sure that happens.
    2)  You can save the references in a functional global or use a class but if you're not going to save them close them as soon as you're done with them.
    3)  Your user should not be able to close your LabVIEW application without it going through the shutdown routine you've created for your program.  The ABORT button should never be exposed to the user and you should capture and discard the panel close event so your program ALWAYS shuts down is an orderly fashion.  If you don't you will have fragments of Excel hanging around in your operating system and will have to kill those processes using Task Manager.  That should only be a problem during development, not once deployed.
    I used to program in C and Assembly many moons ago.  You should have seen my first LabVIEW code.  I go back and look at it just so I can see how far I've come in the last 12 years.  I feel your pain.
    Kelly Bersch
    Certified LabVIEW Developer
    Kudos are always welcome

  • Questions on AP and PO Accrual Reconciliation?

    Dear all,
    I know the purpose of "The AP and PO Accrual Reconciliation Report" provides a transactional breakdown of each accrual account with a net balance not equal to zero in a summarized or full transaction details version.
    However, I found out that on of the Purchase Order has been done the PO receipt and created an invoice in AP (validate and accounted). But the report still showing PO is 0 and AP is 343,000 in AP and PO Accrual Reconciliation report. I am just wondering what I have done wrong suppose the PO and AP should be equal in that case.
    Please advice.
    Thanks.

    Is there any miscellaneous transactions recorded in error to your accrual accounts,These miscellaneous transactions or transactions unrelated to purchase order receipts may be from Payables.

  • Thoroughly fed up with quality of service from BT

    Because broadband was so slow on our normal phone line I pay for an additional line dedicated to broadband. 
    The last time both these (BT) lines were working was 27th July!
    The main phone line died on 28th July and that was finally sorted out on 28th August. Immediately afterwards issues started with the other line, meaning broadband varies between very slow and completely unavailable (many times per day).
    An engineer has been round, but it looks like the issue is in the cabling. The main frustration is, I'm getting almost daily updates, but the quality of them is rubbish! The're either "your line should be fixed now" when it never is or "we're not sure what's happening - we'll ask Openreach and get an update for you tomorrow". That update is generally "it's fixed now" or "we'll get an update" again. I had a text two days ago saying they aim to fix it by 28/10 and then today I've had a text and phone call saying it's fixed (it still isn't). I've tweeted @bt_care but they're not contacting me when they say they will, so I'm at the end of my tether. 
    If I had any other options for my supplier I'd have left ages ago. We've lived in this house for 13 years and I'm pretty sure we've not had a clear year without any phone / broadband faults, and they've generally taken weeks rather than days to fix.
    I don't suppose anyone can help much, but it makes me feel better to vent!

    Hi SadGamerGeek,
    Welcome to the community and thanks for posting!
    Sorry for the problems you're having with your broadband speed and for the time it's taking to sort out.  I can help you from here.  Click on my username and under the section "about me" you'll see the link to "contact the mods".
    Whenever we've received your details we'll take it from there.
    Thanks a million,
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Bridge CC - Stuck building criteria

    I recently upgraded to the Adobe CC suite from the Adobe CS5 suite. Bridge CC was working fine until I upgraded my Mac to the new mac OS X version - Maverik. Since then, when I open Bridge CC the interface opens but none of the files respond to any interaction on my part (click, enter, etc.) A spining circle along with text that says "BUILDING CRITERIA" appears and remains churning. A dialouge box then appears and suggests that I purge the cache from the Bridge prefrence panel. When I do so, the prefrence panel and the entire interface lock up and will not respond to anything other than a force quite.
    My only option is to open Bridge CS5 to views image files which then opens the image file in Adobe CS5 camera raw and then opens that file in Photoshop CS5.
    Can anyone please offer me some help with this Bridge CC issue?
    Thank You!

    Glad to hear you are somewhat back in business and yes, Cocktail is easy to use, good and cheap. It also can run on auto pilot to automate the tasks
    Caching can take some time but that depends on many variables.
    You should have a reasonable fast computer with enough RAM (1 GB is the minimum required but won't get you far, especially when you have other apps also running in the background.) so at least 4 GB is needed, preferable as much as you can store in your machine, RAM is very very cheap nowadays and you will profit a lot.
    Then there is the disk space, for normal HD you need at least 20 % free space left, using SSD also is a lot faster.
    The size and amount of the files is also an important factor, naturally large, big files take more time then smaller files.
    However 6 files a minute would be more about 1,5 GB sized files and I don't suppose you are using that??
    Under normal conditions with reasonable fast machine  and normal Raw, dng and jpeg files 1 file per  1- 2 seconds would be more appropriate I would think. I use a Mac Pro with 32 GB RAM and SSD, and can not really even time the files while caching…
    Be sure to have set the quality to Always HQ and don't use 'generate 100 % previews' because the latter is taking much time and very much space in the Cache folder.
    It is very hard to check all things from distance, but for sure, the behavior you are describing is not normal, nor should your Mac go in sleep mode while Bridge is still active.
    Just for testing, create a new user account and try if Bridge is still acting so slow. If not you should consider to use the OSX Recovery disk, but first back up and read the manual!

Maybe you are looking for