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 TouchToneTommy 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: EDB2
  • Content: Threads
  • Order by date
  1. EDB2

    allow null date in dataGridView

    I'm having a heck of a time trying to get this to work, but it has to be possible! I have a bound DataGridView that includes a bunch of date columns, which may or may not be null (the database does allow nulls in these fields). Null values are displayed with no problem, but I want the user to...
  2. EDB2

    how to determine which table row fired an event

    I have an asp:table with 2 columns. Col 1 holds an employee number, and col 2 holds a drop-down list of codes. If the user selects a new code from the drop-down list, the SelectedIndexChanged event fires and, within that event, I can look at the SelectedValue to see what the new code is - but...
  3. EDB2

    default browser

    They say there is no such thing as a stupid question, but this might just win the prize. How can you control which browser a web application runs in when you are executing the program from within Visual Studio? I'm still in testing phase and I want to test the program under different browsers...
  4. EDB2

    delete datagridview row without deleting from database

    I have a datagridview in a windows application which is bound to an underlying database via a bindingsource/tableadapter. Is there a simple way to delete a row from a datagridview without deleteing it from the underlying database? The user is processing data from the grid, and I want to give...
  5. EDB2

    ReportViewer page orientation

    Is there any way to programmatically set the page orientation when printing a ReportViewer report from a web page?
  6. EDB2

    Possible to change SelectedIndex in RBL thru JavaScript?

    Is it possible to change the SelectedIndex of a RadioButtonList through JavaScript? When a user uses the browser back button to return to the previous page, the page displays without reloading - so the previous selection is still selected. I would like to use the OnClientClick event to remove...
  7. EDB2

    clear the RadioButtonList SelectedIndex

    I have a button on my home page which, when clicked, makes visible a RadioButtonList showing the years of history available. Since this is a new application, only 1 year is currently available in the history. When you select this year, the page_load fires, then the SelectedIndexChanged event of...
  8. EDB2

    conditionally change nodestyle in treeview

    Is it possible to change the style (specifically the color) of a single node in a treeview based on a condition? I have a dynamically built treeview that shows all of the employees who report to a specific manager (as well as all of the employees who report to the managers's employees). The...
  9. EDB2

    data set name is missing in the data region 'DataSetName'

    I made a change in the dataset designer for a dataset used by an existing report (.rdlc file). I'm now getting this error on the report: "the data set name is missing in the data region 'DataSetName'". It has to be a property setting somewhere in the report designer - but where? The error...
  10. EDB2

    access control properties within nested repeater?

    I'm attempting to teach myself ASP.NET and VB2005 and I'm definately struggling. Any help would be greatly appreciated! I have a series of radiobuttons within a nested repeater, and I need to know which button the user selects. I also want to change the appearance of the selected button. As...
  11. EDB2

    Create word document with 2 tables

    I've found two other users who asked this question, but neither of them had an answer. I'm hoping I'll have better luck! I'm creating a word document through code (there are reasons I don't want to use a template). I insert a table and populate it with data, and then I want to get out of that...
  12. EDB2

    Right justify numeric fields in Word with VB code

    I originally posted this question in the Visual Basic forum, but got no replies. I'll try again in this forum, any help would be appreciated. I'm having a heck of a time getting my numeric fields to right justify in a simple list report. I'm generating a Word document through VB6 and using an...
  13. EDB2

    RightJustify Numeric Flds in Word document

    I'm having a heck of a time getting my numeric fields to right justify in a simple list report. I'm generating a Word document through VB6 and using an ado recordset as my source. I decided not to use DataReports because I'm picking my (Oracle) database at run time and everything I've found for...
  14. EDB2

    insert text into Word document header

    I'm creating a word document with my VB6 program and I want to insert multiple lines of text into the header area of the document. I can't figure out what property/properties I need to reference. Can anyone help me out? I found some documentation on the HeaderFooter object but it's pretty...
  15. EDB2

    can you change color/font on standard MSGBOX?

    Is it possible to change the background color or font of a standard msgbox, rather than creating a custom form? It's such an ugly grey, it hurts my delicate sensibilities!

Part and Inventory Search

Back
Top