TLink 1.0 API is a Dynamic Link Library (DLL) that allows software developer to Integrate their software with Tally 9, Tally 8, Tally7.2, Tally6.3.
Totally hassle free.
No need to remember any database format, XML tags.
Still it is the cheapest solution in the World!!
Here is a sample code for Visual Basic 6.0.
Dim LD As TLedger
Dim TM As New TMasters
Dim TC As New TLCore
If TC.IsTallyRunning(sServer) = True Then
LD.Name_ = "My New Ledger"
LD.Parent_ = "Sundry Creditors"
LD.ExciseLedgerClassification_ = "Default"
LD.IsBillwiseOn_ = "Yes"
LD.IsCostCentresOn_ = "No"
LD.IsInterestOn_ = "No"
LD.AllowInMobile_ = "No"
LD.IsCondensed_ = "No"
LD.AffectsStock_ = "No"
LD.ForPayroll_ = "No"
LD.InterestOnBillwise_ = "No"
LD.OverrideInterest_ = "No"
LD.OverrideAdvInterest_ = "No"
LD.UseForVAT_ = "No"
LD.IgnoreTDSExempt_ = "No"
LD.IsTCSApplicable_ = "No"
LD.IsTDSApplicable_ = "No"
LD.IsFBTApplicable_ = "No"
LD.IsGSTApplicable_ = "No"
s = TM.XLedger_90(sCurrentCompany, LD, "Alter")
Else
MsgBox "Please check whether Tally is running."
End If
|