Wednesday, October 3, 2012

How to Change Column Type in MS Access Using VB6 Programming

It's quite troublesome when we are maintaining some Access database that is located in remote area. Sometimes we need to change column type of some column because we had configured it improperly at the first time. Through some exploration and after trying for searching the solution for this kind of need, I found some useful information that could be beneficial for you when you have this need in the future. The solution has been tested by me on Access 97. What we need to do?

You can using DAO in VB to run this function. First is defining one DAO connection to your Access database. Second is putting the following code in your program:

(For example if you had created DAO as DB, the field will be changed is field99, currently the column type is Integer and you have to change it into Double)

DB.execute "ALTER TABLE [table name] ADD COLUMN fieldx Double"
DB.execute "UPDATE [table name] SET fieldx = field99
DB.execute "ALTER TABLE [table name] DROP COLUMN field99
DB.execute "ALTER TABLE [table name] ADD COLUMN field99 Double"
DB.execute "UPDATE [table name] SET field99 = fieldx
DB.execute "ALTER TABLE [table name] DROP COLUMN fieldx

That's all. After you have run the code, I'm sure the column type of field99 will be changed into Double.

Cheers.

Wednesday, September 26, 2012

Help! My USB Flashdisk Cannot Be Formatted, Always Write Protected

After searching from google, I've found some good information that I feel it's helpful to share it to all of you. It's about unwelcome USB flash disk that got protected . I had looked for some link that give some solution for this problem. But after I've tried some solution that's suggested, actually here is quite simple way need to be taken you to clear this unintended protection.

Actually it's because of careless handling of releasing the flashdisk from computer's USB port. Somehow you don't release properly the flashdisk by going to "Safe Remove USB" shortcut. You might be forget and unplug the flashdisk from the USB Port directly before you remove it safely from the port. This careless handling can cause the flashdisk become "Write Protected". So, what is the simple solution for this problem? As suggested, we can plug the flashdisk to some computer, then right click at the flashdisk's drive, then choose "eject". Then we can unplug and replug the flashdisk back to the computer, then I'm quite sure that the flashdisk can working normally back.

See you in the next problem solving subject.

Monday, September 24, 2012

How to Reset Disabled Screensaver Timer in Windows 7

Today, we have a problem of screensaver in one of our user. She cannot modify the waiting timer in the screensaver because it's disabled by the Operating System. We have checked her windows login account and it's already set as Administrator, but the timer option is still disabled! Looking some article in the internet, I've founded that we can reset this problem by going into the registry through regedit command.

To reset all of the set screensaver that you haven't created intentionally before, you might go to your windows registry by typing regedit at the run command. After you had get into the registry window, you can go and find the registry key in : [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Control Panel\Desktop], then erase all of the screensaver's key and its value. I'm sure that next time when you open your screensaver personalize settings, you can set your screensaver timer back.

Tuesday, August 28, 2012

PHPMailer Fail to Send Email

This summary is not available. Please click here to view the post.

Thursday, May 3, 2012

Good Reference for Magnetic Drills From Baco

I believe there are many of you who are working at construction area need a supporting tool like drills in order to help you out tightening or loosing some screw, bolt, threaded rods, etc. Nowadays there are a lot of variance for the drilling equipment, but most of them are quite heavy, noisy and consumes a lot of power.

If you are looking for a good tools to cope the obstacles as said previously, now is the time to choose the excellent drill from Baco. Containing magnetic material, Baco magnetic drills would make your job or drilling more easily, because it's really portable device. From Baco magnetic drill you could gain high value or performance of your drilling jobs, such as fastener, cutting, etc.

I guarantee you!

Saturday, April 28, 2012

Just a Thought

The chicken reports the scattering stair throughout our composite.

Wednesday, December 7, 2011

Let the WampServer Manage Your Version of Apache, PHP and MySQL

I believe some of us will customize some web application that bound with certain Apache, PHP and MySQL version, and as a developer you will need to change the version to fit the requirement of your current application because the template of the application has already been customized with some certain version. It's quite difficult to manage the version if you don't have such a good tools.

I suggest you to utilize the extended function of WampServer Version 2.2. It has some menu that enable you to change the version of Apache, PHP and MySQL easily. It will redirect you to the WampServer website to make you able to download another version of the Apache, PHP and MySQL. After downloading and installation the software, you will get the specified software version as you want.

So, just go to this link : http://www.wampserver.com/en, then download and install WampServer Version 2.2. After doing this, just click the Icon seated in the tray icon, choose the Apache or PHP or MySQL, then move to Version, then click Get More..... You will be redirected to the wampserver website and from this site, you can choose many version of the softwares to fit your current application.

Tuesday, December 6, 2011

Get Rid of Password Protected PDF File

Sometimes we need to copy or print some part of password protected PDF document. But the truth is nothing can be done before you remove the password of the document. There are some software, freeware actually, that can be used for coping this problem. The software is named "PDF Unlocker", and you can download it by going to the following link: http://free-pdf-unlocker.en.softonic.com/download.

Just download the software and install it at your computer. Normally, the process of unlocking the password is quite simple step. After installation of this software, it will put a shortcut into your desktop. Next step is you just drag and drop into the shortcut, then the software will create the copy of your pdf file at the same directory and of course this copied file is the free password version one.

Happy surfing and have a nice day!




Friday, September 9, 2011

No Second Chance to Make The Same Mistake

Do you get some bad result for the thing you have done in the past time? Something that is coming for the first time in your life might be making you feeling uncertainty on how to deal with it. Confuse feeling is the antic thing that could causing you to make a mistake since it's the first one coming to your life. Let the bad outcome get close to you, because it's normal for the people that don't have such an experience.

The good thing that one should learn for the mistake they had done is don't get caught in the same hole, means don't make yourself re-involve to the same problem in future. I always try to speak to myself for several time, as something bad happened to me because of some decision that I have been taken. I speak to myself again and again to not taking same worse decision in the future. It's like self talking. I guarantee you, if you do the self talking to yourself once the worse thing has been happened, you will be aware of the mistake.

One positive attitude should be strengthened in yourself is don't put yourself into the blame, means it is no acceptable reason to make you down when you deal with the same problem in the future, because what I know when I was doing self talking, I was also taking some introspection to myself to apply some other approach  if I deal with the same problem in the future. Of course, we can write down some useful note to our daily book or even make some awesome tag line in the posh it paper, then stick it near your working area. This method will help you someday if you confront again with the same problem.

Wednesday, September 7, 2011

FTP Command for Transferring File

Sometimes we need to transferring or copying some files that hosted in some ftp server. The following are step by step on how to do:
1. You should make some text file (ie: script.txt). The following is the example for the content of this file:
   
yourUserName
yourPassword
bin
cd /files
get file.zip
bye
Note: for massive transfer file you can use command "mget", then replace the file name with some wildcard character (*).
2. In the command prompt, run the following command: ftp -s:script.txt 111.111.111.111
Note : 111.111.111.111 is the example of your ftp server site.

Sunday, September 4, 2011

Rising Your Courageous to Tell the True Thing (Wipe Away Your Ignorance)

It's a matter of time to make someone get into the serious trouble when we realize the people we known are doing something wrong in his/her life. This person should be told as urgent as we can, so the worst thing don't happen to him/her in the next days. But can we have such a brave heart to let him/her know what will go further wrong if he/she persist to do the things or has some kind of bad habit? Personally, I really doubt about this thing could be done by us easily.

The truth is something is going wrong with some person, and it needs someone to fix it by telling the person of what is going wrong. Unfortunately the wrong things is happening to the person that we know personally, like closest friend or our family member. In one side we don't want to make him/her get mad with us because we seems to teach him/her about something, but the other side we have already imagined of what could be faced by the person if no correction action done immediately.

Let's put aside our worry if this person will get mad with us because of our point of view about the thing that is go wrong so far. Just go ahead to telling the second opinion that you thought it's more proper for him/her. Don't let him/her do the bad thing again and again without any interception or advice from you as the closest person that he/she knows. You better telling of one thing that is good from the other side, rather than you keep quiet that cause the very worst happen. You will be considered a guilty man if something bad is happening to the person in the future because of your silent action. Even in one religion had put this statement to its holy book, that one could be accused by the Creator, because of his/her careless to let somebody knows about the bad thing could be happened for this mistaken persistence. Even more the religion said in the holy book, that one could be get punishment because of this ignorance to his/her fellow being.

In telling the good thing to one person, sometimes you get rejection of some tough person, even more getting mad from this person. So, the solution is very easy. You should take one or two more nearest friend to this trouble person, then speak up together to this trouble person about the right way to cope his/her problem. We believe by collaborating between some closest friend, hopefully the person could accept our suggestion or opinion, so the case could be closed with win solution to us.

As my closing, let's start to telling the truth or making a correction action to the person that had already done bad thing of taken a wrong decision on some matter. By doing this, we could be considered as absolutely high sensitivity person in our society.

Monday, August 29, 2011

The Universe Said That The More You Give, The More You Get


For many years, there is a fake that has prove to us about take and give correlation . The success will be coming to someone, only if he or she has a true spirit to give somebody else without hoping it replied by somebody else even they don't tie in some relation, like family, friend or co-worker if he or she is working.

