error on line 12: can’t record invalid transaction in QuickBooks

Posted by admin | Computer/Security,HTML Code , tips or suggestions | Thursday 10 May 2012 10:59 am

Have quick books 2010 and 2011 and getting error 12 cant record invalid transaction during and import into QB.

here is the fix all…and its QB having a brain [removed]….primarely because the error gives no indication on the problem or how to fix it. Kind of taking over from Microsoft left off lol

fix-

. The invoice would not import because the account name in the iff file was Accounts Receivable and the chart of accounts in QB has Accounts Receivable (A/R). I added a new account: Accounts Receivable and it imported with no problem.

iPhone 4 & Verizon: Understanding the Facts

Posted by admin | Computer/Security,HTML Code , tips or suggestions,Technology | Tuesday 18 January 2011 2:22 pm

Verizon’s iPhone 4 announcement has captured the collective consciousness of the wireless nation.

That means AT&T is working hard to discourage its customers from switching to the nation’s largest and most reliable 3G network.

What’s its strategy? AT&T will go in areas they think are game-changers for customers.

Verizon will be prepared! Here’s is Verizon’s counter to common objections to switching!

Simultaneous Voice and Data Sessions
Verizon iPhone 4 customers can make a voice call on our network and browse the Internet over a public or home WiFi connection at the same time.

•The real question for customers is what is it “they” want to do because most features are supported on the phone.

•Some functions work simultaneously on our iPhone 4. Have these common examples in your back pocket:

◦If you’re using a navigation application and receive a call, the navigation pauses while you take the call and resumes when you hang up.

◦You can also check contacts and browse for items already on the phone while a call is in progress.

Global Communications
Our iPhone 4 will work in approximately 40 countries that use CDMA technology.

•Get to know the list of countries where Verizon has CDMA roaming, and make sure you have a few common business and vacation travel destinations ready to mention. CDMA roaming is available in over 40 countries – including Canada, Mexico, China, Japan, India and most of the Carribean Islands.

•In countries that use a GSM technology platform, Verizon offer a global program that loans customers a country-compatible device at no additional charge for up to three weeks.
•Customers can check out all the details at verizonwireless.com/global

3G Network – Speed & Reliability
Verizon has made a commitment to maintain and support our 3G network for many years to come, and Verizon continues to expand the 3G network even as 4G gets rolled out.

AT&T claims its data network is faster than our 3G CDMA Network.

Verizon Wireless has the nation’s largest and most reliable 3G network, and that means we believe customers will be very happy with both the voice and data service they receive.

•Here’s a great question to pose: “How many Gs do you need?”

•Customers are getting a great smartphone that provides a host of applications that help them manage their lives, stay connected to friends and family and much more.

•And if they truly want and need a real 4G experience, Verizon Wireless offers 4G LTE, with a host of consumer devices coming during the first-half of 2011.

Office Communicator 2005 not starting up

Posted by admin | HTML Code , tips or suggestions,Technical-Computer-related to troubleshooting | Tuesday 10 November 2009 4:10 pm

I had some issues with this, although some issues may be related to a patch that recently installed the hotfix is here. Run it from a dos command prompt.

http://support.microsoft.com/kb/974571 patch that installed end of October.

hotfix: http://go.microsoft.com/fwlink/?LinkId=168248

After this is done, if still nothing happens after reinstalling communicator then try these steps.

1. Log into the computer as an administrator.
2. Right-click on the My Computer icon and select Manage.
3. In the left column, expand Services and Applications and click on Services.
4. In the right pane, locate the following services:
COM+ Event System
COM+ System Application
Remote Procedure Call (RPC)
Remote Procedure Call (RPC) Locator
5. Double-click on the service to bring up the properties and set each one of
the services to Automatic. Make sure they are all started.
6. While the properties are up, click on the Log On tab and make sure that each
of these services have the options, “Local System account” and “Allow
service to interact with Desktop” checked.
7. Click on OK and reboot the computer.
8. When the computer comes back up, click on Start > Run and type in “appwiz.cpl”.
Then click on OK.

This worked on about eight out of ten desktops. Good luck!

VB Script to delete a folder

Posted by admin | HTML Code , tips or suggestions | Saturday 18 April 2009 4:04 pm

I never thought I would be enjoying creating scripts but I find myself into playing around with scripts at times due to the nature of my job. Here is something I can share with anyone that needs a simple script that does the job It can either be launched locally or you can use a command line function to launch it remotely.

-Open a notepad window
-Copy paste the code below
-Replace the value in the code that corresponds to your need
-Save file as .vbs
-Done

strComputer = “.”
Set objWMIService = GetObject(“winmgmts:” _
& “{impersonationLevel=impersonate}!\\” & strComputer & “\root\cimv2″)
Set colFolders = objWMIService.ExecQuery _
(“Select * from Win32_Directory where Name = ‘c:\\replacethisvalue_with_yours’”)
For Each objFolder in colFolders
errResults = objFolder.Delete
Wscript.Echo errResults
Next

<