application

Book Application (PageTurnerView in Android)

Submitted by donbermoy on
It's me again! :) I have created another Android application entitled Book App using Basic4Android. This book application is not an ordinary application that will just put some text on it and read only in one form. This application features to have a PageTurnerView in Android, meaning it is just like a book that you scan through its pages. This app also may help you on how to customize font, color, margins, line spacing, and page numbering. Just install Book.apk to your android phone and run it. This book app contains an utmost dedication to my girlfriend.

Android FRONT CAMERA App v1.2

Submitted by donbermoy on
Hi guys! This is my another creation in Android that i have created my own version of accessing Front Camera. This app features to capture photos using the front camera of your Android phone. When clicking the capture button, it will automatically create a folder in your gallery named FrontCam and then have randomized image name from 111 to 33333, and after that it will saved at your default directory in your phone. Install fc.apk in your phone and run it.

Voice Recorder Application in Android

Submitted by donbermoy on
I've been into many experiments in Android until I came up making this app called Voice Recorder Application. This app features to record any audio or voice and will save at your default directory in Android phone as "VoiceRecord.wav". First, click Prepare button to initialize the voice recorder, then tap the Start Button to start recording audio, and if done click the Stop Button to stop the recorder. Install audioRecorder.apk in your Android phone and run it. Hope this application in android helps you! :) Best Regards, Engr. Lyndon R.

Google Map Application in Android

Submitted by donbermoy on
Hi. I just want to share this android application in creating and displaying Google Map. I used the Basic4Android software in creating this application. I included the full source code in this application and also the GoogleMap Library in which you are going to put it in your b4a software library. It will be very helpful to your project and to your thesis software. Hope this app helps! :) Visit and like my page on Facebook at: https://www.facebook.com/BermzISware Mobile: 09488225971

Android Quiz/Test App with High Scores v1.2

Submitted by donbermoy on
This is an app that I have created using Basic4Android as frontend and SQLite as backend. This Quiz/Test app is used for educational game application that benefits children to learn. This app features test application category using spinner control, text-to-speech application, player information with score that is saved in the database, and high scores view intended for inquiry of highest scores of this application.

Multi-Threaded Applications in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a multi-threaded application in Visual Basic. Design: There really is no design needed for this application, although if you wanted to, you can add a button. What Is a Thread? A thread is the part of your .NET program which runs everything else, your UI, your functions and your classes. Without a thread, your program would not be able to run. Why Multiple Threads? Once a thread has a lot of processing to do, problems begin to arrise.

Mobile Computer Dictionary Application in Android

Submitted by donbermoy on
Hi. This is an application that i have created in Basic4Andriod and SQLite Manager entitled Mobile Computer Dictionary. This application features to search and display the related computer definitions. I have just upload and completed it up to letter A only because I sell the complete application to my clients. But anyway, you can add words and definitions on it to the SQLite database.

Application Launcher using VB.NET

Submitted by donbermoy on
This is a tutorial in which we will going to have a program that can launch any applications, program, and websites. Now, let's start this Font Dialog tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Simple Image Viewer in Java

Submitted by mehfuza on
Introduction In this tutorial we will learn how to display picture in Java Application. There is difference between how a picture displayed in application and applet. For application we require drawImage() method which draws the image to specific component and not the entire frame. Implementation Step 1: Creating the components We require a label, text field where user will enter name or address

Easy Way to implement A Dynamic Clock in Java using Threads

Submitted by mehfuza on
Introduction: In this Tutorial, creation of clock which updates every second is explained. Here we create an Application for clock. It shows Hour, minutes and seconds which updates every second. Main Idea: The Dynamic clock can be created using Java's Timer thread but here we will see how to use our own thread and accomplish the task. This tutorial can clear any doubts you have in Java Threads.