Ready for Programming

Wednesday, 13 September 2017

Visual Basic 6 Function to generate Check Digit for GST No. (GSTIN) India

›
Public Function CheckSum(gstin As String) As String     Dim symbList(0 To 35) As String * 1     Dim gstinList(0 To 13) As String * 1   ...
5 comments:
Wednesday, 6 September 2017

Using New for Object Creation with Dim v/s Set Command (Visual Basic 6)

›
    To Understand it, see the example given below     For i = 1 To 10         Dim c As New Collection            'executed only onc...
Tuesday, 15 August 2017

Punjabi Font like Anmollipi/Asees Viewer App for Android System

›
Just copy content from word file and paste in app to view it in Punjabi font like AnmolLipi/Asees. Click here to download App... Discl...
1 comment:
Tuesday, 1 March 2016

Assembly Program to count no. of character in a string

›
;Assembly program to count no. of character in a string org 100h  ;code section mov cl, 0               ;clear counter mov bx, offset strin...

Assembly language program to read an array of numbers and find the minimal and maximal elements

›
;Asm program to compare an array to find minimal and maximum number ;maximal no. is stored in ah and minimal in al at the end of program ...

Assembly Program to convert string from lower case to upper case

›
  ;Program to convert string from lower case to upper case      org 100h ; add your code here mov bx, offset str      ;load address of fisr...

Assembly Program to convert a number to ASCII string

›
;Assembly program to convert a number to ASCII string org 100h    jmp start               ;to start of code number dw 19348         ;number...
‹
›
Home
View web version
Powered by Blogger.