dreameR.78's Q&A profile
Visual Studio 2008 (Pre-release) WSDL has wrong soap:address??
I have been just learning WCF and I have a virtual machine running Windows Server 2003. I develop my hello world WCF Service and the Hosting website locally on my own PC, and if I browse to http://localhost/MyHost/HelloWorldService.svc wsdl I get a WDSL that has all the correct information in it. But when I deploy this Web Host app to my Windows Server 2003 machine, and I go to the address http://servername/MyHost/HelloWorldService.svc wsdl the soap:address property of the WSDL file is incorrect and I cant load any Service References, I get the following output: The document was understood, but it could not be processed. - The WSDL document contains links that could not be resolved. - There was an error downloading 'http://markv.kram/Hel ...Show All
Visual Studio can't installing
I am follow " Extensibility Guided Tour" article to make my msi file. But, when setup it then have messagebox " This is a VsPackage and Requires Visual Studio to be installed". Please help me.. thanks.. PS: I have PLK. Hi Dmitry Pavlov: Excuse me... I can package my VsPackage using this file named Product.wxs to xxx.msi. But, after installed it on other machine, the open VS.NET IDE no see my VsPackage.. Can you help me... Thank you... My Product.wxs is : ---------------------------------------------------------------------------------------- < xml version="1.0" encoding="UTF-8" > < define ProductShortName = "NPXmlTree" > < ...Show All
Visual Studio Express Editions StreamReader & StreamWriter-Error!
I've searched a round a little, and am having trouble with StreamReader in VB. When I debug the application, I go to open a test file. When I click Open from the dialog, the debugging process pauses and VB shows the form's code. A line: SR.ReadLine.ToString(textbox1) is highlighted. A box appears: I don't understand what it means, I am loading Hello World into a textbox from a file. Sorry if this question seems "stupid," just got this a week ago. Thanks in advance! Kevin [edit] can't see the image goto http://www.freewebs.com/hardwarecompugeek/error.jpg Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles B ...Show All
Visual Studio Team System Error when creating coverage info: Module App_Code.dll version mismatch
Hi all, I have a solution that contains multiple webservices. I have code coverage turned on and everything works great when building local. When building with team build we get the following error. The Code Coverage Analysis Service could not analyze the code coverage data for build IBS 1.1 Master Build_1.1.0.34 (Mixed Platforms/Debug). This is frequently caused by publishing different versions of the same binary to a particular build. Processing of code coverage data from run tfsservice@CTSHELNT04 2007-01-05 10:59:47_Mixed Platforms_Debug caused the following exception to be thrown: Error when creating coverage info: Module App_Code.dll version mismatch when aggregating coverage data. Check for out of date copies of this ...Show All
SharePoint Products and Technologies VSeWSS
When can we expect the next release of VSeWSS I am getting the error mentioned in other places (blogs and newsgroups) where I can't build and deploy the same project twice (works the first time, errors out each time after). When enumerating features on a MOSS server, some features don't have a Feature Definition, i.e., that property is null. Could that be what I am seeing Anybody else using VSeWSS on a machine with MOSS installed instead of just WSS ...Show All
Windows Live Developer Forums List of available pins
Hi, I've just started with developing in VE. I'm creating an application that takes GPS data from a pda (using TomTom navigator), sends this back to a little server and then displays the direction, location, speed and user on Virtual Earth. I would like to have a different icon based on the direction of travel. Is there a standard set of icons associated with Virtual Earth and, if so, where can I find them Regards Pete Hi John, My application is nearly ready. Email me at pete@infonote.com to get a copy. Pete ...Show All
SQL Server SP Compilation Confirmation Message?
How can we say whether the SP is successfully compiled or not if we are compiling it on the server as a part of the TSQL script since it does not throw any message like ORACLE does. In oracle, system will let you know whether the the procedure is successfully complied or not Thanks/ Hi, Look at syscacheobjects in SQL Server 2000 and sys.dm_exec_cached_plans in SQL Server 2005. This table and DMV returna information about query executioin plans in cache. SELECT * FROM syscacheobjects WHERE objid = OBJECT_ID('object_name') SELECT * FROM sys.dm_exec_cached_plans Good Luck! Regards, ...Show All
Visual Studio 2008 (Pre-release) Help me design Menu/Toolbar item coordinator
Hello, I figure this is something that has been solved over and over again. There must be a pattern for it. I want to design a menu system & tool bar system for my rich client application. I want the menu/toolbar system to be smart enough to enable/disable items as the user’s context changes. For example, when the user enters the order window, the Order menu item along side the Order buttons on the toolbar are enabled and when the user moves to configuration the configuration items are enabled and the Order menu items are disabled. What is the best way to achieve this functionality Is there a way I can utilize commands and some sort of a coordinator that keeps track of what the context is I don’t want to write a bunch of ...Show All
Smart Device Development I want to create ad hoc connection between Pocket PCs
I want to send files with my application in pocket pcs I want to use UDP with ad hoc but I am confused about metaphor to create ad hoc connection (if I don't set ad hoc mode in pocket pc) how can I start This should help you http://www.pocketpcmag.com/blogs/index.php blog=3&p=588&more=1 ...Show All
Windows Forms File help!
Hi i would like to know how to read from a, lets say a txt file, read some lines that are in the txt file to put on textboxes... how do i read any help thank you Google is a great resource for questions like this. Check out this article: "How to read from and write to a text file by using Visual C#" http://support.microsoft.com/kb/816149 ...Show All
Software Development for Windows Vista CreateEvent Fails with Access Denied when Events with the Same Name from Different Applications.
CreateEvent Fails with Access Denied when Events with the Same Name from Different Applications. So I tried to use my CreateEvent functions without name and it works. So why should I even bother to use a name I will Create Events without name from now on not to come across with this annoying problem again. CreateEvent(NULL, FALSE , FALSE, NULL );//auto reset event In my case I have some cpp files shared from 3 applications that I am building and because of this these 3 applications use the same name for teh events they create but actually all those events has nothing to do with each other. But what happens is that these unrelated events are recognized by their name as same events and for some how the first application that runs ...Show All
.NET Development My session gets Expired asp.net 2.0
I had set session timeout in web.config file for asp.ne2.0.But it wont work.If it was in asp.net 1.1 .the code works. Please help me in this mess It's difficoult to say what's wrong. Are you sure you're not setting the timeout or dispose the session in some other page You'd probably be better of asking this question in: http://forums.asp.net ...Show All
Windows Forms enabling/disabling controls
I made some code to enable/disable any menuitem in a menustrip (see http://forums.microsoft.com/msdn/showpost.aspx postid=564110&SiteID=1 ). Now I would like to have the same functionality for all the controls on a form (buttons, textboxes, labels, comboboxes, groupboxes,...). Does anybody know how to do this Does anyone have the code to do this Controls have Enabled property in which you can set to true or false to make them Enabled or Disabled. All you actually need to do is iterate to all the controls in your form and set Enabled property to true or false. For example, I wrote this function to enable or disable all controls of a parent control: public void EnableAllControls(Cont ...Show All
Game Technologies: DirectX, XNA, XACT, etc. device.Lost not firing.
I'm having problems when i reset the graphics device after a resolution change. Here is how i have the reset and lost events set-up. //handlers for device events device.DeviceLost += new EventHandler(device_DeviceLost); device.DeviceReset += new EventHandler(device_DeviceReset); void device_DeviceReset(object sender, EventArgs e) { LoadResources(device); } void device_DeviceLost(object sender, EventArgs e) { UnloadResources(); } private void LoadResources(GraphicsDevice device) { //set anisotropic filter InitAnisotropy(); debugFont.Reset(device); effect = new BasicEffect(device,null); effect = Effects.InitBasicEffect(effect, device); } private void UnloadResources() { primitiveToRender = null ...Show All
Windows Forms DataGridView + Adding Rows
Hey all I am trying to add Data in rows using a loop, but I can't figure out how to add just the right amount of rows so it doesn't glitch on me... http://rafb.net/p/r1ITE288.html that is my code UserClassAndStudent() is my array that holds all the variables. that are seperated by my delimter "|" vertical bar. and example value of UserClassAndStudent would be (0)= Class 1|Student 1|Student 2|Student 3 (1)=Class 2|Student 1b|Student 2b|Student 3b (2)=Class 3|Student 1c|Student 2c|Student 3c (3)= Where Class 1,2,3 would be the header and everything else will be the row for that column, lastly the amount of rows in each column vary by number of students etc.... Which kind of result do you want Something like: Class1 ...Show All
