User Profile

Collapse

Profile Sidebar

Collapse
Petrosoft
Petrosoft
Last Activity: Aug 3 '06, 01:09 AM
Joined: Jul 24 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • You can use MS Word to create a mail merge document and set the datasource to the outlook address book. Then you can send all the personalized documents with one "Go".

    Tools-> Letters and Mailings -> Mail Merge

    Hope it helps
    See more | Go to post

    Leave a comment:


  • change the procedure
    from

    CREATE PROCEDURE GetVideoCount ( @VideoCount int OUTPUT )
    AS
    SELECT @VideoCount = Count(Video_ID) FROM Videos
    GO

    to

    CREATE PROCEDURE GetVideoCount ( )
    AS
    SELECT Count(Video_ID) FROM Videos
    GO

    and remove the following lines from your code
    Dim paramResult As New SqlParameter
    paramResult.Par ameterName...
    See more | Go to post

    Leave a comment:


  • Petrosoft
    replied to Runtim Control Addition
    in .NET
    'Declare a property on a viewstate variable
    Public Property Counter() As Integer
    Get
    Return ViewState("Coun ter")
    End Get
    Set(ByVal Value As Integer)
    ViewState("Coun ter") = Value
    End Set
    End Property


    'then use it as a normal variable

    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArg s)...
    See more | Go to post

    Leave a comment:


  • Petrosoft
    replied to how to convert arabic characters to unicode
    in .NET
    Are these files Text Files or files of diffirent types?

    if the files are text files then the convertion is very easy in .NET
    If not then is is a solution for every file type must be found!
    See more | Go to post

    Leave a comment:


  • Petrosoft
    replied to Crystal Reports Erro
    in .NET
    It seems to be a directory permission issue to me.

    Line
    ExportToFile(Re portDocument MyReport, String FileName)[

    Possible cause
    The ASPNET account (Windows XP , 2K) or NETWORK SERVICE account (Windows 2003 server) do not have write permission to the directory that the pdf file is to be generated.

    To be more precise i need the piece of code in which you call the ViewReport.Expo rtToFile(....
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...