Advertisement
Advertisement
| 02.28.2008 at 08:24AM PST, ID: 23200795 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: |
Imports System.IO
Imports System.Data
Imports System.Data.SqlClient
Imports System.Data.SqlServerCe
Imports System.Reflection
Imports System.Runtime.InteropServices
Imports System.Windows.Forms
Private Sub PushData(ByVal FileName As String)
Dim rda As SqlCeRemoteDataAccess
Dim username As String
Dim password As String
username = UsernameInput.Text
password = PasswordInput.Text
username = "xxxxx"
password = "xxxxx"
Try
'Instantate the RDA object
rda = New SqlCeRemoteDataAccess
'Connection string to sql server
Dim remoteConnectionString As String = "Provider=SQLOLEDB;Data Source=xxx.xxx.x.x;Initial Catalog=xxxxxx;User Id=sa;Password=xxxxxx"
rda.InternetLogin = username
rda.InternetPassword = password
rda.InternetUrl = "http://xxx.xxx.x.x/NewHandheldRDA/sqlcesa30.dll"
Dim TempString As String
TempString = "Data Source=" & FileName & ";SSCE:Database Password="
rda.LocalConnectionString = TempString
rda.Push("RandomWeightsRDA", remoteConnectionString, RdaBatchOption.BatchingOn)
Catch sqlex As SqlCeException
Dim sqlError As SqlCeError
For Each sqlError In sqlex.Errors
MsgBox(sqlError.Message)
Next
Catch ex As Exception
MsgBox(ex.Message)
Finally
rda = Nothing
End Try
End Sub
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 02.29.2008 at 10:31AM PST, ID: 21016116 |
| 03.01.2008 at 12:05PM PST, ID: 21023259 |
| 03.01.2008 at 07:57PM PST, ID: 21024872 |
| 03.04.2008 at 04:36AM PST, ID: 21040291 |
| 03.06.2008 at 10:51AM PST, ID: 21063445 |