Showing posts with label Ms. Access. Show all posts
Showing posts with label Ms. Access. Show all posts

Tuesday, November 29, 2011

Make windows xp theme with SkinStudio

Make windows xp theme with SkinStudio 
Okay here I'll explain a little how to make windows xp theme using windows blind. For that I use WB version 6.0 and skinstudio 6

Immediately, the initial explanation. At this point say a button will make first start

1. WB to finish install and run, if WB wants to reboot then reboot first. To WB6 can be downloaded here:




2. Install skin studio please select your own version

3. Enable WB advance please if you have a serial / crack it

4. If it is then in the system tray icon will appear WB then 5. Double click on the icon / right click and select configure windows blind

6. If it appears choose a theme that we will edit. Here I will only change the existing theme, if you want to create from scratch just run Skin studio and began to design a theme that you want

I'll start from the start button. If the position I would like this

Ex. Select the Edit start menu and taskbar and then select Edit on the sub horizontal taskbars


 

It will appear as below



7. On the list select the Start button. If it is then it will look like below

9. Then select the fame is to click on the frame that will be on fox. In addition to the frame is there an explanation of the function of the frame itself. Ex on frame No. 1 explanation that the frame under normal circumstances. No two frames on the state of suppressed / we click, etc..

10. Now I will change the way the files on the choice pick the right side and I will replace with a picture as below

















11. Insert a picture in a frame builder. Then it would be like under

12. If it is then Click the save file and close. After we close, we will return to the previous window, kemdian Click Apply then the theme will be in pairs with all amendments thereto.

Ex got me







Hope can help

Monday, November 28, 2011

create database applications using Visual Basic 6.0

create database applications using Visual Basic 6.0

Student Database Applications Using Visual Basic 6.0 and Ms. Access
Okay this time we will discuss about the simple application using Visual Basic 6.0 using MS database. Acces. Surely already know much about VB aka Visual Basic, the language program that may not be too complicated if emang want to learn more on the inside. . .

Okay immediately wrote the first reply we have to prepare a visual basic program or the software first, you can download here

  http://www.mediafire.com/?tmg2xozdg45

Once we have a visual basic program or software, let's make his first accses database. I do not explain how to create a database with Ms. Access here. Okay immediately wrote a database created with a name who you want and create a table named 'student' if you want to change it please,
IISI table with who you want to be like NPM, name, class, courses, lecturers etc.. . .
click save as and save it with the name of who you want, in order to more easily create folders
New for this project. . .
Okay now we've got Ms. database. Access to the name of who you created above.

Next we open the Visual Basic and then select standard exe to a form, then click on the Project menu and add modules as shown below. . .




Now enter the code in the module below. . .
Option Explicit
Public DB As New ADODB.Connection
Public RS As New ADODB.Recordset
Public No As String
Public Sub mainx()
On Error Resume Next
If Dir(App.Path & "\database.mdb") = "" Then
    MsgBox "File ''" & App.Path & "\database.mdb''" & " Not Exist" & vbCrLf & _
           "Please Re-Install It !", 0 + vbExclamation, "Database tidak ditemukan"
    End
End If

If DB.State = adStateOpen Then
    DB.Close
End If
DB.Open "DSN=MS Access Database;DBQ=" & App.Path & "\database.mdb;DefaultDir=" & App.Path & ";DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin;"
End Sub
What I paint the blue is the name of Ms. database. Access to our store earlier.
The module is completed we make now form his first, let's start the design.
Display design, which easiest wrote do not own a hardest.


above is the example of the design. . .
- Input student data using the labels, text and command button.
- Search also uses labels, text and command button.
- List of students using mhsflexgrid.

please never developed, if you like clay samples above please download the file below. Sorry I could not write a full tutorial because not enough time to be shorted. May be useful. . .



DOWNLOAD :


Tags