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 strongm 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. kgreer

    How to handle Click Even in button on Dynamic DataGrid

    bakershawm Thanks for the reply.... I finally did exactly what you said by using the click event. I am not getting any issues showing up, it is working just fine on my end. dataGridView1.CellContentClick += new DataGridViewCellEventHandler(this.dataGridView1_CellClick);
  2. kgreer

    Multiple Tables into one Text File

    Here is my issue. I have to produce a text File that looks like below: PAT, 123456,SMITH,JOHN,,1200 Main St,,Houston,TX,77074,7138889999,01011960,123456789,M CLM, 01012010,01022010,,Jon,Brown,David,Lasso,,1234567890,,SW Hospital,340 Main,,Houston,TX,77000,34500,32301,, PROC...
  3. kgreer

    dataGridView1_CellClick Determine value in column

    Alright here is my issue. In my application I am currently building TabControl based on dates from my database. I then dynamically build DataGridView from another query inside the TabControl. I am wanting to place a Edit button on each record on the DataGridView. When I click the button I...
  4. kgreer

    How to handle Click Even in button on Dynamic DataGrid

    I have dynamically built a datagrid in a TabControl. I am now adding a button to allow the user to edit the information. The button shows up just fine, but when I click on the button the Click event is not being called. Below is my code for adding the button. // The tabpage...
  5. kgreer

    How to get multiple selected values and items from listbox ?

    Thanks for the Help....I put the code in and all it is returning is System.Collections.DictionaryEntry List<object> selectedList = new List<object>(); for (int i = 0; i < lstInstructorID.SelectedItems.Count; i++) { label6.Text += "," +...
  6. kgreer

    How to get multiple selected values and items from listbox ?

    Here is how I am building the ListBox..... command.CommandText = "Execute usp_CourseChange_GetSubmitterList"; command.CommandType = CommandType.Text; conn.Open(); SqlDataReader reader2 = command.ExecuteReader(CommandBehavior.CloseConnection)...
  7. kgreer

    How to get multiple selected values and items from listbox ?

    I have a ListBox that has values. Once a user clicks on a button I need to know what values in the list box is selected. I know this is easy and I am missing something simple. The Listbox is setup to allow the user to select multiple items. Thanks
  8. kgreer

    Removing Windows Profiles

    I am needing to loop through the Users folder and delete profiles. Can someone point me in the right direction? Thanks
  9. kgreer

    Changing Tabs to different font sizes

    Alright, this might be simple, but I am not able to figure it out. I have a Maintab with six tabs on it. I am wanting the font size of Tabs 1,3,4 to be bigger that the other three. Any help is appreciated.
  10. kgreer

    Viewing Reports in ReportViewer

    Need some help on using ReportViewer. I have to reports built. When someone clicks on a button, I want to determine what report to show in the ReportViewer. How can you do this?
  11. kgreer

    ReportViewer Question

    Sorry for not being clear on this issue, but this is being done in .net C#. I remember how to do it on the website, but not in C# Thanks
  12. kgreer

    ReportViewer Question

    Need some help on using ReportViewer. I have to reports built. When someone clicks on a button, I want to determine what report to show in the ReportViewer. How can you do this? THanks
  13. kgreer

    ReportViewer Fit to One Page Width

    I understand that, but how do I get it not to flow over onto aonther page wide? Is there not a check box or setting we can select to print one page wide? Thanks
  14. kgreer

    ReportViewer Fit to One Page Width

    I am working on generating a report with .net. I am needing this report to print out Landscape. I want to have all the columns to fit on one page width, just like you can do in Exel. I have set the Report Properties page width to 11.69in and Page Height to 8.27in. How can I keep the report...
  15. kgreer

    Splitting a page into half

    Thank you.... I forgot about that, I was making it harder than I thought. Thanks again
  16. kgreer

    Splitting a page into half

    Here is the deal I have been given a spreadsheet with information. Column A through M has information and column Q through AC has informaiton. This is a list of users split so that it can all fit on one page. The problem is this, if I want to delete a entry that is below Columns A through M...
  17. kgreer

    Signature Embedded Image Moved to file

    I have setup a Signature to use a JPG file with my name and logo. Each time I send a email out the end just sees a message that says (Embedded image moved to file: pic15890.jpg) Is there some type of setting in Lotus notes to allow these images to go through? Any help is appreciated. Thanks
  18. kgreer

    SQL Server Agent Install 2005

    Quck Question..... Is it possible to re-install just the SQL Server Agent 2005. I did a re-install SQL 2005, but the agent did not show up. If I go to the Agent and right click on SQL Server Agent in Management Studio, it is showing the Start, Stop options grayed out. I even was going to try...
  19. kgreer

    SQL Server (MSSQLSERVER) Issue

    SQL 7 did not install correctly. So I cannot remove the app. So should I just try to re-install SQL 2005? It won't affect the current databases?
  20. kgreer

    SQL Server (MSSQLSERVER) Issue

    Let me try to explain my situation: I have a Windows 2000 test server that we has SQL Server 2005 already installed on the machine. We have a software package in production that is using SQL 7.0. I am wanting to install the same Sofware Packaged on our Test server. So what I did was try to...

Part and Inventory Search

Back
Top