Search results for query: *

  1. T

    [vs2003] datagrid row coloring

    Hi, This is my first post in here, I will describe my situation. I would like to change the color of a row based on a boolean value. So what I did was, I used a class called DataGridColoredTextBoxColumn which extends DataGridTextBoxColumn. I have a paint method there which is overriden. In my...
  2. T

    ComboBox item text colors

    ...Okay. I have found my solution by setting the DrawMode to OwnerDrawFixed, and making my own ComboBox1_DrawItem which handles ComboBox1.DrawItem.
  3. T

    ComboBox item text colors

    Hi, I have got a combobox which retrieves its data from a dataset: Private dvsItem As DataView dvsItem = New DataView(MainForm.TempPrice.TempPriceBook.Copy) dvsItem.Sort = "ItemCode" cbItem.DataSource = dvsItem cbItem.DisplayMember = "ItemCode" cbItem.ValueMember = "ItemCode" I would like to...
  4. T

    help: in including files in exe

    Thanks for that John, yeah I sorta had the idea of using byte to byte writing but couldnt get it across. Can you please explain to me why my code before was missing a few kb's? It seemed to be writing, and therefore the end file will not execute or open... Your code has done the trick. Thanks...
  5. T

    help: in including files in exe

    Maybe I wasnt clear in the first place. My apologies. I still have one question, how do I use the file embedded file within the resource? For example its easy just to do something like File.copy() to a destination path but in this case I get returned a stream, I am not clear as to how to use...
  6. T

    help: in including files in exe

    Thanks for the reply, I have already got a set up project. I was wanting to do an upgrade as a patch. Found a way to do that by including files as Embedded Resource files and using manifestourstream to get them. Cheers.
  7. T

    help: in including files in exe

    Hi, First of all, I will describe my scenario. I have to do an update or a patch. So what I did was copied the exe files and the dll files into a folder and I have the exe that will execute in order to copy or overwrite the exising files in the c:\program files\my software folder. So I was...
Back
Top