Posts

SQL Server Log File is too big,

http://www.techrepublic.com/blog/datacenter/help-my-sql-server-log-file-is-too-big/448 http://blog.sqlauthority.com/2007/11/22/sql-server-shrinking-truncate-log-file-log-full-part-2/

Welcome to the world​ ​(PHIN Sokhawin) :-)

Image
19 August 2011 @ 10:45AM (3.05Kg) @ Calmet Hospital. ត្រូវ​នឹង ថ្ងៃសុក្រ ៥​រោច  ខែ ស្រាពណ៍ ឆ្នាំ ថោះ ត្រីសក័ ពស ២៥៥៥ គស ២០១១
      You can customize Ms Access 2007 ribbon by adding Zoom feature in table [USysRibbons] with the following code : <group id="grpZoom" label="Zoom" visible="true"> <splitButton idMso="PrintPreviewZoomMenu" size="large"/> <toggleButton idMso="ZoomFitToWindow" size="large"/> <toggleButton idMso="ZoomOnePage" size="large"/> <toggleButton idMso="PrintPreviewZoomTwoPages" size="large"/> </group> You can also see original post at rptsoftware  

Implementing Table Inheritance in SQL Server

    I have found a simple explanation on sqlteam website related to the table inheritane design. It look cool and easy to understand the feature.  I have convert web page into pdf file .

Modify font and color properties of unread/read documents in Notes 8.5.2

  By default lotus note client 8.5.2 defined 2 modes of display for unread mail (File > Preferences... > Fonts and Colors ) in unread mail indication are Bold Black Text , and Plain Red text. You can just switch between these two mode.  How could we set it in to bold with red or any other color?

Generate Forms with fields without any development knowledge.

   I have been asked by my team to have a very quick an online survey base on current deployment of the web page(Joomla base website). Before all, I have known that there have hug components development in Joomla which some are commercial and some are open to public used. Finally I come across  ckform  which seems fulfill my need and also free for public used. They have develop and fully documented.      You can download the components, modules, and plugin from their original website or used as my link. 1.   CKForms component 1.3.5 (build 1) 2.   CKForms plug-in 1.3.4 (build 1) 3.   CKForms Data plug-in 1.3.4 (build 1) 4.   CKForms module 1.3.4 (build 1) 5.   Manual 1.3.4 (English)

Use NotInList Event to Add a Record to Combo Box

    Some time we would like to add new items into Combo Box while it does not previously exists. There are severals ways to do that : 1. Using Code to Add a Record to a Table:  With this you need to set LimitToList property of the combo box  to Yes and writing into its  OnNotInList event as below Private Sub CustomerID_NotInList(NewData As String, _             Response As Integer) Dim Db As DAO.Database Dim Rs As DAO.Recordset Dim Msg As String Dim NewID As String On Error GoTo Err_CustomerID_NotInList     If NewData = "" Then Exit Sub     Msg = "'" & NewData & "' is not in the list." & vbCr & vbCr & "Do you want to add it?"     If MsgBox(Msg, vbQuestion + vbYesNo) = vbNo Then         Response = acDataErrContinue         MsgBox "Please try again."     Else  ...