Computer L is on a Domain computer R is on a WorkGroup, Nothing has changed with the VPN connection so all necessary ports should be open, this setup worked perfectly before I replaced Computer R. There may be something on Computer R "Windows 7 Pro" that is not allowing the connection but I sure...
Thank you for the response, yes I have tried both pull and push subscriptions with the same result. Not sure what you mean by "Is the distributor a different machine/instance from R and L?" The distributor is computer R and the subscriber is computer L
I replaced a computer at a remote location (Computer R) and I can no longer get replication to work with my local server (computer L), computer R is running windows 7 Professional with Sql Server 2008 R2, the computer it replaced was running Windows Server 2005 and Sql Server 2008 R2...
I have a Vs.Net 2008 application that prints a report, I want to be able to print the last page only. I can print a range using StartPageN and EndPageN, is there a way to set it to only print the last page? I of course could use StartPageN and EndPageN but the lengh of the report varies.
Thanks
You can use DirectoryInfo to loop through all the files on the drive and get info about each file and directory.
Imports System.IO
Dim dDir As DirectoryInfo
dDir = New DirectoryInfo("D:\")
For Each fFileSystemInfo In dDir.GetFiles("*.*", SearchOption.AllDirectories)...
Where are you planning on getting the exchange rate from? Seems to me you would need to retreive the current rate from a web service such as Oneada.com.
https://www.oanda.com/currency-data/currency-feed-xml
from there you would receive an xml responce and you would just need to parse through...
I set up the same thing a few years ago and if I recall it was a pain to get working correctly. I have posted the code I use, you can compare your code to it and you should be able to figure out the problem pretty easily. I put my result into a dataset and display it on a form so my users can...
They are definitely not interchangeable, they all have a specific role.
The DataTable is the in-memory data.
TableAdapters communicates between your application and a database, executes queries, updates, procedures etc. All of this can be setup from the dataset, this is where you create your...
How about having the 6-8 textboxes on the form displaying as much text as will fit and have your mousehover event display the tooltip with the full text of the textbox. This will give the user a quick view of all the textboxes and if they move the mouse over the textbox the full text will popup...
Most should be pretty easy to figure out, think classes instead of commands.
VB
Dim d As DateTime = Now()
DatePart(DateInterval.Day, d)
VB.net
Dim d As DateTime = DateTime.Now
d.Day
Dim s as string = " Leading Spaces"
VB
s = LTrim(s)
VB.net
s = s.TrimStart
Hope this helps, if there...
Vpn can be a simple solution if your hosting company is running windows server and has a static IP address. They would just have to set up the RRAS (Routing and Remote Access Service) on the server and the remote company then just needs to set up a Vpn Client to log in the the host server. If...
I don't have 2010 but in 2008 if you right click on the solution in the "Solution Explorer" you have an "Add" option and from there you can select "Existing Solution
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.