hotsauce's Q&A profile
Visual Studio Branch project from batch command line or vbscript ole automation
Is there anyway that I could branch project using batch command line or vbscript ole automation I search command line reference, but I can't not find parameter for branch source and branch target. Please help. Thanks I want to clarify what you mean when you say "I want to branch $/trunk/project01 to $/projects/01". Are you saying that you already shared $/trunk/project01 to $/projects/01 and now you want to branch it If that is the case then something like this should work: ss cp $/projects/01 ss branch *.* -Luke ...Show All
Visual C# With Statement With Word Automation
How do i change the With Satement in C#....can someone help me out...Take out the look at the code.... I have this code in VB.Net that takes my value in my textbox and writes it to a value in my MS word 2003 document but how do i complete this in C# here is the VB.net code and here is how i began to do it in C# [code language=VB] For Each rng In doc.StoryRanges With rng.Find .Text = "[name]" .Replacement.Text = txtname.Text .Wrap = Microsoft.Office.Interop.Word.WdFindWrap.wdFindContinue .Execute(Replace:=Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll) End With [\code] [ code language=c#] doc = word.Documents.Open( "c:\\dee.doc" ); doc.Activate(); Microsoft.Office.Inte ...Show All
Visual Studio Merging multiple projects/solutions
I hope this is the correct location for this question. I am not working with a team, but I have multiple projects that I would like to bring together into one solution. Some projects are dependent on the output of other projects, and I would like to make sure I reference each project's output correctly and also have the correct build order. There are also two separate deployment projects in the mixture; how can I configure those to correctly join up Anyone who can make a suggestion or point out a good online reference for this, I greatly appreciate it! Oops! Forgot to add that these projects are in VS2003. Hi, I need some feedback in how to configure the solutions/proj ...Show All
Microsoft ISV Community Center Forums How to change currency of Microsoft CRM 3.0
Hello guys, How to change the currency from default which the $ to other country currency Is this possible from MS CRM 3.0 Please help.. tnx, Hi, A similar question was posted on the microsoft.public.crm newsgroup: < http://www.microsoft.com/Businesssolutions/Community/Newsgroups/dgbrowser/en-us/default.mspx query=change%20currency&dg=microsoft.public.crm&cat=&lang=en&cr=US&pt=&catlist=&dglist=&ptlist => "Browse to localhost\reports. Go to the Microsoft CRM folder. Click on show details and click on properties and security. You need NT Authority (Windows Server 2003) listed as Publisher for Microsoft CRM. If it isn't there already then add it using New Role Assignment. Thi ...Show All
Visual Studio 2008 (Pre-release) Bad request?
I am getting the following exception: TestCase 'TestGetBasket' failed: System.ServiceModel.ProtocolException: The remote server returned an unexpected response: (400) Bad Request. System.ServiceModel.ProtocolException: The remote server returned an unexpected response: (400) Bad Request. ---> System.Net.WebException: The remote server returned an error: (400) Bad Request. at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout) --- End of inner exception stack trace --- Server stack trace: at System.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequest request, HttpWebRespo ...Show All
SQL Server SQL 2005 Configuration Manager permissions
I can't seem to find the documentation on how to delegate control for SQL server configuration Manger 2005. I have DBA that need access to the tool from a remote machine without admin access on the boxes. Does anyone know how to delegated control and what permissions are needed to set up remote access for my DBA to user the 2005 configuration manager The only article that I was able to find is the following on WMI http://msdn2.microsoft.com/en-us/library/ms188690.aspx . Any help is greatly appreciated. It's going to be. You are trying to allow someone to remote contol a service on the machine. That level of authority is only available for admins on the machine. There shouldn't be ...Show All
Visual Studio Express Editions DLL Help "VBExpress"
hi Someone can help me with dll creation I want only know how to do this. Thanks Shady I just rechecked my local copy of the code and noticed that I did not fully implement the timer interval setting. (Original code will still work.) But until I get time to upload the small fix, add the red line of code below to Crazy_Panel.vb. Public Sub BeginMarquee() CrazyLabel.Text = _DireWarning CrazyTimer.Enabled = True CrazyTimer.Interval = _CrazTimerInterval CrazyLabel.BringToFront() End Sub ...Show All
Visual Basic Write data in VB.NET to Access using SQL
Okay, I have an Administrator page that is able to create new users. I have a simple adduserform that has a TabControl added in it with a tab for General Info and User Info. Those have quite a few texboxes for input and outside of the TabControl are 3 buttons that are Save, Clear, and Exit. What I want to do is have the Save write the data to my small database that I have for users. If you want to see an example of my screen you can see it here.... http://redbearcustoms.no-ip.info/VB/adduserform.html I dont think these forums yet have a feature to attach a picture but only links to a picture. As for inserting into database, this is not a problem. Here is a small snippet of code which will insert data i ...Show All
Windows Live Developer Forums Problem Signing In
Hi, I'm having a problem signing into my Windows Live Messenger 8.0. Everytime I first log onto my file and go to sign into the Live Messenger, some error message comes up with the code:80004005. I've been doing everything that I can to fix it but nothing that I've done has worked. So if anyone knows how to fix it, please e-mail me at black_nigga_12@hotmail.com Thanks, Blacks me too. the funny thing is my sister can access the messenger with her account and i can access that messenger when im at a cyber cafe. i cant access it at home at all and it keep showing that 80004005 error ...Show All
Visual Basic Error running one of the Samples in 101 VB Samples for VS 2005
I'm getting the following error when I try to run one of the examples on the 101 VB Samples for Visual Studio 2005: Database 'c:\vb101smaplesall\...location of database.mdf cannot be upgraded because its non-release version (600) is not supported by this version of SQL Server. You caanot open a database that is incompatible with this version of sqlservr.exe. You must re-create the database. ... I was able to successfully run another application "MulipleActiveResultSets" that come with the download but I can't run this application "DataReaderDataSet". They both came in the same download. Why is one working and the other not Which version of SQL server do you have on this machine Do you have multiple v ...Show All
Visual C# Casting System.Diagnostics.Process to a class?
Hi, I'm developing an application which there can only be one instance of. I'm taking care of that by looping GetProcessByName and comparing them to the path of the exe, which is working great. My question is, how can I send messages or call methods on the already running process In other words, I would like to sort of cast the Process to MyClass and then call ((MyClass)process).method(); Is this possible Regards, Johan The classical way of preventing an application to start up twice, is using a named system mutex. Even if a user changes the name of the exe file, the mutex will still prevent it from running twice if you check for it at startup. You can also use the mutex to pass information to ...Show All
Visual Studio Express Editions Interop question
Hello I have a question about C# express, apologies if it's been asked before, I searched the other posts in vain. Is it possible to create a class library dll in C# 2005 and use it in a C# 2003 project When I try to reference my 2005 project dll from 2003, I get a "reference could not be added, not a valid COM component or assembly ...". I haven't tried going the COM route (I'm new to C#) as the examples I've seen had to do with sharing 2005 with vb6 and the like. Any help anyone is willing to provide would be very much appreciated! Thanks -Paul S Thank you Hans, that helps. I appreciate your response, it at least saves me a lot of frustration! Kind regards, -Paul ...Show All
Microsoft ISV Community Center Forums vlookup for a range of cells
Hi In Sheet 1 i have columns (A,b,c,d) "Names", "Marks", "Age" and "Location" i have thrity rows of data for these columns in sheet 2 i have one column showing the names (thirty rows) - Column A . i would like to populate in column B the data relating to "marks" or "age". The column reference in the vlookup formula should be picked from the list box placed in the excel sheet. The Listbox has been placed from the Control Toolbox. List box contains values 1,2,3,4. If i pick 2 from the list box column B should populate with Data of Marks, if 3 is selected then Age data should be populated for these thirty rows Please Help Thanks in advance Ranjit ...Show All
Windows Forms SMTP.
How do I find out what my SMTP is If you do not have a server running on your local machine you’d need to check with your network administrator, ISP or host provider to find out what you should use. To check your local machine the easiest way is to simply open up a command prompt and type in the following and hit enter: telnet localhost 25 If you can successfully connect then you’ve likely got one, if not then you don’t or it’s off (and turning it on would depend on what server it is). ...Show All
.NET Development minOccurs="0" and length restriction
I would like to have an element that can be (minOccurs="0") empty or null or if it is not null to be exactly 3 characters. The schema below still validates a null element and fails. What am I doing wrong < xs:element name =" PROD_NO " minOccurs =" 0 "> < xs:simpleType > < xs:restriction base =" xs:string "> < xs:length value =" 3 "/> </ xs:element > Thank You What do you consider a "null element" In terms of the W3C XSD schema language an element is null if it has the xsi:nil attribute set to true e.g. <PROD_NO xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance " ...Show All
