User Profile

Collapse

Profile Sidebar

Collapse
pbala
pbala
Last Activity: Feb 2 '10, 09:00 AM
Joined: Dec 16 '08
Location: Tamil Nadu
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Set Scroll bar to Selected Item in a multiple Select Listbox

    I have a multiple select Listbox.When I click on it then it post backs and scroll back to the top of the Listbox.
    Is there any property to prevent it?
    See more | Go to post

  • pbala
    replied to View the Selected item in Listbox
    in .NET
    Set the Scroll position to View the Selected Items in Listbox.

    Listbox does not returns with the last selected items in view while page refresh.

    How to show the selected item in list box Without Scrolling to particular item?
    See more | Go to post

    Leave a comment:


  • pbala
    started a topic View the Selected item in Listbox
    in .NET

    View the Selected item in Listbox

    hi,
    I have the Listbox containing 250 items, when I selected 130th item and proceed with some operations. After that when i back to form, the selected items are same but i need to drag upto 130th item to view, what i have selected.

    Is there any method to show the last selected item while page load or refresh?
    See more | Go to post

  • pbala
    started a topic Check User Group in Active Directory

    Check User Group in Active Directory

    Check the User is the Member of One Group using Active Directory in C#.net

    System.Director yServices.Accou ntManagement.Pr incipal.IsMembe rOf(System.Dire ctoryServices.A ccountManagemen t.GroupPrincipa l)




    How to find the "System.Directo ryServices.Acco untManagement.G roupPrincipal"?
    See more | Go to post

  • DateTime Null Error, While assigning Null Date Value

    Code:
    ConnectionString = "....."
    QueryString = "SELECT * FROM SomeTable"
    
    Dim myConnection As New MySql.Data.MySqlClient.MySqlConnection(ConnectionString)
    Dim myCommand As New MySql.Data.MySqlClient.MySqlCommand(QueryString, myConnection)
    Dim myReader As MySqlDataReader
    
    Try
    myConnection.Open()
    myReader = myCommand.ExecuteReader
    Dim Field1,Field2 as String
    ...
    See more | Go to post

  • Deploying the Windows Application with Crystal Report 9 in .Net 2003

    Hi,
    I created the windows application with Crystal Report 9.0 in .net 2003. While Deploying the Setup file I created the Merge Modules. I installed .net Framework 1.1 in that user system. After that i installed the Setup File.


    Now I am Receiving Error:

    "CrystalDecisio ns.CrystalRepor ts.Engine.LogOn Exception: Logon failed."

    What is the reason of this error......

    ...
    See more | Go to post

  • pbala
    started a topic .net 2003 Web applications Crystal Report

    .net 2003 Web applications Crystal Report

    Hi,
    In my Crystal Report Viewer , The data that is coming up is totally garbled after the first few pages, And also the format has changed as I scroll down.

    But in PDF and Excel Export the record order is fine.

    is there any property to avoid wrapping Text.....


    Thanks,
    See more | Go to post

  • pbala
    started a topic How to create row as column in crystal report?

    How to create row as column in crystal report?

    Hi Everyone,
    Can anyone please help me how to build the Crystal Report as (Rows as Columns and Columns as Rows) For Eg:

    Let us Consider a DataTable in this Format

    Column1 Column2 Column3 Column4
    Row1
    Row2
    Row3
    Row4

    From this table structure,

    I need to create the Crystal Report as

    Row1 ...
    See more | Go to post

  • Excel Export Problem

    Report.ExportTo Disk(CrystalDec isions.Shared. ExportFormatTyp e.Excel, "C:\Reports.xls ")


    While using this code it give some error
    "Error in File C:\Inetpub\wwwr oot\SEVS\Report FundEv_CrystalR PT.rpt: Error detected by export DLL: "
    See more | Go to post

    Leave a comment:


  • pbala
    started a topic Export Crystal Report to Excel in asp.net vb 2003

    Export Crystal Report to Excel in asp.net vb 2003

    Hi,
    I need the code for Export to Excel from Crystal Report Viewer in Asp.Net 2003 with vb.net.
    See more | Go to post

  • Embed Image and send E-mail to Outlook Express

    How to insert a image in message body and send it to Outlook express using SMTP?

    I used this code to attach a image file, i want to Embed the images in message..

    Code:
    public void SendMail(string from, string to, string subject, string body)
            {
                string filname = "G:\\Notes\\Sample Project\\Bday\\bh.gif";
                MailMessage mail = new MailMessage(from, to, subject, body);
    ...
    See more | Go to post
    Last edited by tlhintoq; Jun 15 '09, 12:18 PM. Reason: [CODE] ... your code here ... [/CODE] tags added

  • CrystalDecisions.CrystalReports.Engine.ReportDocum ent.PrintToPrinter

    CrystalDecision s.CrystalReport s.Engine.Intern alException:
    Error in File C:\DOCUME~1\SU~ 1\LOCALS~1\Temp \temp_2584-17b8-42f7-a697-56e96eab8d8d.rp t:
    Request cancelled by the user.
    See more | Go to post

  • pbala
    replied to Button in Gridview
    thank you, its working..... I sent mails to the receipients through the SMTP...
    See more | Go to post

    Leave a comment:


  • Error: The GridView 'jobgrid' fired event RowDeleting which wasn't handled.

    While Delete a Row in Gridview using OnRowCommand this error was occured.

    Error: The GridView 'jobgrid' fired event RowDeleting which wasn't handled.

    but the record is deleted in gridview
    See more | Go to post

  • pbala
    replied to How to count the number of Button clicks?
    How to count the number of Button clicks?

    if I declared
    Code:
     protected void Button1_Click(object sender, EventArgs e)
    {
    int count=0;
    count++;
    int noofcount=count;
    }
    it will results only 1. For Every click the count is changed to 0....
    See more | Go to post
    Last edited by PRR; May 25 '09, 06:19 AM. Reason: Added code tags. Please post code in [code] [/code] tags.

    Leave a comment:


  • pbala
    started a topic How to count the number of Button clicks?

    How to count the number of Button clicks?

    if I declared
    Code:
     protected void Button1_Click(object sender, EventArgs e)
            {
     count++;
    See more | Go to post
    Last edited by PRR; May 25 '09, 06:26 AM. Reason: Please do not double post.

  • pbala
    started a topic Button in Gridview

    Button in Gridview

    I created one button field in Gridview in asp.net 3.5. I wish to send mails using the button bound with ("mailid"). How can i write the code for button?


    Thanks in advance
    See more | Go to post

  • pbala
    pbala posted a Visitor Message for DonRayner
    Thanks a lot.... its working
    See more | Go to post

  • pbala
    started a topic Closing FORM2 from FORM1in MS Access 2003

    Closing FORM2 from FORM1in MS Access 2003

    Hi,
    We are using MS Access 2003 Database contains some forms. We need to close FORM2 from FORM1. Eg.,

    In Form1,
    Code:
         CmdcloseForm2_Click()
            ' Close Form (using Docmd)
         End Sub
    See more | Go to post
    Last edited by NeoPa; Mar 5 '09, 01:52 PM. Reason: Please use the [CODE] tags provided

  • pbala
    pbala posted a Visitor Message for ADezii
    Its really help ful. Thank You........ Now WrapText is working
    See more | Go to post
No activity results to display
Show More
Working...