TheJet's Q&A profile
.NET Development no wsdl file when downloaded from a remote web server
Hello, Visual studio 2005 I have created a simple web service on my local machine. I added the web reference and everything works fine. However, when i add an web reference from my remote web server it adds the web reference, but there is no wsdl document. From my local machine I have under the web reference the following files: Reference.map, service.disco, service.wsdl. On my remote web server I have the following: Reference.map, service.disco. The service.wsdl is missing. I have always created web service on my local machine, this is the first time from a remote server. Can anyone provide any guidance on how to solve this problem. Many thanks in advance, Steve Hello having a problem with this web ser ...Show All
Windows Live Developer Forums Windows Live Spaces Music?
How do I get media player or get to play music with Windows Live Spaces well "sigh" I already know all that and yes it is easy , my question is WHERE!!! not how !!!!do you find music or videos to go in to the live space player Every site I try only has it for places like my space , tagged etc , but no alot for my space live and the ones in media player are mostly broken links or again only for certain sites , what I am looking for here is a list of urls I can go to to get things like alternitive or rock songs by acutal performers thanks ...Show All
Visual Studio Express Editions how to update data into Access DB?
I have manage to create the insert data into the Access DB but if i wish to make a update on the DB how can i do it there are many ways. if you are using an OleDbDataAdapter to fill the dataset, you can then also use the UPDATE() method in this, creating an UpdateCommand statement so when you call the Update() method, it will use the appropriate command to update the datasource (database) http://msdn2.microsoft.com/en-us/library/system.data.oledb.oledbdataadapter.aspx Above includes an example or you could execute the OleDbCommand and giving it an update statement, the same way as shown in the above link Does this help ...Show All
Visual Studio Team System Implementing ExecuteDefaultAction
I have inferred from the VSIP SDK documentation that if I wish to link work items to entities in my own application and have my own application be the "viewer" for these entities, my application needs to implement ExecuteDefaultAction. I am assuming that I would have to make Team Explorer "aware" of my implementation of ExecuteDefaultAction, in order that when a user clicks on the link in the work item, my application can be invoked. Unfortunately, I can find no clue in the documentation (or even in the API) about how to do that. Help is very much appreciated. Regards, Daniel This question is being tracked on Daniel’s earlier post - http://forums.microsoft.com/MSDN/ShowPo ...Show All
Audio and Video Development NO HDMI link
hi has someone met this problme when play a disc on toshiba hd xa1 player You need to get the latest firmware update for the Toshiba player; it has troulbe connecting to some TVs such as Samsung DLPs. Just plug an ethernet cable into the back of the player and go to the Setup menu and configure it to get updates (assuming you have a home network and get a DHCP address, etc. this will be trivial). It takes a while for the update to download and then apply to the player. After the update, it should work OK with HDMI. ...Show All
Visual Studio 2008 (Pre-release) problem using custom control library!!!
I have used microsoft expression designer to build a custom wpf control library. I have made an image button as described in the tutorial that comes with the software (expression designer). I have then added the .dll to a wpf application and could use the imagebutton control but the styling is not applied. I need to manually copy the imagebutton content template in order to be able to apply it in the WPF application. Do I, maybe, need to reference something else except the control library dll The XAML code for the imageButton control is as follows: <Grid xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " xmlns:mc=" http://schemas.openxmlformats.org/markup-co ...Show All
Windows Search Technologies PHLAT
Not sure how many people know about the PHLAT proof-of-concept UI for WDS, but it's quite good - except it has yet to catch up with changed versions of WDS. (OK with most WDS 2.x versions I think). The PHLAT FAQ is here - http://research.microsoft.com/adapt/phlat/FAQ.aspx ...Show All
SQL Server Database Restore, Error 3154 and
Hi all, I am trying to restore and SQL 2000 database into a new SQL 2005 database. I performed by SQL 2000 backup and created a blank database FERS_Production in SQL 2005. FERS_Production was the original name of the database in the SQL 2000 instance. I have tried giving the new database the same name as the original and a different name to the original database (Below is the scripted T-SQL that I get from the DB Admin tool RESTORE DATABASE [Fers_Production] FILE = N 'FERS_Production_dat' , FILE = N 'FERS_Production_log' FROM DISK = N 'D:\Microsoft SQL Server (2000)\MSSQL\Backup\Fers_Production\Fers_Production_db_200607270206.BAK' WITH FILE = 1 , NOUNLOAD , REPLACE , STATS = 10 GO When I ru ...Show All
Visual Studio 2008 (Pre-release) Make Copy of Image
I have an image like this on a canvas: <Image Width="50" Height="50" Name="myImage" Canvas.Top="0" Canvas.Left="0" Source=" http://mysite.com/image1.jpg " /> Nothing fancy. Now I want to make a duplicate of that image. This is how I know to do it: System.IO. MemoryStream stream = new System.IO. MemoryStream (); System.Windows.Markup. XamlWriter .Save(myImage, stream); stream.Position = 0; Image newImage = ( Image )System.Windows.Markup. XamlReader .Load(stream); stream.Close(); The problem with this approach (I think) is the new image has to get downloaded from its URL again. (I'm just guess this is happening based on the amount of time it takes...) ...Show All
SQL Server Adding Data Viewer causes BI Studio to crash
I am having this issue with BI Studio when I add Data Viewer to a relatively large data set, it causes the Visual Studio to crash. Has anyone experienced this Any help on this will be highly appreciated. Thanks, Ashish Also, I should mention here an important information. This happens only when I set the MaxBufferRows to 1000000 and BufferSize to 104857600. Thanks, Ashish ...Show All
SQL Server SQL 2005 training - suggest best provider to train on site
Hi, our company is looking for a good training for SQL server 2005. Majority of attendies will be .NET developers, but some will be technicians who need backup, replication, maint., etc. training. All are pretty familiar with sql server and have experience with SQL 2000. So, it should not be for beginners. Intermediate and advance topics. Whom you can suggest Do you have experience with them Thank you. Victor Learning Tree is excellent for onsite training as is Training By ROI, INC. Google them and you'll get a match. You could also check out our online tutorials - http://www.learnSqlServer.com/ ...Show All
Visual C# How to find / locate a control on a form?
Hi, I have a configuration file, which specifies which controls should be disabled based on certain criteria. The only way I know of getting a refernce to the control in the form is to recursively go through every control. Unfortunately, this is not a viable solution for me. Does anybody know if there is another way to access the control I need based on its Name property, or any other property Any outside of the box solutions are welcome. Thanks a lot. Lidiya Thanks for your response. I am using controls in the System.Windows.Forms namespace. I don't think it contains a Find method for Control object. :( ...Show All
Visual Basic Handling click events for Dynamic Buttons
I have a web page that I created. There are several dynamically created buttons on the page. I have written handlers for the button clicks and javascript to help handle the button clicks. My page works just as I had hoped, except for 1 problem - I can click ANY of the dynamic buttons on the page and it works, but only every other time. I have stepped through the code and for some reason, the second time I click any button on the page, the button's click event handler doesn't get called. This happens for ANY of the buttons, doesn't have to be the same button clicked each time. The buttons are created in the VB code behind page : btn = New Button With btn.Attributes .Add( "runat" , "server" ) .Add( &qu ...Show All
Visual Studio Windows Workflow foundation on Vista x64
Hi I've installed the Vista SDK which includes .netfx 3.0 but there's no workflow foundation project and when I try and open an existing tutorial project I get an error message that project type is unsupported by this installation. I tried to install WWF from http://www.microsoft.com/downloads/thankyou.aspx familyId=5D61409E-1FA3-48CF-8023-E8F38E709BA6&displayLang=en but it appears to already be installed. Is it possible to use workflow foundatation on Vista x64 with VS2005 Team Edition Dave I'm fairly sure I downloaded the correct SDK - everything else installed ok (i.e. the XAML stuff). I also tried the seperate "Visual Studio 2005 Extensions for Windows Workflow Foundation (EN)" and ...Show All
Visual Basic Problem saving graphics to a file
Hi, I have an application in which the PaintEvent calls up a procedure to get data from four Sql tables, and produce drawings. This part of the app works fine. I am now trying to copy these drawing one at a time to a Bitmap file, and not having much success. I've omitted the the Sql statement sections in the following code as they are not the problem. Private curFileName As String Private curImage As Image Dim ImageNo As Int32 = 0 ' This procedure adds the drawings ands text to the appropriate rectangle. Private Sub DrawDetails(ByVal e As Graphics) If ImageNo = 0 Then ImageNo = 1 Else ImageNo = ImageNo + 1 End If curFileName = "Drawing " & ImageNo & ".bmp& ...Show All
