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 Chriss Miller 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. juliaroberts

    Setting focus after Required Field Validation

    HI, I am using a required field validator component on a textbox. I have enabled client side script. Is there any way to set the focus on a particular text field after client side validation fails?
  2. juliaroberts

    crystal reports in .NET

    Hi, I am using a chart object in my report. I have a requirement in which the end user is able to select the graph type and then view the report. So if he selects graph type to be Pie then the chart will be in the Pie form and if he selects Bar, it would appear in the Bar form , etc etc for the...
  3. juliaroberts

    How to stop the running application programmatically in C#?.

    in ASP.NET the client is the web browser. You can't shut down the browser, unless you send in some code like Response.Clear() Response.Write(&quot;<script language=javascript>window.close();</script>&quot;) Response.End() this would make a request to close the browser, which would in turn...
  4. juliaroberts

    SetFocus

    In a webform you need to write java script code to set the initial focus. If you want to do this from the code behind file put this code in your page load RegisterStartupScript(&quot;focus&quot;, &quot;<script language=&quot;&quot;JavaScript&quot;&quot;>&quot; & vbCrLf & _ vbTab &...
  5. juliaroberts

    Using Response.Write from a CodeBehind

    If you know your position of the HTML , you can place a Literal control there and set the value for that control. alternatively you can use a place holder control.
  6. juliaroberts

    Access and web pages

    declare an element in your app.config to your path to the database. when the app loads, read this value and set the connection string.
  7. juliaroberts

    .NET Crystal Report Printing

    Hi fcp1, even if you set the machine.config to use the SYSTEM account you still need to do the following: When a printer is installed to a computer, the settings for this printer are stored in the registry under the HKEY_CURRENT_USER registry hive (Registry file). The IIS process will never...
  8. juliaroberts

    best method

    well... you could still use the datagrid; use a template column for the column thats going to have a list of values. Use a listbox or something for that template column.
  9. juliaroberts

    Web Application problems

    Hi Bigfoot, If all you want to share is user info between your applications, why not use the database? You could create a separate table to store log on information for all applications and write to/access that table from each application. laters
  10. juliaroberts

    Like SS Tab Control in ASP.NET

    I think IE supports a certain tab control. Haven't used it though.
  11. juliaroberts

    dual drop down same datareader Opinions..

    I would go for a collection as fetching again from the database doesn't go to well with performance. Maybe you can use a dataset, which can be assigned as datasource to both drop downs.
  12. juliaroberts

    Netscpae looses textbox.text content

    HI crazyboybert, When a web form is posted back to the server before the page_load event fires another event called the page_init fires. In the page_init routine, values that you entered in the html page are assigned to the respective input controls by .NET and are then available for use in the...
  13. juliaroberts

    Problem with Config File at Project Startup

    Hi, I picked this info from the .NET documenatation. I think this is what you are after: 1)Create a user account on the computer named ASPUSER, and then add this account to the Users group. NOTE: You can also use the ASPNET account that the .NET Framework created if you change the password on...
  14. juliaroberts

    loosing control (me) over button keeping focus!!

    Hi Bigfoot, This 'better way' is only applicable to Windows Forms and not to Web Forms. Web forms don't have such a property. Laters,
  15. juliaroberts

    How do I set it so Datalists won't overlap

    HI COPP3R, Use a flow Layout for your web form. Put your datagrids into rows in a table;same with the labels that go with the datagrid.As the datagrid resizes, your table rows will resize, but since you have your datagrids in seperate rows in a table, they will not overlap. laters
  16. juliaroberts

    loosing control (me) over button keeping focus!!

    Hi Alcar, If you are using a grid layout for your form, then if you move the 'OK' button in the HTML view as the first component in the form you should still be ok as the coordinates as the final position of the button on the screen is specified as attributed for the button. However, if you...
  17. juliaroberts

    loosing control (me) over button keeping focus!!

    Hi Alcar, From what I understand when you hit the 'Enter' key you want the OK button to fire and not the cancel or other buttons. Its fairly simple. When the enter key is pressed on a form that has multiple submit buttons then the onclick event of the first button that appears in the form is...
  18. juliaroberts

    Connection times out

    Regarding the connection timeout..... .. I had this problem, but it had nothing to do with closing connections. I had a method which opened a connection and I was accidently calling the same method recursively within the method, which resulted in all the connections getting used and a timeout...
  19. juliaroberts

    JTable problems, Resizing and Editing

    for preventing editing on a table : In your TableModel to the isCellEditable method add return false; public MyTableModel extends AbstractTabelModel{ public boolean isCellEditable(int iRow, int iCol){ return false; } } this will prevent the table from editing
  20. juliaroberts

    javax.ejb.EJBException: Unable to lookup HandleDelegate

    I am able to lookup the home interface. From the home interface I am able to get the remote interface. The problem occurs when I call the getHandle() method of the remote interface. Initially it was &quot;unable to lookup Handle Delegate&quot;; this was solved after Suran told me to put j2ee.jar...

Part and Inventory Search

Back
Top