Some thinker said if you give something that useful for someone, more over that it's valuable to the person and the person desperately need the thing, you will have something that could clean some negative substances that held in your body. It's like throwing some negative energy outside from your body, or it's like you are asking your body to produce a new substances to replace the old blood after you donate it. In other word, we can say that reproduction of blood is happening every time the blood is donated. The advantage of this action is of course we could get new blood that more fresh than the donated one.

Most of us are not realize one important truth that the universe often reply to us the thing that we have done to someone else, directly or  indirectly. It's often like something that happen suddenly to us. We should believe that the God, will pay our goodness someday with abundance of healthiness, happiness, prosperity, and much more. There is nothing that pull outside from you without any replacement to you. It should become something that called 'balance rule'. The balance rule is simply defined as the condition that you have both positivity and negativity, or chinese belief 'yin and yang'. Anything come out from your effort, will be returned to you as result. Of course the best effort will be replied with best result. Contrary, poor effort will give you back a poor result. Another example is good student that eager to study hard, will get the good score for their exams. For you who are working, hard work will get a good compensation and career promotion also.

No matter what the situation you involved, give your best effort for it, then the universe will pay you back on someday. Don't always look at the compensation that you must get for everything you have done until now. It's not a good condition if we always need a pay back for it. If you do it, it's not good if  we aim to build relationship with someone else. It often put our self into the situation that make somebody avoid us for asking our help in the future, and of course it doesn't make the person help us if we need help someday. Even more we can loose friendship with them.

Monday, May 2, 2011

Alternative way to Play MOV File That Cannot Output Video

After waisting some valuable time to troubleshooting problem while displaying picture of MOV video file, I got the answer for the problem. The problem is MOV video file can be played with the output of sound, but no picture at all. Starting by searching internet forum, I got some important information that some MOV video file which is made by H.264 video format, cannot be played directly from Quick Time. You can choose some alternative way to get the picture showed in the screen by converting the MOV file format into AVI file format. One of the powerful software to convert the MOV file format into AVI file format is name "Pazera". You can download it from the following link : http://download.cnet.com/Pazera-Free-MOV-to-AVI-Converter/3000-2194_4-10798308.html. If the link has broken, you can search it from some search engine, by typing Pazera MOV to AVI freeware.

By converting it into AVI file format, you also have saved some space of your harddisk space. Wish you luck!

Wednesday, March 16, 2011

How to Create ODBC Data Source for 32bit Application to be run at Windows 2003 64bit

If you are running application that built by Visual Basic (vb6) and it needs connection to the SQL Server 2005, you cannot at ODBC Data Source from default Data Source Administrator at Control Panel -> Administrative Task. You must know that application build by vb6 is the 32bit application, so you cannot connect your SQL server database with the default ODBC Administrator in Windows 2003 64bit. You need to run the ODBC administrator for 32bit application. Windows 2003 64bit itself, has the 32bit ODBC Administrator. You can run it from the following file : C:\WINDOWS\SysWOW64\odbcad32.exe. The rest setup process is remain same as usual.

Friday, September 10, 2010

How did certain group of people get famous and success in their life?

Surely the famous and success is not come without any action. Life is not so easy and everything came without any effort involved in it. Before those good thing coming true to your life, you should put your maximum passion, spirit, eagerness to learn, recovery action from failure. Without those good attitudes, it is difficult to achieve the famous and success for your life.

Passion is highly the most thing should be exist as the beginning step and it will bridging yourself to those things and the continuation of keeping passion for those famous and success is absolutely needed to remind you about your mission each day, so always put your passion in your heart and soul to all of your effort. I believe you will always stick on your destiny to be famous and success.

Next thing to be required is spirit. By always having spirit everyday in your life, you will not losing every step that needed for your mission. Some of the insuccess people are surrender or backing out and feeling failure when their spirit suddenly put off by the time goes by. They don't have some important substances to keep burning their spirit and moreover their familiy did not give a fully support for them to keep their spirit always up and up. As a human being, They need their family to be involved by giving advice or support while they were dropped down at that moment. With their family fully support and care, I believe that their spirit will be stronger than they have before.

There is no formula exactly to count how much knowledges has to be gained before it could giving a support for your famous or success. You should pretend that you need more and more information in order to achieve those things. Let’s imagine you are hungry for those information, so you will have very strong eagerness to learn more and more. By always keeping this eagerness, you will always feel insufficient of your currently gained knowledge.

In the term of famous and success, it always have a process called “failure/mistake”. For sure, failure/mistake often become important situation that always involved in each human being that struggle for famous and success. It’s an idiom said “Lose before gain” or “No pain no gain”, that teaching us to keep trying and trying. It’s also meaning that you should not give up that caused by bad thing that happened to you in the middle of your efforts to gain dengan famous and success. Take it carefully as a good lesson, but try to find out the solution, so you can prevent it happen again in the future.

If you apply those good atitudes in your mission to be famous and success, I believe all of things will happen in your life. Start now !