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: *

  1. lelo66

    "Select all" on a TextBox

    I tried the same with focus(). <asp:textbox id="TextBox1" runat="server" Width="120px" onLoad="javascript:this.form.text_area.focus();this.form.text_area.select();"></asp:textbox> But i'm not sure if i can insert javascript in a aspx site. Error 1 'javascript' is not a member of...
  2. lelo66

    &quot;Select all&quot; on a TextBox

    Hi On a webpage I fill some text from a database in a textbox. Now I should "select all" the text in that textbox by code; like the user can do this using the context menu. This site is written in VB.NET and I got the hint doing this clientside by javascript...
  3. lelo66

    &quot;Selelct all&quot; by code instead of using context menu

    Hi On a webpage I fill some text from a database in a textbox. Now I should "select all" the text in that textbox by code; like the user can do this using the context menu. Anyone knows how to do this? Thanks Lelo
  4. lelo66

    TextBox: &quot;Select All&quot; by code

    Hi On a webpage I fill some text from a database in a textbox. Now I should "select all" the text in that textbox by code; like the user can do this using the context menu. Anyone knows how to do this? Thanks for any help Lelo
  5. lelo66

    User ID, Password Required for AS400 Connection

    For a web form try this: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim reportPath As String = Server.MapPath("CrystalReport1.rpt") Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()...
  6. lelo66

    Run remote batch?

    I've found the solution: Dim mCommand As String = "cmd /C""C:XY.cmd <Parameter>
  7. lelo66

    Run remote batch?

    Hi I should start a XY.bat on a remote machine. I'm new on WMI so this question might be silly. I found some help on this site (shown below): Dim cOptions As New ConnectionOptions() Dim workingDir As String = "C:\Temp" Dim mCommand As String = "notepad" Dim servername As String =...
  8. lelo66

    Report on a Thermal Barcode Label Printer

    I'm using a Zebra 221 and the problem are not the barcodes, even simple lines are converted to bitmaps. But I've found a solution. I've changed the printer driver. The old one was from Seagull and the setting to sostitute lines with printer commands didn't work. Now i've downloaded the driver...
  9. lelo66

    Report on a Thermal Barcode Label Printer

    Hello The report is fine. Now I'm trying to print this to a Thermal Barcode Label Printer (Zebra). Crystal 10.0 is putting all the lines in bitmaps, so that the printing job is very slow. How can I convince Crystal to send lines as 'line commands' to the printer. Lelo66
  10. lelo66

    Pass multiple parameters to Crystal Reports from VB.NET

    Dim paramFields As New CrystalDecisions.Shared.ParameterFields Dim paramField As New CrystalDecisions.Shared.ParameterField

Part and Inventory Search

Back
Top