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

  1. andypandyswe

    Where does the exe -file name in a setup project come from?

    Thanks TipGiver, that did the trick!
  2. andypandyswe

    Where does the exe -file name in a setup project come from?

    ... so where does the setup project process get the name that it gives to the application.exe -file???
  3. andypandyswe

    Where does the exe -file name in a setup project come from?

    The .exe -file gets the old name. All I want is for it to be called by the new name...
  4. andypandyswe

    Where does the exe -file name in a setup project come from?

    I've written a small app and during development has changed it's name a few times. Now I'm finished and have added a setup project using the setup wizard. When I build the setup project I end up with a "setup.ini", "setup.exe" and a "setup NewApplication.msi". I install it by clicking setup.exe...
  5. andypandyswe

    XML or possibly Text encoding problem in excel!

    Hi, I've got a datagrid that i want to write to an xml -file (in the code) that will later be opened in excel. I've created an excel -file that looks like the result I want to get, then saved it as an XML -file (exceloutput.xml) and opened it in notepad to see what it looks like. I've then...
  6. andypandyswe

    Linebreak in dataGrid cell...

    Hmmm, Isn't there an easier way to do it? I've already (almost) finished the entire app and in order to implement the above I'd have to do some pretty significant changes to something that finally works... Still, thanx Obislavu. If noone else has any ideas I guess I'll have to try it...
  7. andypandyswe

    Linebreak in dataGrid cell...

    I'm trying to show four different values, one above the other, in each dataGrid cell. I've solved this by combining the four values into a single string with \n inbetween the values. Added the values to a table containing stringcolumns and connected the table to the datagrid. The problem is...
  8. andypandyswe

    How to print a datagrid?

    I've a windows form with a datagrid (and a few labels). The datagrid is connected to a datatable in code (no relational databases or adapters are used). Anyone know of an easy way to print it? Or maybe someone knows of an article that explaines it? I read another post that one might make a...
  9. andypandyswe

    Unable to enter data in datagrid!?

    Anyone? I'd really appreciate it... Andreas
  10. andypandyswe

    Unable to enter data in datagrid!?

    I've got a windows form with a datagrid that displays filtered data from a datatable. A week ago I could edit the data directly in the control (then read the rows in the dataview and save it) but now suddenly I can't! I don't know what I've done that could cause this and I've tried setting the...
  11. andypandyswe

    Can anyone explain me what this code means

    1. private System.Windows.Forms.Button button1; this.button1.Click += new System.EventHandler(this.button1_Click); private void button1_click(object sender, System.EventArgs e) { //call other... } Or am I misunderstanding u?
  12. andypandyswe

    Text in a DataGrid RowHeader?

    nobody? I the first problem is no biggie but the second one is too ugly...
  13. andypandyswe

    Text in a DataGrid RowHeader?

    Thanks once again SHelton, I don't need to edit the rows so the first solution works great... However, two other problems have now cropped up :-) Do you (or anyone else) have any ideas? Problem 1: The rowHeader text that ends up outside the window (the dataGrid is too large to be seen in it's...
  14. andypandyswe

    Text in a DataGrid RowHeader?

    Thanx a million SHelton, you've saved my a*s! It's working now... I don't suppose someone knows how to get rid of the last row? There is always one empty row at the bottom with an asterisk (*) in the rowHeader column... Thanx again Andreas
  15. andypandyswe

    Text in a DataGrid RowHeader?

    Thanx but I can't make it work... I get an IndexOutOfBounds -exception for the following line: int yDelta = dataGrid1.GetCellBounds(row, 0).Height + 1; I can't say I understand the whole thing which makes it hard to figure out what's wrong... Here is the whole solution code (it's line 8 that...
  16. andypandyswe

    Text in a DataGrid RowHeader?

    How can I get text in a RowHeader (in a DataGrid control)? I've set the ColumnHeaders (for ex. to "model") with: dataSet.Tables["resultTable"].Columns.Add("model", typeof(System.String)); ...but I can't figure out how to do the same with the rows??? I would be most grateful if someone would...

Part and Inventory Search

Back
Top