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

  • Users: rickinger
  • Content: Threads
  • Order by date
  1. rickinger

    How to access public (non static) function in non instantiated form

    Hi fellows, my MDI application opens it's main container form with the regular command "Application.Run(new MainWindow());" (extendet form class) and I would like to access some public function of that form from somewhere else. Problem: I can not get to the MainWindow object though; there...
  2. rickinger

    Keep Sqlconnection open or close it after every access?

    Hi fellows, quick beginner's question... I using sort of a database access layer class to collect and prepare all my sql server's data for use in different places of my application. Now I wonder, should I open and close the SqlConnection every time I access the database or I should I keep the...
  3. rickinger

    Console and windows app in ONE exe

    Hi fellow programmers, I tried to address this problem in another thread already but I guess it got too far down... Basically what I am trying to compile is a single .exe application that runs both 1) as a windows and 2) as a console application. When the users starts the application with the...
  4. rickinger

    Getting a list of class/object properties

    Is there a way to get a list of all properties a class or an object has during runtime? I'm looking for sort of a collection object.properties[index].count etc...
  5. rickinger

    office like controls - your opinion

    The windows controls delivered with Visual Studio are - let's say - not quite satisfying; in particular I'm missing the Office XP look and feel & program. I am wondering are there any *recommendable* collections of controls out there? I'm interested in both 3rd party commercial as well as free...
  6. rickinger

    missing defaultValue of datacolumn (Jet provider)

    So I read ado.net is not capable of filling the defaultValue property of a datacolumn... I also read about a scenario where you could get default values through a contraints table over a stored procedure - well that was for SQL Server. Anybody has a clue how to access defaultValues for a Jet...
  7. rickinger

    Capturing video - where to start

    Hi fellows! I would like to try some coding to access a video source (like any connected quicktime) in c#. Honestly I don't have a single clue where to start. Can anybody give me a direction? Thanks in advance waldemar
  8. rickinger

    how to make win app also available for command line

    Well the subjects say it all. I want to able to use my windows application as a command line tool as well. What do I need to implement to prevent the application from opening a window and instead read the command line args??
  9. rickinger

    No read access for mdb using OleDbConnection

    Hi guys, I am trying to read out some tables of a regular XP access mdb but I keep getting an error message that I have no read privileges. string strDSN = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strDatabaseFile; string strSQL = "SELECT Name FROM MSysObjects WHERE Type...

Part and Inventory Search

Back
Top