Skip to main content

Posts

Marg Software Download -MargERP 9 कैसे करे :

Contents   Comparison Chart  Basic/Silver Vs Gold  >> View Marg Software  Download ERP 9 कैसे करे  : Marg Erp Versions Download Marg Erp 9 Latest Click Here : Download Marg Erp 9 July-2022 Click Here : Download Marg Erp 9 Oct-2021 Click Here : Download Marg Erp 9 2019 Click Here : Download Marg Erp 9 2018 Click Here : Download

Image to PDF Converter 2022 | JavaScript & CSS Source Code

 Image to PDF Converter using JavaScript & CSS Source Code  <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=1"> <title>Home</title> <style>   *,*:after,*:before{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; } body{ font-family: arial; font-size: 16px; margin: 0; background: linear-gradient(133deg, #4abeb2, #3c57d2); color: #000; display: flex; align-items: center; justify-content: center; min-height: 100vh; } .container{   background: white;   width: 450px;   padding: 30px;   border-radius: 5px; } input{ position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; z-index: 1; } .button{   display: flex; } #showImg{ display: block; margin: 0 auto; max-width: 400px;   mi...

How to Find a Drive's Volume Label or Serial Number using Commmand Prompt

How to Find a Drive's Volume Label or Serial Number using Commmand Prompt • It is called the Volume Serial Number. It is generated at the time of creating and formatting the volume / partition. • You can get it by using a command at command prompt : C:\>vol c: if C: is the drive you want to retrieve the Volume Serial Number for. • All you can do is redirect the output of that command to a file : C:\>vol c: > myvol.txt and it will be stored as a text file in your C: This gets the manufacturers serial number of the hard drive. wmic disk drive get serial number If you have many hard drives like me, use this instead to help you know which is which: wmic diskdrive get name,size,model,SerialNumber

Indian Stock Market Fundamentals 2022

Hello friends, welcome to Stock Funda, almost everything about Stock Market from Beginner Level to Expart Level will be discussed here, we will try to present the content in as simple language as possible, so that people who have no basic knowledge about Stock Market This is an attempt to help one to gain proper knowledge about this. I hope you will respond. Contents The Fundamentals of Stock Market Money is a must for all businesses to operate. There are instances when sales revenue from selling goods or services is insufficient to cover the costs of working capital. Therefore, businesses ask everyday people like you and me to invest in their business to grow their business and make more profit . In exchange, investors receive a part of whatever profits the business makes. What does shares mean  To own a part of a company's worth, purchase shares. You may acquire ownership rights to a specific quotient of the business in proportion to the capital you contribute....

Vb.Net tools Focus Color | Techbymati

Contents Vb.Net tools Focus Color ( Textbox,Combobox and others) Private Sub focus_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txt_partyname.Enter, _         cb_partydist.Enter, _         cb_partycity.Enter, _         txt_partyadd.Enter, _         txt_partyphone.Enter, _         txt_partypin.Enter, _         txt_partygstno.Enter, _         txt_partypan.Enter         ' Dim tb As TextBox = sender         ' Dim cb As ComboBox = sender         ' tb.BackColor = Color.LightPink         ' cb.BackColor = Color.LightPink         DirectCast(sender, Control).BackColor = Color.LightPink     End Sub     Private Sub focus_Leave(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txt_pa...

Datagridview complete Guide Vb.net | TechByMati

Contents DataGridView summary on Footer Vb.Net Imports System.Drawing Imports System.Data.SqlClient Imports System.Data Partial Class _Default Inherits System.Web.UI.Page Dim total As Integer = 0 Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim adapter As New SqlDataAdapter() Dim ds As New DataSet() Dim i As Integer = 0 Dim sql As String = Nothing Dim connetionString As String = "Data Source=.;Initial Catalog=pubs;User ID=sa;Password=*****" sql = "select top 6 ord_num,stor_id,title_id,payterms,qty from sales" Dim connection As New SqlConnection(connetionString) connection.Open() Dim command As New SqlCommand(sql, connection) adapter.SelectCommand = command adapter.Fill(ds) adapter.Dispose() command.Dispose() connection.Close() GridView1.DataSource = ds.Tables(0) GridView1.DataBind() End Sub Protected Sub GridView1_RowDataBound(ByVal sender As Obje...

Vb.Net and MS-Access database Conection | TechbyMati

Contents Vb.Net and MS-Access database Conection Open connection to password protected Access database: "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=c:\App1\Your_Database_Name.mdb; Jet OLEDB:Database Password=Your_Password" connStr = "Provider=Microsoft.Jet.OLEDB.4.0; " +             "Data Source=G:\\Backup\\Kashif\\xyzDB.mdb";             qryStr = "select content,websiteID  from content";             dbConn = new OleDbConnection(connStr); Examples:      SQL:  "server=tonydev;database=northwind;uid=tony;pwd=hrmmm"               "server=tonydev;database=northwind;trusted_connection=yes"      OLE: "Provider=Microsoft.Jet.OLEDB.4.0; Data source=C:\tony.mdb"     Public Function FetchData(ByVal FileName As String) As DataSet         'Define the connectors   ...