Search results for query: *

  1. M

    Displaying form fields in a webform(vb.net)

    Hi saidev, One way to do that is using datasets.. PrivateSub FillTheFields() Dim objConn As SqlConnection = New SqlConnection("your connection string") Dim objCmd As SqlCommand = New SqlCommand objCmd.Connection = objConn objCmd.CommandText = "Select * from tabcon where tbid = " +...
  2. M

    OnTextChanged

    Hi, see this example </asp:textbox><asp:textbox id="txtClaimBonusVal" style="Z-INDEX: 168; LEFT: 376px; POSITION: absolute; TOP: 120px" tabIndex="20" runat="server" Width="48px" CssClass="inputControl" onchange="javascript:fnValClaims();"> <script> function fnValClaims() { if...
  3. M

    need help for drawing strings randomly on form

    thank you i tried the way u told. now it is working fine. can u tell me how to set color system.drawing.brushes dynamically. i want change the color of the brush from color dialog. i have one more problem The application is working fine with windows xp. when tried it on other system (windows...
  4. M

    need help for drawing strings randomly on form

    Hi , thanks a lot for the hints. now i am able to draw the strings as required. i have one more doubt. i am drawing the string on invisible form.ie; back color and transparency key as same (white) and boarderstyle as none . i am able to display it but the edges of the string is having a white...
  5. M

    need help for drawing strings randomly on form

    Hi, I am developing an application which will display random strings from a text file on a form using system.drawing.. I want to allow the user to choose how often and how long a string will be displayed. ie.; message should be drawn every n seconds and should be removed(refreshed) after m...
Back
Top