//
archives

Archive for

Barcode Render using PHP

Hiiiii dear all, i will present easy sample barcode with phpcode, and you can download this example by zip file. <?php require_once (‘core.php’); $start = 1; $max = 150; $sn = 501; $imei =1; for($i=$start;$i<=$max;$i++){ $imei_string = ”; $sn_string = ”; $imei_string = “35566103012”.sprintf(‘%03d’, $imei); $sn_string = “DM-V110015”.sprintf(‘%03d’, $sn); $p_bcType=1; $p_textEnc=rawurlencode($imei_string); $p_xDim=1; $p_w2n=2; $p_charGap=1; $p_invert=’N’; … Continue reading

Register Asp.NET in IIS

Setup IIS with ASP.NET : 1. Install IIS Windows 2003: Click Start, point to Control Panel, and then click Add or Remove Programs. In Add or Remove Programs, click Add/Remove Windows Components.  In the Windows Components Wizard, under Components, select Application Server. Windows 7 :  Go back to “Programs and Features” and “Turn Windows features on or off” and expand IIS. Here I selected “World Wide … Continue reading

showModalDialog Properties & Sample

Creates a modeless dialog box that displays the specified HTML document. Syntax Copy vReturnValue = object.showModelessDialog(sURL [, vArguments] [, sFeatures]) Parameters sURL Required. String that specifies the URL of the document to load and display. vArguments Optional. Variant that specifies the arguments to use when displaying the document. Use this parameter to pass a value of … Continue reading

Remove checkbox border in input HTML

For FireFox: try border:none For IE try: style=”background:transparent;border:0″ Example For IE <code> <input style=”background: transparent; border: 0;” type=”checkbox” /> </code> For FireFox <code> <input style=”border: none;” type=”checkbox” /> </code>

Install asp.net vs2005 at windows 2003, Error 1718

Error 1718. File C:\WINDOWS\Installer\2dcc9393.ms Microsoft fix release : http://support.microsoft.com/kb/925336/en-us   Windows Server 2003 hotfix information A supported hotfix is now available from Microsoft. However, it is intended to correct only the problem that is described in this article. Apply it only to systems that are experiencing this specific problem. This hotfix may receive additional testing. … Continue reading

Money Format MSSQL SERVER

A reader sent me a question recently in which he wanted toknow how to display currency amounts in the format we commonly refer to ascurrency. (I realize how geo-centric this is, so I will attempt to beworld-centric in my response to the reader’s question.) Let’s use the Northwind databaseas our testbed. Consider the following SQL … Continue reading

MySQL Date and Time Functions (dateformat)

11.7. Date and Time Functions This section describes the functions that can be used to manipulate temporal values. See Section 10.3, “Date and Time Types”, for a description of the range of values each date and time type has and the valid formats in which values may be specified. Table 11.13. Date/Time Functions Name Description ADDDATE() Add time values … Continue reading

Password Function in SQL Server

Like Mysql, SQL Server have any function for password encrypte. In mysql we can see like MD5,PASSWORD,HASH and any other type of function make text encrypte. You can see any example and comparing that function : In a recent SQL Server port of the Actions module for Drupal 5, I ran into the following MySQL … Continue reading

ASP.NET /VB Random Text

Example function generate ramdom string text Public Function GetRandomPasswordUsingGUID(ByVal length As Integer) As String ‘Get the GUID Dim guidResult As String = System.Guid.NewGuid().ToString() ‘Remove the hyphens guidResult = guidResult.Replace(“-“, String.Empty) ‘Make sure length is valid If length guidResult.Length Then Throw New ArgumentException(“Length must be between 1 and ” & guidResult.Length) End If ‘Return the first … Continue reading

Enter your email address to follow this blog and receive notifications of new posts by email.

Join 10 other subscribers
November 2011
M T W T F S S
 123456
78910111213
14151617181920
21222324252627
282930  

Archives

Web Statistic

Blog Stats

  • 187,136 hits