| Thread | Last Post | Replies |
|
| creating controls dynamically | 29 Nov 2004 20:58 GMT | 5 |
This was posted yesterday. I needed to post again to clarify my problem. I'm trying to create control from a string in a database: Dim asm As [Assembly] = Reflection.Assembly.LoadFrom("C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Web.dll")
|
| Delimited Strings | 29 Nov 2004 20:29 GMT | 4 |
Supposing I have a string containing fields delimited by | (pipe) such as: this|is|a|string|delimited|by|pipes If I wanted to get the portion of the string between the 3rd and 4th pipe, I would have to start at the beginning of the entire string and inspect each
|
| Worker thread blocking on calls to .Invoke | 29 Nov 2004 20:01 GMT | 6 |
I need a thread to run a subroutine which updates my main form's progress bar. I've properly marshaled all UI updates to the main UI thread, and after the main thread starts the worker thread, it waits for the worker thread to complete by means of a while t.isAlive,
|
| mulitcolumn listbox and datasource property question | 29 Nov 2004 19:48 GMT | 2 |
I have the following bit of code (which works fine): Dim Customer As New CCustomer mFrmOrder.lstCustID.DataSource = Customer.getCustomers.Tables("data")
|
| Reading the contents of a DVD and writing to a database. | 29 Nov 2004 19:37 GMT | 2 |
I've been tasked with the project of reading the content of data DVD's and writing the file and directory information into a database. Writing to the db is no problem, but for some reason I seem to be having major problems getting a recursive directory search happening...
|
| Non matching regex? | 29 Nov 2004 19:12 GMT | 1 |
Anyone knows how to create a regex expression that matches all strings not containing a specific word? I thought the following would work but i dows not. Dim TestRegex As Regex = New Regex("(?!exp).*")
|
| PocketPC and ODBC | 29 Nov 2004 19:03 GMT | 9 |
I have a question... Will 3rd party ODBC drivers work on PocketPC? We have drivers to connect to a proprietary database and I was wondering if they would work on a handheld PDA running Windows CE or PocketPC 2003. We have a project coming up that needs to grab info from these ...
|
| Adding controls to a dynamic form? | 29 Nov 2004 18:59 GMT | 4 |
I posted this a while back, and got a solution but it didnt work. The question was: I have a form which is dynamically generated from the contents of a Database using commands such as this:
|
| recording voice | 29 Nov 2004 18:59 GMT | 2 |
need to record voice(from the mic) programmatically. can you guys suggest something, is it only doable throught Directx ? Regards Sameh
|
| How to setup a dynamically resizable report viewer? | 29 Nov 2004 18:48 GMT | 2 |
How do I setup a crystal report viewer which fills the Form, and resizes to fit the current window? At the moment it seems I have to give it an explicit size, which is nasty! I just want to say "Expand to fit"
|
| OleDbDataAdapter Update failure | 29 Nov 2004 18:46 GMT | 4 |
I need to update tables in access 97. The table names have spaces (not my choice). My update fails even though I use the OleDbCommandBuilder. Here is a code I am using myDataAdapter = New OleDbDataAdapter
|
| another array question | 29 Nov 2004 18:22 GMT | 14 |
i'm making a form where you can add textboxes with a button. the max number of textboxes to add is 100 but i also must create an array of al thes textboxes, is there a way of creating an array of thextboxes that aren't created yet.
|
| Tabbed MDI Navigation | 29 Nov 2004 18:11 GMT | 2 |
How can I create a tabbed mdi navigation bar like the one of VS IDE? It should be good also a (free..) user control. Does anyone know any? (links or source code...) Thanks!
|
| datagrid | 29 Nov 2004 18:07 GMT | 3 |
i want to use a dateagrid to show my variable statuses in. i don't want to connect it with a database how can i add simple text in a datagrid matrix datagrid1.textmatrix(1,5) = var1 for example
|
| Arrow keys to navigate through a set of buttons? | 29 Nov 2004 18:01 GMT | 2 |
I have an application in which a grid of 100 or more buttons are put on a form in columns of 10. All the buttons are within a panel. They are added in runtime, and so they adopt a sensible tab value.
|