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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mir23

  1. mir23

    Integrate Excel SpreadSheet in Windows Form

    Thank Rick, I definitively have a preference for a 3rd party tools but I have no idea which one would be the more reliable, does anybody knows a good one? Thanks, Mir
  2. mir23

    Integrate Excel SpreadSheet in Windows Form

    Hi, Thanks for the response. But this would open an Excel application running aside from the form. Instead, it's an embeded speadSheet within the Windows Form that I need. I just heard about the aximp.exe component that create an ActiveX control wrapper from a COM application (and why not...
  3. mir23

    Integrate Excel SpreadSheet in Windows Form

    Hello, I want to visually integrate an Excel spreadsheet in a Windows form. I am using VS.NET 2005 and Excel 2002. I know about the Visual Studio Tools for Office introduced with VS.NET 2003, but it doesn't actually enable a user to manipulate a spreadsheet in a windows form. It would be...
  4. mir23

    Default behavior of DataGrid ??

    Hi, Thanks for reply, I'm actually using a XmlDataDocument to sync between an XML file and the DataSet as following: //Set Dataset schema XmlTextReader xtr =New XmlTextReader(@"..\..\file.xml"); XmlDataDocument xdd= new XmlDataDocument(); DataSet ds = xdd.DataSet; ds.ReadXmlSchema(xtr)...
  5. mir23

    Default behavior of DataGrid ??

    Hello, I have a DataView bind to a basic Datagrid with 3 columns. At Form Initialization only the first column of the DataGrid contain info. Whenever I fill the 2 others columns, the row is disappearing (I guess hide) from the DataGrid... this is a great default behavior, but not user friendly...
  6. mir23

    Keep state in Custom Datagrid

    Hello, I have passed quite enought time with this and I cannot sort this out: I have a custom control which inherit from the datagrid class. In the Page class, I add TemplateColumn instance (with custom ItemTemplate and EditItemTemplate class) to the Columns collection. When I Create the...
  7. mir23

    Keep state in Custom Datagrid

    Sorry this is an ASP.NET topic, I'll post the thread on the ASP.NET forum
  8. mir23

    Keep state in Custom Datagrid

    Hello, I have passed quite enought time with this and I cannot sort this out: I have a custom control which inherit from the datagrid class. In the Page class, I add TemplateColumn instance (with custom ItemTemplate and EditItemTemplate class) to the Columns collection. When I Create the...
  9. mir23

    .rpt file in temp directory (Crystal report 9)

    I think this is the cleanest solution to delete the temporary file generate by the reportDocument Class without waiting for the garbage collection: Call the Dispose() Methode This should help in similar situations.
  10. mir23

    .rpt file in temp directory (Crystal report 9)

    Hi All, I have create a report which is exported to pdf with a typed dataset as datasource. The code bellow is running well but it always generate a new .rpt file on the server. I wonder how to delete that .rpt file in the temp dir. Does anyone have an idea? Thanks, Here is my VB code...
  11. mir23

    .rpt file in temp directory ?? (Crystal report)

    Hi All, I have create a report which is exported to pdf with a typed dataset as datasource. The code bellow is running well but it always generate a new .rpt file on the server. I wonder how to delete that .rpt file in the temp dir. Please help, Here is my VB code: Private Sub...

Part and Inventory Search

Back
Top