CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: danasegarane

Page 1 of 16 1 2 3 4

Search: Search took 0.10 seconds.

  1. Re: Date Comparsion in Formula field

    No I found the issue...



    Replaced

    CDateTime
  2. [RESOLVED] Date Comparsion in Formula field

    Hi am using Date Comparsion in Crystal Report selection Formula as

    if (strcmp({?Fromdate},'Nothing')=0 and strcmp({?Todate},'Nothing')=0) then
    (
    {Command.COMPANYID}={?CompanyId} and...
  3. Replies
    1
    Views
    2,542

    Graph Object Controls

    Hi All,
    I am developing crystal reports using VS2005. In my report I have a graph object with the Chart type as Bar . I want set the this option programmatic .

    Right Click Reports...
  4. Replies
    10
    Views
    1,389

    Re: Build Related Question

    I checked in the Reference section. Is is not there. I checked using the assembly disassembler. It list 4 in addition to the default list.

    I am wondering where it is getting added
  5. Replies
    10
    Views
    1,389

    Re: Build Related Question

    Windows Service
    Yes. It is refering to 4 others DLL which is created by us


    It is the dLL created by US. But I am sure I didn't refer it in the windows service Project.x
  6. Replies
    10
    Views
    1,389

    Re: Build Related Question

    I Created one Widows services which referenced to 4 DLL (Internally Created).

    When I build the Exe it produced was adding one DLL in DLL, which I didn't refer to.

    I check in reference for the...
  7. Replies
    10
    Views
    1,389

    Build Related Question

    Hi all,

    Today I was build one Windows Service Application which has the reference to 4 Dll.

    After building the Release I found that there was one more DLL in addition to the...
  8. Multisheet Excel Report from Crystal Report

    Hi all,
    I am planing to a excel sheet from Crystalreport using VS2005 with 3 sheets . The first sheet will contain some graph and the 2 and 3rd sheet will contains the data for it.
    ...
  9. Replies
    3
    Views
    1,255

    Re: Set Database Location Problem

    I am OLEDB Data Source. That is SQL
  10. Replies
    3
    Views
    1,255

    Set Database Location Problem

    Hi Team,
    I am using crystal report 9. And I have a huge set of reports and sub reports. I have developed my application and now i am going to move it to live. Now I face the problem of...
  11. Replies
    3
    Views
    1,362

    Re: Map Network Drive

    Thanks for the post David :)


    ?How can use prompt the user to give username and password by using the windows default window ?
  12. Replies
    3
    Views
    1,362

    Re: Map Network Drive

    The title of the Dialog box is "Connect to xxx". Here the xxx is the servername
  13. Replies
    3
    Views
    1,362

    Map Network Drive

    Hi all,

    Hi all I want to map a network drive. If the user has access to that
    site then that path will map automatically. If the user doesnt have any rights
    the i need to get the username and...
  14. Replies
    1
    Views
    1,497

    Combo box Max Length

    Hi all,
    How can set the max length of a combo box to 50 charcters only

    Thanks in Advance
    Dana
  15. Replies
    1
    Views
    538

    Console output

    Hi all,
    I found http://dotnet.mvps.org/dotnet/samples/misc/#RedirectConsole one to read the console output by line by line.But I am unable to detect the finishing of the console.output.How can I...
  16. Replies
    3
    Views
    1,037

    Re: List Running Process

    How can I get the child window titiles also

    Dana
  17. Replies
    3
    Views
    1,037

    List Running Process

    Hi all,
    I am using this code this code to list the all the running proces handle


    for each p as process in Process.GetProcesses
    listbox1.items.add(p.mainwindowtitle)
    next

    ...
  18. Replies
    1
    Views
    719

    Add a User to the Domain

    Dear all,
    How can I users to Administrative group of my system


    Thanks in advance
    Dana
  19. Replies
    2
    Views
    726

    Re: OutlookFolder

    Dear David,
    Presently I am having this code with me.How can I improve on it
    Now How can I get the folder size of the Folders



    Option Explicit
    'Micosoft CDO 1.21 Library...
  20. Replies
    2
    Views
    726

    OutlookFolder

    Hi all,
    Good Evening to All,
    How can I retrive the outlook folders and their size without getting the anoying Outlook Security Prompt

    Thanks in Advance
    Dana
  21. Replies
    1
    Views
    5,087

    Menustrip items count

    Dear All,
    How can I get the menustrip items count including the dropdown items

    Dana
  22. Replies
    4
    Views
    866

    Re: Outlook path size

    Dear David,
    Thanks for your reply.But OutlookFolderpath ?
    I want to get the path as attached

    Dana
  23. Replies
    4
    Views
    866

    Re: Outlook path size

    Thanks PeejAvery,
    That site has some information.But Unfortunately not contain the information that i am looking for ?

    Dana
  24. Replies
    4
    Views
    866

    Outlook path size

    Dear All,
    I am trying to find the path(and size) of the pst(outlook) file for the current user logged in
    I am trying with this code.But I am not able to find anything.Is there...
  25. Replies
    6
    Views
    955

    Re: count total line

    Try this


    Public Function GetNoofLines(nFilename As String) As Integer
    Open nFilename For Input As #1
    Do Until EOF(1)
    Input #1, temp$
    GetNoofLines = GetNoofLines + 1
    ...
Results 1 to 25 of 392
Page 1 of 16 1 2 3 4





Click Here to Expand Forum to Full Width

Featured