Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: LJS1
  • Order by date
  1. LJS1

    Print on Legal Paper using System.Drawing.Printing

    Hi all, I am printing a text document using the system.drawing.printing namespace. It prints fine on the letter size paper. But I want to that to be on legal size paper. Any body have any idea. Any code sample? Thanks in advance LJS
  2. LJS1

    Windows Service Install Problem

    Hi all, I am trying to install a windows service using the InstallUtil.exe. But it is throwing the System:IO:fileNotFoundException, ie file or assembly ,or one of its dependency not found. Any body have any idea. I am totally new to this. Thanks LJS
  3. LJS1

    Timer event

    I am attempting to write some code (in a VB web application) using a timer that executes every 5 seconds. So far the only code I've found that does this task is similar to: <%@ import Namespace=&quot;System.Timers&quot; %> Public Sub ProcessTimerEvent(ByVal sender As Object, ByVal e As...
  4. LJS1

    ADO.NET equivalent of recordcount???

    Dim SqlAdapter As SqlDataAdapter Dim DS As DataSet = New DataSet sqlstmt = &quot;select * from temp&quot; cnn ' is the connection SqlAdapter = New SqlDataAdapter(sqlstmt, cnn) SqlAdapter.Fill(DS, &quot;dsname&quot;) RowCnt = DS.Tables(&quot;dsname&quot;).Rows.Count
  5. LJS1

    Send and Listen from a web page by TCP

    Hi all, I want to send a request file (Text file) to a remote server and listen (get) the response from them in an aspx page. Any body have any idea. Thanks Lini
  6. LJS1

    Position of alphabet in a alphanumeric value

    Thank u very much Rich, as u said i was looking for a one line function. But your source cde worked like charm. LJS
  7. LJS1

    Position of alphabet in a alphanumeric value

    Hi all, How to search the position of the first alphabet in a alphanemric value. For eg. &quot;12345 QRS&quot; I want the position of the Q , 7 I wrote the Instr function like pos = Instr(&quot;12345 QRS&quot;,&quot;[A-Z]*&quot;) It is not giving the result. Thanks, Ljs
  8. LJS1

    Pass stored procedure parameters

    Thank you very much. I got the solution, the parameters for the stored procedure are passed with same commands as the crystal reports parameters.
  9. LJS1

    Pass stored procedure parameters

    Hi all, How to pass the stored procedure parameters , where the stored procedure is used in crystal reports. I am using CR.net. The parameters should take the value from a web form. Any body know the commands for that. I am new to this. Thanks in advance. LJS
  10. LJS1

    Pass Parameters of a stored procedure used in Crystal Report.

    Hi, How to pass the parameters of the stored procedure,the stored procedure is used in the Crystal Report. I am creating the CR.Net report. Through a viewer I want to view the report. Any body have any idea. Thanks in advance LJS
  11. LJS1

    Pass Parameters of a stored procedure used in Crystal Report.

    Hi, How to pass the parameters of the stored procedure,the stored procedure is used in the Crystal Report. I am creating the CR.Net report. Through a viewer I want to view the report. Any body have any idea. Thanks in advance LJS
  12. LJS1

    Barcod in CR.Net

    HAs anyone used barcode in Crystal Reports , which is viewed with the CrystalReortviewer control? Where did u purchase the barcode fonts and UFL? I tried to display a report with free barcode font using the CrystalReportviewer , but in vain? Any suggestion??? Thanks in advance. LJS
  13. LJS1

    barcode for CR.net

    Hi Any body use barcode in Crystal Report. Where did u purchase the fonts and UFL. How is the support? Any suggestions. Thanks in advance LJS
  14. LJS1

    Problem with Crystal Report Viewer

    Hi, I am using CrystalReportViewer for displaying Crystal report in an aspx page. But I am getting a error &quot;File or assembly name CrystalDecisions.ReportSource, or one of its dependencies, was not found.&quot; in web.config file of .NET I have CR 9, and CR RAS installed. Thanks LJS
  15. LJS1

    Crystal Report in ASP.NET

    Hi, I am getting a error &quot;File or assembly name CrystalDecisions.ReportSource, or one of its dependencies, was not found.&quot; in web.config file of .NET I have CR 9, and CR RAS installed. Any clue is welcome Thanks LJS
  16. LJS1

    TimeOut Expired:

    Hi Terry, The issue was When executing a SQL Server 2000 Stored Procedure in ASP.NET that takes more than 30sec, it was showing timeout expired ( the error wrote in the 1st question) The resolution is Set the Connection String Time Out , ie connect timeout and Set the Command Object Time Out...
  17. LJS1

    TimeOut Expired:

    I got it Working!!
  18. LJS1

    Server Error in '/xyz' Application:

    Thanks for all the tips. I set the Connect timeout in the SQL Connection String and Commandtimeout to some number , it is working. Thnaks again, LJS
  19. LJS1

    OnTextChanged event and postback

    Write a Javascript to capture the &quot;Enter Key&quot; and setfocus on the next object. The Javascript is function translatekey(param) { if (window.event.keyCode ==13) {window.event.returnValue = false; document.all[param].focus();} } </script> call this event on the Textbox's...
  20. LJS1

    TimeOut Expired:

    Hi, When I am executing a SQL Server Stored procedure which is taking more than a min. through .ASPX code, i am getting the error. Server Error in '/net' Application. ------------------------------------------------------------ Timeout expired. The timeout period elapsed prior to completion of...

Part and Inventory Search

Back
Top