-
Began Watching Stored Procedure in DB2 using VB .Net
Good day, Just want to ask some help, Please! I always encounter "Cannot find Table 0" when i call Stored Procedure in DB2 using VB .Net with Ole DBConnection Provider. … -
Replied To a Post in Stored Procedure in DB2 using VB .Net
I see a couple of problems that may occur. First, you need to change this code: For i = 0 To rsSearch.Tables.Count Step 1 To this: For i = 0 … -
Began Watching Oracle DataBase Connection At Runtime
Hi Sir I Want to Know about Database connection at runtime using tnsnames.ora -
Replied To a Post in Oracle DataBase Connection At Runtime
[Here](http://stackoverflow.com/questions/9893245/vb-net-oracle-connection-using-tns-name) is a link to an article with the same question. (A few seconds of google) -
Began Watching Reference not getting added while adding Service reference in windows appli
Hi All, I have created a windows application with 3 project and one web service in WCF, I have added build webserviece successfully and adding service reference to 3 projects … -
Replied To a Post in Reference not getting added while adding Service reference in windows appli
> Resuse types in all referenced assemblies the reference is added but it throws conversion error string to Guid, i am troubling to find out the issues last whole day … -
Replied To a Post in Delete record / SQL server using vb.net
You can write a function to issue the update if you wish, something like: Protected Friend Sub UpdateTable(ByVal da As SqlDataAdapter, ByVal ds As DataSet) Try If Not IsNothing(da) Then … -
Began Watching Delete record / SQL server using vb.net
Hello. I meed some help with this. I am trying to delete a record from database(SQL Server) Am i missing something? Private Sub cmdDelete_Click(ByVal sender As System.Object, ByVal e As … -
Replied To a Post in Delete record / SQL server using vb.net
You are not updating the table, you are just deleting the local copy. To update the table, issue an update with a data adapter. da.UpdateCommand = New OleDBCommandBuilder(da).GetUpdateCommand da.Update(_DataSet) -
Replied To a Post in How can I remove items from a right click mouse pop up tray
The problem you are running in to would most likely be cause by a lack of the proper version of the .NET framework on the older machine. When building an … -
Began Watching bs.datasource = dt (too slow) 400record takes 3seconds
hi guys , i have a problem with my loading/refresh record in my form. i have only almost 500 record and take so long before refreshing/display the data. i have … -
Replied To a Post in bs.datasource = dt (too slow) 400record takes 3seconds
> even 400 record it is normal to react that kind of slowdown? From my experience (limited) I have had 700+ records queried in take less than a second. (All … -
Began Watching Device detection
Hi guys I've never worked with script before and I'm not sure but I think the solution around my problem will be in script but don't take in mind that … -
Replied To a Post in Device detection
You could store the files as serialized files and use your application to serialize/deserialize them as needed. Have a look at [this](http://www.codeproject.com/Articles/20626/File-Handling-and-Serialization-in-VB-NET).
The End.