Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
V

V Senthil

@V Senthil
About
Posts
10
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Date filtering issues in Linq Query
    V V Senthil

    Hi, Im facing the probelm in filtering the record using the date criteria. Im having 2 column FromDate and ToDate. Eg: FromDate : 28/04/2011 & ToDate : 11/03/2012 If i pass the FromDate as 04/09/2011 and ToDate as 10/09/2011 means i need to get the above the record, but i cant able to the data. Query i used date criteria: ------------------------------ [FromDate] >= FromDate.Value && [FromDate] <= ToDate.Value && [ToDate] >= FromDate.Value && [ToDate] <= ToDate.Value Can i know the pblm in the above query. Thanks, Senthil V.

    ASP.NET csharp database linq

  • Close all the application in vb.net
    V V Senthil

    ok thanks for advice. I am creating the Setup in VB.NET there in User's Startup Folder im setting to run my application. So that the user can able to open any application in the sytem. But what the problem when im loading the machine it take few minutes to load the project. Give me u'r suggestion to make the project load quick when Operating System loaded.

    Visual Basic csharp

  • Close all the application in vb.net
    V V Senthil

    Hi, When VB.NET application is loading i need to close all the opened application like Notepad, Folder, Word, Winamp etc., Can any one give me the code to close all the apllication using VB.NET Regards, Senthil V.

    Visual Basic csharp

  • Problem in opening Cash Drawer in VB.NET
    V V Senthil

    No we are using .NET 1.0.

    Visual Basic csharp com help

  • Problem in opening Cash Drawer in VB.NET
    V V Senthil

    Hi Friends, I need the code to open cash drawer either it will be connected in COM or Serial Port. Below this code is working VB 6.0. Open "LPT1" For Output As #1 Print #1, Chr$(27); Chr$(112); Chr$(0) Close #1 I need the code in VB.NET. Any can change the code to .NET. Thank's in advance, Senthil V.

    Visual Basic csharp com help

  • Crystal Report Print Error in VB.NET- Logon Failed
    V V Senthil

    Hi, I am developing crystal report in VB.NET. While i printing the report directly "Logon failed" Occurs. How to over come this. Below the code i used in the project. Dim Reportviewer As New frmReportviewer Dim PrinttoKitchen As New crptPrinttokitchen Str_Query = "{View_HeaderFooterRecord.fd_bill_id} = " & Int_OrderBillID PrinttoKitchen.RecordSelectionFormula = Str_Query Reportviewer.repnam = PrinttoKitchen 'Reportviewer.Show() PrinttoKitchen.PrintOptions.PrinterName = PrinterName PrinttoKitchen.PrintToPrinter(1, False, 0, 0) Thank's in advance, Senthil V.

    Visual Basic csharp help tutorial

  • Creating Word Document in ASP.NET Some Temp files creating ......
    V V Senthil

    Hi, In ASP.NET im creating the word document. While document is creating some temp file is creating. So at that time i can't able to down load the file from server machine to client machine. Eg. Word File Name : "Endoscopy_2_49_5.doc" Temp File Name : "~$doscopy_2_49_5.doc" Error Occurs: ------------------ The process cannot access the file "" because it is being used by another process. Here im creating the Word Document in the Server Machine. After that from Client Machine im down load the file and do some correction and updating to server. How to over come this one. Thanks in advance, Senthil V.

    ASP.NET csharp asp-net sysadmin help tutorial

  • Can't able to Open Word File in Client Machine which is Stored in Server Machine
    V V Senthil

    Hi, Im having word document in the Server Machine. While im trying to open the file in Client Machine file is opening in Server only. I need to open in the client only. This is an ASP.NET project done in VB.NET. This is an intranet project. The Code i used to Open the file --------------------------------------------- Dim oWordApplic As New Word.ApplicationClass Dim oDoc As Word.Document Dim strFileName As String = ConfigurationSettings.AppSettings("ServerWordDocu") + ReportName + ".doc" Dim fileName As String = strFileName oWordApplic.Visible = True oDoc = oWordApplic.Documents.Open(fileName) oDoc.Activate() ---------------------------------------------------------------- Another code i used giving link to Hyperlink. Just i give the link to hyperlink but its opening in readonly format. so i cant able to do any modification. Because i have to save the file in the server. HyperLink1.Text = Name + ".doc" HyperLink1.NavigateUrl = ConfigurationSettings.AppSettings("WordDocu") + Name + ".doc" ---------------------------------------------------------------- Another type i Checked its also opening in readonly. Dim filename As String = ConfigurationSettings.AppSettings("WordDocu") + ReportName + ".doc" Response.ContentType = "application/ms-word" Response.AddHeader("ContentDisposition", "attachment;filename") Response.WriteFile(filename) Give me the solution i need it very urgent. Thanks in advance Senthil V.

    ASP.NET csharp asp-net sysadmin

  • creating a radiobuttons column in a datagrid
    V V Senthil

    Hi, Use this Code in the DataGrid ----------------------------- Put this in the Coding area. ---------------------------- Public Sub SelectOnlyOne(ByVal sender As Object, ByVal e As System.EventArgs) Dim m_ClientID As String = "" Dim rb As New RadioButton rb = CType(sender, RadioButton) m_ClientID = rb.ClientID For Each i As DataGridItem In DataGrid.Items rb = CType(i.FindControl("rdoPriority"), RadioButton) rb.Checked = False If (m_ClientID = rb.ClientID) Then rb.Checked = True End If Next End Sub Regards, Senthil V.

    ASP.NET help question

  • Can't able to Open Word File in Client Machine which is Stored in Server Machine [modified]
    V V Senthil

    Hi, Im having word document in the Server Machine. While im trying to open the file in Client Machine file is opening in Server only. I need to open in the client only. This is done in ASP.NET. The Code i used to Open the file --------------------------------------------- Dim oWordApplic As New Word.ApplicationClass Dim oDoc As Word.Document Dim strFileName As String = ConfigurationSettings.AppSettings("ServerWordDocu") + ReportName + ".doc" Dim fileName As String = strFileName oWordApplic.Visible = True oDoc = oWordApplic.Documents.Open(fileName) oDoc.Activate() Give me the solution i need it very urgent. Thanks in advance Senthil V. -- modified at 4:55 Saturday 3rd June, 2006

    ASP.NET csharp asp-net sysadmin
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups