Forum: VB.NET Jun 2nd, 2008 |
| Replies: 1 Views: 514 To do this, you can create a flag key in registry. It will store bit value. You can read from the registry and flip the bit value.
Simple method will be to create a check sum funtion and pass a... |
Forum: VB.NET Jun 2nd, 2008 |
| Replies: 11 Views: 1,159 I went through what others have suggested, I think dexblack is pretty close.
First of all why would you distribute your application in the form of source code? Anyone can reuse it in that case.... |
Forum: VB.NET Jun 2nd, 2008 |
| Replies: 3 Views: 1,389 You can do something like this by using an API call.
Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal... |
Forum: VB.NET Jun 2nd, 2008 |
| Replies: 2 Views: 1,916 On which line are you getting error? Can you paste the error? |
Forum: VB.NET Apr 23rd, 2008 |
| Replies: 4 Views: 2,876 As i wrote in my original post Please dont suggest using Interop Calls. Also Iam looking for formatting techniques. |
Forum: VB.NET Mar 27th, 2008 |
| Replies: 2 Views: 1,243 To do this. Whenever you delete records in the table with referential integrity, you have first delete rows from the child tables and then delete the master row from the Product table, in your case.... |
Forum: VB.NET Mar 27th, 2008 |
| Replies: 8 Views: 2,202 But if you want to load a form you would use something like this:
VB Code.
FormName.Show() |
Forum: VB.NET Mar 27th, 2008 |
| Replies: 8 Views: 2,202 When you say execute, do you mean call a form? |
Forum: VB.NET Feb 14th, 2008 |
| Replies: 6 Views: 2,462 Yes, LINQ is defintely a good evolution for dynamic queries. |
Forum: VB.NET Nov 16th, 2007 |
| Replies: 1 Views: 1,352 The ideal approach is to use DataReaders instead of DataSet in getting large no. of rows. DataSet is good for small no. of rows but for larger rows i would recommend using DataAdapters and... |
Forum: VB.NET Nov 16th, 2007 |
| Replies: 22 Views: 22,239 You can do it by quering it based on a column name. So you have to write a backend query to bind your search to the GRID. |
Forum: VB.NET Nov 15th, 2007 |
| Replies: 7 Views: 1,449 |
Forum: VB.NET Nov 13th, 2007 |
| Replies: 7 Views: 1,449 Let me know if you need further help. |
Forum: VB.NET Nov 13th, 2007 |
| Replies: 2 Views: 964 If you are not binding the datagrid with any DataSource then one way of doing is by adding a button type column in each row of the grid and when you click on it the current row will be saved. You can... |
Forum: VB.NET Nov 13th, 2007 |
| Replies: 7 Views: 1,449 You can read good article on file handling in .NET here (http://www.coderewind.com/index.php?categ&view_article=36) |
Forum: VB.NET Nov 13th, 2007 |
| Replies: 7 Views: 1,449 So you want to maintain all the numbers in one text file? |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,521 Thats good, glad you solved it. you can read more .net articles & best professional best practices here (http://www.coderewind.com) |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,521 What event of the textbox did you use? |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 3 Views: 1,612 What kind of help do you need? |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 2 Views: 548 All articles are contributed by Working professionals so they know what a self learner needs. Iam one of the writers on this site. |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 2 Views: 548 Read all interesting .NET based real life articles here (http://www.coderewind.com) |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 6 Views: 8,521 This is pretty much doable and this functionality is called AutoComplete is Web Platform and Incremental Search in WinForms Arena. |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 2 Views: 545 |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 2 Views: 545 Let me know what help do you need. I will be posting a series of articles which can guide you through the migration. |
Forum: VB.NET Nov 6th, 2007 |
| Replies: 22 Views: 22,239 I think the logic from Triss would do that. Let me know. |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 22 Views: 22,239 You Can use something like this using DataView
Dim dv As New DataView(ds.Tables(0))
dv.RowFilter = "FirstName = '" & TextBox1.Text & "'"
DataGrid1.DataSource = dv
You can replace the... |
Forum: VB.NET Nov 5th, 2007 |
| Replies: 22 Views: 22,239 Do you want to search a particuar column from the DB or just any text in the Grid? |
Forum: VB.NET Nov 4th, 2007 |
| Replies: 22 Views: 22,239 Are you using VS 2003 or VS 2005?
Database SQL or Access? |
Forum: VB.NET Nov 4th, 2007 |
| Replies: 22 Views: 22,239 So you need to type the parameter in a input box to filter the Grid? |
Forum: VB.NET Oct 16th, 2007 |
| Replies: 3 Views: 3,524 This is pretty easy to do. You can tie the DataGrid to the filter function and pass textbox as a paramter to filter records on the Grid |
Forum: VB.NET Oct 11th, 2007 |
| Replies: 7 Views: 3,034 Is this drive Z on your machine or on any other machine? |
Forum: VB.NET Oct 11th, 2007 |
| Replies: 7 Views: 3,034 Also make sure the folder on the shared machine has proper permissions to modify the access file. |
Forum: VB.NET Oct 11th, 2007 |
| Replies: 7 Views: 3,034 Can you post the exact error message and the MSAccess version? |
Forum: VB.NET Oct 11th, 2007 |
| Replies: 7 Views: 3,034 Best way to share the MsAccess is to keep it on a shared Drive and user maps the location of the Access DB on their machine and then read/write to it. |
Forum: VB.NET Oct 11th, 2007 |
| Replies: 2 Views: 1,185 'Try this if you want to go with app.config, This will not work in .NET 1.0 and .NET 1.1
Dim config As Configuration = ConfigurationManager.OpenExeConfiguration(Application.ExecutablePath)... |
Forum: VB.NET Oct 11th, 2007 |
| Replies: 2 Views: 1,185 Its better to go with an XML file to keep these settings. Its easier to edit and update that. |
Forum: VB.NET Oct 5th, 2007 |
| Replies: 2 Views: 1,602 Use InStrRev function to get the position of the "_" and then use left$ to get the required text. |
Forum: VB.NET Oct 5th, 2007 |
| Replies: 7 Views: 1,319 What code are you waiting for? |
Forum: VB.NET Oct 4th, 2007 |
| Replies: 11 Views: 10,645 So were you able to use it now? Let me know? |
Forum: VB.NET Sep 27th, 2007 |
| Replies: 1 Views: 783 Use these connection strings:
-- Using ODBC:
Driver={Microsoft ODBC for Oracle};Server=myServerAddress;Uid=myUsername;Pwd=myPassword;
-- using OLEDB
Provider=msdaora;Data... |