Search:

Type: Posts; User: Jagjit

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    2,118

    [RESOLVED] Fixed Length of a string

    Hi

    I have a field of Length 4. There are values which have len = 1 some have 2 etc

    Field 1

    AB
    A
    CCC
    DDDD
  2. Replies
    4
    Views
    1,137

    How the below code works

    Hi

    Dim Arr1() As String
    Dim Ctr As Integer
    ReDim Arr1(5, Ctr)

    THanks
  3. Replies
    11
    Views
    1,676

    Re: Error Accessing system registry

    Hi

    When i try to open VBP file . Sometimes i get error "Method of object failed".

    Thanks
  4. Replies
    11
    Views
    1,676

    Error Accessing system registry

    Hi

    When i open Visual Basic Project i get Error Accessing System Registry. I am using Windows 10

    Thanks
  5. Replies
    4
    Views
    1,623

    Re: Connect to a remote MS Access database in vb6

    Hi

    Somewhere on the local network

    Thanks
  6. Replies
    4
    Views
    1,623

    Connect to a remote MS Access database in vb6

    Hi

    I have below connection to save data on Local Computer .How to Connect to a remote MS Access database in vb6

    cnn1.Provider = "Microsoft.Jet.OLEDB.4.0;"
    cnn1.Properties("Jet...
  7. Replies
    8
    Views
    1,734

    Re: Date Format

    Hi

    I want to check whether Short Date Format in Control Panel -> Region Settings is MM/dd/yyyy.

    I am trying below code




    Private Declare Function GetLocaleInfo Lib "kernel32" Alias...
  8. Replies
    8
    Views
    1,734

    [RESOLVED] Date Format

    Hi

    I want if Date format is not mm/DD/yyyy then message should appear 'Incorrect Format'.

    Thanks
  9. Replies
    12
    Views
    8,035

    Re: Microsoft excel 15.0 object library missing

    [Hi

    Office 2013 standard

    Thanks
  10. Replies
    12
    Views
    8,035

    Microsoft excel 15.0 object library missing

    Hi

    In references it is showing - Microsoft excel 15.0 object library missing

    Thanks
  11. Replies
    4
    Views
    1,076

    Re: [RESOLVED] Connection with SqlExpress 2014

    Hi Miser

    Thnx
  12. Replies
    4
    Views
    1,076

    Re: Connection with SqlExpress 2014

    Hi

    I am trying this . It is giving the error - The Microsoft Jet Database Engine cannot open the file . It is already opened exclusively by another user or u need permission to view its data.
    ...
  13. Replies
    4
    Views
    1,076

    [RESOLVED] Connection with SqlExpress 2014

    Hi

    How to make a connection to Sql Express 2014. DataSource name not found & no default driver specified.

    cnn.Open _
    "Provider = MSDASQL.1;" & _
    "Driver=SQL Server;" & _
    ...
  14. Replies
    0
    Views
    2,735

    Reset Formula Value

    Hi

    How to reset formula value Amount,Debit,Credit to 0 on change of group . Secondly i want to print Amount & Dr_Cr variables value

    whileprintingrecords;
    CurrencyVar Amount;
    CurrencyVar...
  15. Re: How to calculate balances at runtime with Dr/Cr

    Hi Mighty

    Hi

    Above data received through Stored Procedure


    I want in Document No 11 it should show balance as 9187 Cr
    In Document No 12 it should show balance 13187 Cr
  16. Re: How to calculate balances at runtime with Dr/Cr

    Hi Techngome

    Through Stored Procedure i am able to do . But i want to know how it can be done thru Running Total or Formula .

    Thanks
  17. Re: How to calculate balances at runtime with Dr/Cr

    Hi

    Above data received through Stored Procedure


    I want in Document No 11 it should show balance as 9187 Cr
    In Document No 12 it should show balance 13187 Cr

    In Document No 14...
  18. Re: How to calculate balances at runtime with Dr/Cr

    Hi

    Above data received through Stored Procedure


    I want in Document No 11 it should show balance as 9187 Cr
    In Document No 12 it should show balance 13187 Cr

    In Document No 14...
  19. How to calculate balances at runtime with Dr/Cr

    Hi

    I have below report & i want to calculate Balances with Dr/Cr. How it can be calculated by Formula. On Change of Account No group reset to 0

    ...
  20. Replies
    1
    Views
    988

    Image not showing

    Hi

    I have image in Tablix . In Properties i have selected Mime Type Image/jpeg . Datasource as database . But it is not showing image

    Thanks
  21. Replies
    2
    Views
    1,565

    Re: Data retreival failed for this report

    Hi

    After writing below line it is working . What does it do . Is there any other way also.

    AddHandler ReportViewer1.LocalReport.SubreportProcessing, AddressOf SetSubDataSource

    Thanks
  22. Replies
    2
    Views
    1,565

    Data retreival failed for this report

    Hi

    I have subreport and in subreport properties i have added parameter . But when i report i get above error

    Thanks
  23. Replies
    2
    Views
    529

    Generic function

    Hi

    I have below code written on each selection of report . Each report will have different dataset & stored procedure . How i can create Generic function of below code


    Dim data As New...
  24. Error - An error occurred during local report processing

    Hi

    I have below code and in rds it shows data. IT gives error the definition of the report is invalid



    Dim data As New DataSet1.Sp_CostingDataTable

    con = New...
  25. Replies
    1
    Views
    815

    [RESOLVED] Report Rdlc

    Hi

    How to create single sqldataadpater with multiple datasets for multiple reports

    Thanks
  26. Replies
    0
    Views
    328

    Error while opening Rdlc file

    Hi

    When i try to open rdlc file it asks Do u want to upgrade or open in xml format. When i clicks upgrade it gives error - The report definition has an invalid Target Namespace...
  27. Thread: Rdlc Report

    by Jagjit
    Replies
    0
    Views
    1,189

    Rdlc Report

    Hi

    In case of Rdlc report what changes need to be done in below code

    Dim crystalrpt As New CRAXDRT.Report
    crystalrpt = Report(rptName, "")
    With crystalrpt
    ...
  28. Thread: IDataReade

    by Jagjit
    Replies
    0
    Views
    713

    IDataReade

    Hi

    I have below code and i want if it is open then it should be closed.


    Private objrdr As IDataReader

    Thanks
  29. Replies
    4
    Views
    587

    Re: How to break from outer Sub function

    Hi

    Exit Sub will come from outer function or from Try Catch Statement . I will have exit sub in try Statement.

    Secondly how we can implement GoTo in Vb.net.

    Thanks
  30. Replies
    4
    Views
    587

    Re: How to break from outer Sub function

    Hi

    Exit Sub will come from outer function or from Try Catch Statement . I will have exit sub in try Statement

    Thanks
  31. Replies
    4
    Views
    587

    How to break from outer Sub function

    Hi

    I have below code


    Private Sub frm_ButtonClick(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles _frm_Button1.Click,
    Dim Button As...
  32. Replies
    1
    Views
    466

    [RESOLVED] Throw Statement

    Hi

    I am using try Catch Statement . Can we call function in Throw Statement . I have Public function with name of Orders which i want to call

    Thanks
  33. Thread: Reporting Issue

    by Jagjit
    Replies
    0
    Views
    374

    Reporting Issue

    Hi

    I have added SqlDataAdapter & configured it . I am using Stored procedure . With this i also want to display data from 1 more tables in a report . This tables has no link with Stored...
  34. Replies
    7
    Views
    4,668

    Re: ReportViewer in RDlc

    Hi

    In Nuget it is showing me only v150.1358.0

    Thanks
  35. Replies
    7
    Views
    4,668

    Re: ReportViewer in RDlc

    Hi

    In Nuget it is showing me only v150.1358.0

    Thanks
  36. Replies
    7
    Views
    4,668

    [RESOLVED] ReportViewer in RDlc

    Hi

    I am trying to add reportviewer on form in Visual Studio 2017 but it is giving error - Failed to create component reportviewer , A reference to the component Microsoft.ReportViewer.Winforms...
  37. Thread: Dataset

    by Jagjit
    Replies
    0
    Views
    950

    Dataset

    Hi

    Why we need to add Dataset in report using reportviewer. Cant we create programatically

    Thanks
  38. Thread: Crystal Report

    by Jagjit
    Replies
    0
    Views
    3,009

    Crystal Report

    Hi

    How the below code works

    stringVar s0 := "";
    numberVar n0 := 0;
    numberVar ctr := 0;

    if not isnull({List1.ColC}) then s0 := trim({List1.ColC});
  39. Replies
    1
    Views
    452

    parameterized report

    Hi

    I am passing multivalue parameter like below but it is returning no record. IN Report when i print Parameter value it shows error


    Dim p0 as String If CheckedListBox1.Items.Count > 0 Then...
  40. Thread: ReportViewer

    by Jagjit
    Replies
    2
    Views
    487

    Re: ReportViewer

    Hi goggy

    ??
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width