Thursday 2 May 2024

Vehicle RC Renewal after 15 years | RC Renewal online 2024 |RC Renew कैसे करें| step by step process

 Vehicle RC Renewal after 15 years|vehicle rc renewal | RC Renewal online 2024 | 15 year old vehicle re registration| Renew RC 2024 | How to renew Rc| RC Renew कैसे करें|Full Process in Hindi | Renew RC online | Renewal of rc online |Vehicle registration certificate re-registration online after 15 year | How to Renew Vehicle registration certificate of old car or Bike .

How to Renew your Vehicle RC online through Parivahan website while sitting at home.

In this video , i have cover following points: 1. How to Access Parivahan website for RC Renewal .
2. How to Generate CMV Form 25 for Vehicle Registration Certificate Renewal. 3. What are the documents required for vehicle registration 4. How to prepare file for vehicle registration renewal 5. How to pay taxes and fees for RC renewal 6. How to get ready your vehicle for inspection by MVI. 7. How to upload form duly signed by MVI on Parivahan Portal. 8. How to check the status of RC Renewal Application. Online Vehicle RC Renewal after 15 years ,re registration of vehicle after 15 years,CMV Form 25 for Vehicle Registration Certifcate Renewal,15 year old vehicle registration fees,15 year old vehicle re registration process,re registration of 15 year old vehicle,old vehicle registration renewal online,status of RC Renewal Application,latest news on 15 year old vehicle registration,,new rules for reregistration of old vehicles,re registration of vehicle,old vehicle registration,re registration of car after 15 years,How to Renew Vehicle registration certificate of old car or Bike,vehicle registration renewal,



Friday 12 November 2021

How to print content of a RichTextBox Control in Visual basic | Printing...

How to print content of a RichTextBox Control in Visual basic | Printing RichTextBox |Print to a pdf in this video, we will demonstrate how to print content of a RichTextBox Control in Visual basic 6. Printing RichTextBox Control content to a Pdf file . Step by step tutorial. In Visual basic 6, we can print content of a richtextbox control using printer and software to print data to a pdf file as well. This application will demonstrate 
Part:1 "How to Load data from a text file (RTF) to Richtextbox using Common Dialog Control and Richtextbox Control in Visual Basic" and How to Clear Rich Text Box Control. Link : https://youtu.be/32ITifBWJUI 
Part:2 How to Save Richtextbox data to a file using Common dialog control in Visual basic Link : https://youtu.be/oBJE3j2JJ1w
Part :3 How to Print Richtextbox content in visual basic and Print to a PDF file in visual basic . 
 Step by Step Tutorial No step is skipped  
 Code: 
Dim data As String
Dim filename As String


Private Sub clearbtn_Click()
RichTextBox1.Text = ""
End Sub

Private Sub loadbtn_Click()
opendialog.Filter = "Text Files (*.txt)|*.txt|RTf Files (*.rtf)|*.rtf|"
opendialog.ShowOpen
data = opendialog.filename
RichTextBox1.LoadFile (data)
End Sub

Private Sub printbtn_Click()
opendialog.CancelError = True
On Error GoTo CancelAlert
opendialog.Flags = cdlPDReturnDC + cdlPDNoPageNums
opendialog.ShowPrinter
RichTextBox1.SelPrint opendialog.hDC
Printer.EndDoc

CancelAlert:
Exit Sub

End Sub

Private Sub savebtn_Click()
opendialog.Filter = "Text Files (*.txt)|*.txt|RTf Files (*.rtf)|*.rtf|"
opendialog.ShowSave
filename = opendialog.filename
RichTextBox1.SaveFile filename, rtfText
End Sub

Monday 8 November 2021

How to save richtextbox data to a text file in visual basic | Export dat...

How to save richtextbox data to a text file in visual basic | Export data to a text file or RTF file | How to save richtextbox content to a file in visual basic |Visual Basic 6 Step by Step Tutorial In the Part:1, we have demonstrated "How to Load data from a text file (RTF) to Richtextbox using Common Dialog Control and Richtextbox Control in Visual Basic" and How to Clear Rich Text Box Control. In Part:2, we have discussed about "How to save Richtextbox data to a Text File or RTF file". All steps are explained in detail,no step is skipped while making this video tutorial. Step by Step Tutorial Code Dim data As String Dim check As Integer Dim filename As String Private Sub Command1_Click() opendialog.Filter = "Text Files (*.txt)|*.txt|RTf Files (*.rtf)|*.rtf|" opendialog.ShowOpen data = opendialog.filename ''check = Len(data) If opendialog.filename = "" Then MsgBox "You click on Cancel!! Kindly Select the file you want to load", vbOKOnly + vbCritical Else RichTextBox1.LoadFile (data) End If End Sub Private Sub findbtn_Click() opendialog.Filter = "Text Files (*.txt)|*.txt|RTf Files (*.rtf)|*.rtf|" opendialog.ShowSave filename = opendialog.filename RichTextBox1.SaveFile filename, rtfText End Sub