| Thread | Last Post | Replies |
|
| assemblies / dll / resourcemanager | 18 Sep 2005 05:14 GMT | 3 |
I've created an assembly where are stores some strings. By using menu items, user can change language of application GUI (so using the strings in my assemblies) 1. how can i compile my resx into dll ? 2. how can i use a resourcemanager to manage the resources ?
|
| All controls on a form to read-only? | 18 Sep 2005 04:48 GMT | 3 |
How does one make all controls on a Windows form read-only? Controls such as check boxes, combo boxes and date time pickers dont appear to have a read-only property. Disabling the controls makes them hard to read and you cant select/copy the contents of text boxes.
|
| Databinding & Update in Webform | 18 Sep 2005 04:35 GMT | 3 |
I'm a newbie who has a problem with updating the dataset into the database. Maybe I missed a few lines of codes. Please shed some light for me. The following code is working but not like I wanted. Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
|
| Too many args when running a stored procedure | 18 Sep 2005 01:06 GMT | 22 |
Heres my SP: ( i am trying to add more than 1 field but get the same error no matter how many i try to add, i thought i would try to insert the primary key only and work up from there but the primary key insert didnt work either. I can run the SP manually in Visual Studio .NET ...
|
| Accessing public sub in MdiParent form | 17 Sep 2005 22:14 GMT | 2 |
My project uses a MDI parent form and several child forms. I need to call a public sub in the parent form (which is also the startup object) from one of the child forms in order to change the appearance of the toolbar under certain conditions. So far I have not figured out how ...
|
| resource string into a DLL | 17 Sep 2005 22:10 GMT | 2 |
I'm used under C++ to write a DLL which contain all my resource strings used in my application. I would like to continue in this way under VB.NET. Please, could you tell me how to create a DLL in which i will store all my resource strings ? I don't want to use the assemblies ou ...
|
| DeleteCommand | 17 Sep 2005 22:03 GMT | 1 |
How can I use the DeleteCommand to delete a record where the delete statment takes a CustomerID as a parameter (CustomerID is the variable that holds Customer ID taken from a TextBox) Thanks
|
| How do I test if the user clicked cancel on a FolderBrowserDialog ? | 17 Sep 2005 21:13 GMT | 3 |
I need to find a way to see if the user clicked cancel on a FolderBrowserDialog. Thanks for any help. Trevor From http://www.developmentnow.com/g/38_0_0_0_0_0/dotnet-languages-vb.htm Posted via DevelopmentNow.com Groups
|
| One application prints, another almost identical one doesn't! | 17 Sep 2005 21:07 GMT | 1 |
Crystal Report problem - HELP! The fragments below come from two fundamentally identical applications. The one at the top - PrintEASAReport - throws an exception on the final line with the message "Invalid Printer Specified". The one below
|
| DataBinding | 17 Sep 2005 21:01 GMT | 1 |
Can anybody explain the difference between DataBinding and DataSource. At first site they appear to do the same thing? Geoff
|
| Update lables on other form | 17 Sep 2005 20:47 GMT | 1 |
Hi again, I have two forms as controls. Both are on a main form and with a treeview I switch back and forth between the two. On the first form is a calculation. The result of this calculation should also be shown on the second form when
|
| Read Configuration | 17 Sep 2005 18:57 GMT | 3 |
I'm totally new to vbasic net and need to get values from a config files in the way: <configuration> <appSettings>
|
| Dataset and DataGrid | 17 Sep 2005 18:48 GMT | 4 |
How can I put two tables with 1 to many relationship into a dataset and then bind it to a datagrid where I can see each row form the first table and an extendable many corresponding rows from the second (related) table. Thanks
|
| How to set DataReader as ComboBox's datasource property (VB.Net) | 17 Sep 2005 18:43 GMT | 7 |
Generaly to populate combobox , I use following command :- Combobox1.datasource = dataset.tablename combobox1.displaymember = fieldname1 combobox1.valuemember = fieldname2
|
| DataGrid | 17 Sep 2005 16:07 GMT | 3 |
I'm binding a DataSet to a DataGrid1 that shows (eg. Employee Id & name). I would like when I click in a certain row in the DataGrid1 it takes the Emplyee Id for that row, search for it in the DataSet and display the reasult (eg. Employee Id & Address) in TextBoxes.(could u a ...
|