Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #27.9K
Ranked #2K
~717 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

5 Posted Topics

Member Avatar for MaxDes

You could try the following (untested) console application [CODE] Imports System.IO Imports System Module Module1 Sub Main() Dim stw As New StreamWriter("c:\WDriveReplaced.txt", False) Dim str As New StreamReader("c\WDrive.txt") While (Not str.EndOfStream) stw.WriteLine(Path.GetFileName(str.ReadLine())) End While stw.Flush() stw.close() str.close() End Sub End Module [/CODE]

Member Avatar for MaxDes
0
172
Member Avatar for LloydFarrell

try putting single quotes (') around both SESS_MEMBER_ID instances in the query.

Member Avatar for Member #120589
0
123
Member Avatar for bbman

If you are want to compare the content of the two files, you could use the following [CODE] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { // here must be code to check the number and types …

Member Avatar for bbman
0
155
Member Avatar for jakkee

Yes, it is possible, but you should show what you have tried till now, before you can expect an how-to-do-this answer.

Member Avatar for JOSheaIV
0
148
Member Avatar for domingo

Assuming you distribute your application to multiple machines where you want to use the default instance of Sql Server, here is a copy of the code I use in a program that has the same requirements (allthough the parameters in the connectionstring are different. Crucial is the stament with csb.DataSource) …

Member Avatar for rozendaa@xs4all
0
119

The End.