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. Kris11

    TextWriterTraceListener File sharing...

    Hmmm... Creating a stand-alone logging application sounds appealing, something that I need to think little more and need to see if I might end up with the same problem that I am facing now. I do not know how effectively I can convince my team to create a web-service for the logging part...
  2. Kris11

    TextWriterTraceListener File sharing...

    Anybody know how to share log file between multiple instances of the same application? Our application logs all the trace information to a text file, but the problem is that only one instance of the application gets the write access eventhough I have set the share and access to ReadWrite. Any...
  3. Kris11

    DateTime.Parse...

    I recently found that if I pass in a date string like the this DateTime.Parse("01-01/2002"); DateTime.Parse, parses it correctly and returns back 01/01/2002. Is this a documented behavior? Have you seen any documentation which discuss a behavior like this. Just curious... -Kris
  4. Kris11

    How can I hide a column value from datagrid?

    BTW, if you don't want to show that column in the grid, why do you want to add it the grid? Instead of setting the DataGridTextBoxColumn width to 0, I would avoid adding that GridColumnStyles. -Kris
  5. Kris11

    Anyone here using Infragistics suite

    We are using Infragistics and we stumbled into quite a few issues with it. But the good thing is that with a single fee you get a suite which has both winform and ASP .NET controls. 1. If you are planning for a project which has less than 250 rows or so in a grid then it is worth and performace...
  6. Kris11

    VB.NET to C Code - Can someone please help?

    I haven't tried this tool but might work for you. -Kris
  7. Kris11

    Delete all data from a database.

    May be this link might help you a bit. -Kris
  8. Kris11

    Programming the X (close) button on a form

    If you don't want to close the form then you should add e.Cancel = True to avoid the form close. So it would be Protected Overrides Sub OnClosing(ByVal e As System.ComponentModel.CancelEventArgs) If MsgBox("Are you sure you want to exit?", MsgBoxStyle.YesNo...
  9. Kris11

    How can I prevent my user from sizing columns in my datagrid?

    What you mean by As you might have already noticed, Datagrid as such includes only very few basic features and we literally have to write all that we need around it. So what we did was we inherited Datagrid and created our own custom class and we always use this as the base class for all our...
  10. Kris11

    VB.Net windows forms - Application Locking up - HELP!

    Bob, Are you experiencing something similar to this one? thread796-991033 -Kris
  11. Kris11

    oWord.quit() how do I properly close down open Word document

    This is the same issue that EXCEL has and the following thread explains it thread796-977695 -Kris
  12. Kris11

    How can I prevent my user from sizing columns in my datagrid?

    I think this link explains the same thing what you are doing now. http://www.thescarms.com/dotNet/ColumnResize.asp -Kris
  13. Kris11

    How can I prevent my user from sizing columns in my datagrid?

    http://www.thescarms.com/dotNet/ColumnResize.asp
  14. Kris11

    Excel won't open when form w/ creating Excel object is open

    Yes, I understand that. If you scroll all the way down on that link you will see how they are implementing NAR. Basically what they are saying is if you do a ReleaseComObject on every single EXCEL object(like sheet, book, range etc.) that you created and then setting all of them to nothing...
  15. Kris11

    Excel won't open when form w/ creating Excel object is open

    May be you can try this link from MSDN -Kris
  16. Kris11

    Display Text vertically on a Button

    Actually I had tried doing this before and I had to use ControlChars.CrLf or vbCrlf to get it working this way. It needs a Carriage return and a linefeed character to do this. -Kris
  17. Kris11

    Passing a variable to a stored procedure

    Can you put a break point at the line SqlDataAdapter1.Fill(DataSet31) and see what is SqlDataAdapter1.SelectCommand.CommandText. I am guessing that it is a different SP than NewSelectCommand_Test_1 -Kris
  18. Kris11

    Passing a variable to a sub for a new thread

    Simple answer you can not pass argument when using AddressOf, here is another link that explains the same. thread796-962915 -Kris
  19. Kris11

    Passing a variable to a stored procedure

    Do you have @name argument on NewSelectCommand_Test_1 stored procedure and are you connecting to the same database where you are making changes on? -Kris
  20. Kris11

    default cell value (infragistics)

    I guess you are seeing the checkbox as grey because of the NULL value. Can you add the row to the ultragrid datasource directly and setting all the default values to the datasource instead of adding it directly to ultragrid. -Kris

Part and Inventory Search

Back
Top