| Thread | Last Post | Replies |
|
| Disable DataGrid | 10 Aug 2007 21:16 GMT | 1 |
Hey all, How do I disable a DataGrid ? This works under IE, but not FireFox: myDataGrid.Enabled = false;
|
| Accessing form components from a thread | 10 Aug 2007 17:54 GMT | 6 |
This was easy in C++ (well, relatively.) Now I'm in the C# environment and everything I try doesn't work. I'm running a thread in which I have two accesses I need to components on a form. In one instance it's to simply check the text of a button
|
| Regex to get VB6 function definitions | 10 Aug 2007 17:43 GMT | 2 |
I'm trying to write a regular expression to capture VB6 function definitions and I'm abit stuck. The rules are: Function header: * Must contain the words SUB or FUNCTION
|
| Why is .tlb installed ? | 10 Aug 2007 16:40 GMT | 1 |
I have an install project which installs two .exes and a number of .dlls, which are libraries of the solution. With one of the libraries, a .tlb is installed along with the .dll. Why is this so ?
|
| ObjectDataSource completely in code behind | 10 Aug 2007 16:36 GMT | 4 |
I'm dynamically creating PDFs and trying to create an objectdatasource completely in the code behind, but I can't figure out how to call the selected event. Here's what I have so far... string App1ID = 1234;
|
| C#.NET postback retrieving data question | 10 Aug 2007 16:24 GMT | 1 |
I'm trying to use protected void Page_Load(object sender, EventArgs e) { if (IsPostBack)
|
| Finding program/"component" version info | 10 Aug 2007 16:08 GMT | 7 |
Not sure exactly what my question is or what forum to ask on. I know how to get version info from a particular file. e.g. FileVersionInfo.GetVersionInfo(filePath)
|
| Exception at this.Icon in InitializeComponent() | 10 Aug 2007 15:05 GMT | 1 |
There is a program in C#.Net that uses a Windows application. While opening only a particular form , the form fails to open as there is an icon associated with it. The exception thrown has message : "Exception has been thrown by the
|
| Alignment and string.Format | 10 Aug 2007 14:52 GMT | 2 |
In the docs for String.Format there is an alignment component which allows you to pad the field to a certain number of spaces. e.g. FormatFName = String.Format("First Name = |{0,10}|", myFName);
|
| Process Component %& focus | 10 Aug 2007 14:07 GMT | 1 |
Im using a Process component to run external application (FineOCR.exe) In StarInfo i set theProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; When the process is started main window looses focus, can this be avoided?
|
| let me count the ways | 10 Aug 2007 13:54 GMT | 5 |
hey all, let's say i have some categories that i want to attach to a product. my thought on storing this information was storing each of the categories for a particular product into one database field, semicolon delimited?
|
| colors in database | 10 Aug 2007 13:39 GMT | 2 |
what's the best way to store and retrieve colors from a database? string or RGB values or...
|
| development partner | 10 Aug 2007 10:57 GMT | 1 |
I joined some of the microsoft.public group.I have some programming knowledge in java.But for the last one year I am into C#.NET. I am looking for a partner who can help me in developing some
|
| Difference, == and Object.Equals | 10 Aug 2007 10:38 GMT | 17 |
What is the difference of == and Object.Equals() If I want to query werther to pointers are pointing to same instance, do I use == or Objects.Equals? foo a,b;
|
| Calling Vb6 from c# | 10 Aug 2007 10:34 GMT | 3 |
hi im looking for examples to call a dll from C# this vb6 dll has no UI i am building a new application in c# for new projects but i have to work with old vb6 stuff.....
|