Search Results

Showing results 1 to 40 of 109
Search took 0.01 seconds.
Search: Posts Made By: binoj_daniel ; Forum: VB.NET and child forums
Forum: VB.NET Jun 2nd, 2008
Replies: 1
Views: 514
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
On which line are you getting error? Can you paste the error?
Forum: VB.NET Apr 23rd, 2008
Replies: 4
Views: 2,876
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
When you say execute, do you mean call a form?
Forum: VB.NET Feb 14th, 2008
Replies: 6
Solved: Xml & Ado.net
Views: 2,462
Posted By binoj_daniel
Yes, LINQ is defintely a good evolution for dynamic queries.
Forum: VB.NET Nov 16th, 2007
Replies: 1
Views: 1,352
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
I will take look at it.
Forum: VB.NET Nov 13th, 2007
Replies: 7
Views: 1,449
Posted By binoj_daniel
Let me know if you need further help.
Forum: VB.NET Nov 13th, 2007
Replies: 2
Views: 964
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
So you want to maintain all the numbers in one text file?
Forum: VB.NET Nov 6th, 2007
Replies: 6
Views: 8,521
Posted By binoj_daniel
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
Posted By binoj_daniel
What event of the textbox did you use?
Forum: VB.NET Nov 6th, 2007
Replies: 3
Views: 1,612
Posted By binoj_daniel
Forum: VB.NET Nov 6th, 2007
Replies: 2
Views: 548
Posted By binoj_daniel
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
Posted By binoj_daniel
Read all interesting .NET based real life articles here (http://www.coderewind.com)
Forum: VB.NET Nov 6th, 2007
Replies: 6
Views: 8,521
Posted By binoj_daniel
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
Posted By binoj_daniel
Catch it on CodeRewind
Forum: VB.NET Nov 6th, 2007
Replies: 2
Views: 545
Posted By binoj_daniel
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
Posted By binoj_daniel
I think the logic from Triss would do that. Let me know.
Forum: VB.NET Nov 5th, 2007
Replies: 22
Views: 22,239
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
Are you using VS 2003 or VS 2005?

Database SQL or Access?
Forum: VB.NET Nov 4th, 2007
Replies: 22
Views: 22,239
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
Is this drive Z on your machine or on any other machine?
Forum: VB.NET Oct 11th, 2007
Replies: 7
Views: 3,034
Posted By binoj_daniel
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
Posted By binoj_daniel
Can you post the exact error message and the MSAccess version?
Forum: VB.NET Oct 11th, 2007
Replies: 7
Views: 3,034
Posted By binoj_daniel
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
Posted By binoj_daniel
'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
Posted By binoj_daniel
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
Posted By binoj_daniel
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
Posted By binoj_daniel
What code are you waiting for?
Forum: VB.NET Oct 4th, 2007
Replies: 11
Views: 10,645
Posted By binoj_daniel
So were you able to use it now? Let me know?
Forum: VB.NET Sep 27th, 2007
Replies: 1
Views: 783
Posted By binoj_daniel
Use these connection strings:
-- Using ODBC:
Driver={Microsoft ODBC for Oracle};Server=myServerAddress;Uid=myUsername;Pwd=myPassword;

-- using OLEDB
Provider=msdaora;Data...
Showing results 1 to 40 of 109

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC