Combo box with value and text in VB 6

VB 6 Combo box with value and text1. Add component Microsoft Forms 2.02. EngMatchFrm.CmbEngComponent.Clear    EngMatchFrm.CmbEngComponent.ColumnCount = 2    EngMatchFrm.CmbEngComponent.ColumnWidths = “0 in; 2 in”    Dim i As Integer    i =…

Read More

Calculate Total Hour and Minute in SQL

SELECT ((DATEDIFF(minute, ‘2013-06-30 08:30:00.0000000’, ‘2013-06-30 10:45:00.0000000’))/60) AS TotalHour,        ((DATEDIFF(minute, ‘2013-06-30 08:30:00.0000000’, ‘2013-07-30 10:45:00.0000000’))%60) AS TotalMinute The result of the above query is: TotalHour    TotalMinute       2                   15…

Read More

Sunday Mass at EDSA Shrine

Sunday Mass Celebration at the EDSA Shrine. This Sunday Eucharistic Celebration online at EDSA Shrine is aimed at helping Filipinos living and working abroad be closer to Jesus. However, it shall not take the…

Read More

Get Windows User Full Name in VB 6

Code in getting the windows user’s fullname. Dim strComputer As StringDim strUserName As StringDim objUser As Object strComputer = “ComputerName”strUserName = “UserNameSet objUser = GetObject(“WinNT://” & strComputer & “/” & strUserName)…

Read More