Software Development Network Logo
  • SharePoint Products
  • VS Team System
  • Visual C#
  • Microsoft ISV
  • Visual Studio
  • Visual Basic
  • Game Technologies
  • Windows Vista
  • .NET Development
  • Windows Forms
  • Visual FoxPro
  • SQL Server
  • Smart Devicet
  • Audio and Video
  • IE Development

Software Development Network >> mix600's Q&A profile

mix600

Member List

Ofir Epstein
Polina159216
Kevin Dente
Al Christoph
bruce2005
Beneventi
Francesco De Vittori
Phantisy
satab
Stéphane Beauchemin
Hybrid Bray der Burrito
lib_team
Jo-Jo
altamash
doener
Philred
Terry Smith
ramana reddy
Dale17677
Bapa
Only Title

mix600's Q&A profile

  • Visual Studio Team System How to create a master build?

    Hey guys, I have a special requirement in doing with TFS Build. There are several build types under a Team Project, let's say these build types are: typeA,typeB,typeC. I can run each of these build type successfully. Now we wonder if we can create a build type called masterBuild, which consists of all these build types. After I run the masterbuild, all build types included by masterbuild will be put according to following structure: \MasterBuild_2006.10.1\TypeA MasterBuild_2006.10.1\TypeB MasterBuild_2006.10.1\TypeC Any idea is appreciated. Thanks Hi Steve You are right. That's what I want to say. The most difficult point of this is to pass the folder path to sub build type. I am st ...Show All

  • Visual Studio Express Editions print compression when deployed

    I have a report being utilized for return address labels, conforming to Avery 5167. I have tried designing both as a table and as data in rectangles. Since these are return labels their is only one instance of data replicated for all textboxes, therefore the columns are of consistant length. The report has seven columns of precise measurement, the data filled colums are set as 1.75in, 0.25in, and between the data columns are blank columns set to .3125in, 0.25in. I have also tried to fill data into the blank colums and set the font color to white. All report margins are set to 0in and the table location is 0.04167in, 0.125in. all textboxes have the properties for increase/decrease to accomadate turned off. The biggest issue I a ...Show All

  • Windows Live Developer Forums More points in routeItinerary?

    Hello people, i ' d really appreciate if someone can help me with this one. I need to get more intermmediate points in a routeItinerary object after querying directions with getRoute() method. Sometimes, when there is a long way on the same route, one step could be several hundreds long. I need to get steps like 25 miles long. Is there any possibility to do this with this control, or work around, or even if not, do you know of some other way to do it Any other service Thanks very much Dario you don't have much control over it in VE, but in Mappoint Web service (which Virtual earth uses) you do. more information here: http://www.microsoft.com/mappoint/products/webservice/default.mspx ...Show All

  • Visual Studio 2008 (Pre-release) Data Contact Question

    Hopefully this is a really simple question. What is the best way to expose constants in a WCF service. Is there anyway to make a datacontract for a constant public const string SomePreference = "MyKey"; What the best way to make a data contract for this The only way I can think of doing this is to make a class like this: public class Preferences { public string SomePreference { get { return "MyKey"; } } } We have a bunch of constants like this we need to deal with. Any guidance would be greatly appriecated! Thanks! curious why you would not use an enum... [DataContract] enum PreferenceType { [EnumMember] pref1, [EnumMember] pref2 ...Show All

  • Visual C# Using Enum as Index

    If I have an enum such as public enum Test { One = 1, Two, Three } I want to be able to add a value based on the enumerated type such as: MyValue[Test.One] = 17; I would also like to keep ot strongly typesd so MyValue[1] = 17; is invalid. Is this possible within C# OK if I had public enum Test { One = 1, Two = 2, Hundred = 100 } The array would be 3 elements so I could not use MyValues[(int)Test.Hundred] = 17; It also is not strongly typed, I could still implement MyValues[2] = 17; which I want to disallow or at least check ...Show All

  • Visual C# Very Beginner and want to learn how to program in C# or VB.NET

    Is it a way of thinking the process to be able to understand the books I’m very visual so what would it be the best way for a non programmer to become a C# or a VB.NET programmer Please advice. Excellent videos: http://msdn.microsoft.com/vstudio/express/visualcsharp/learning/default.aspx ...Show All

  • .NET Development Rookie problem with less than ("<") filter in a select statement

    I have a rookie problem with the less than ("<") filter in a select statement. I am working in ASP 1.1 in c-sharp and with a Microsoft Access Database. The code below works fine SqlString = "SELECT ID,SURVEYID,NAME,ADDRESS,CITY,STATE,ZIP,LAT,LONG,AGEMAX FROM asps WHERE AGEMAX " + ">" + 10; This code returns eveything in the database. The only difference is the "<" filter. SqlString = "SELECT ID,SURVEYID,NAME,ADDRESS,CITY,STATE,ZIP,LAT,LONG,AGEMAX FROM asps WHERE AGEMAX " + "<" + 10; Any suggestions Thanks ...Show All

  • Smart Device Development C# compiled screen handler

    I am using Windows Application. I have a C# compiled screen handler. First I load the data base for the screen, 21 X 1000. Then i use Console.Write() to fill each location in the screen. I do not know if it works because i do not get an output. I have 3 buttons, 1 textbox, and one combobox. Do i focus on the textbox before i write   private void button1_Click( object sender, EventArgs e) { } public static class abcde_read_garage_file { public static char [] q = new char [210000]; public static String header = "G_F_R_SSS_LICENSE_WA" ; public static String headerx = "G_F_R_SSS_LICENSE_WA" ; public static char [,] garage_array_database = new char [21, 10000]; ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Gray Polygon (DrawPrimitives)

    Hi, I'm currently using DrawIndexedPrimitives with data of type VertexPositionColor, and I've clearly set the colours but I always get a gray shape instead of the blend that I ought to see. Any ideas here please Thanks in advance. i already asked bout vertex colours & basiceffect http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=777762&SiteID=1 "The version of BasicEffect we shipped in the beta doesn't support vertex color, but we're hoping to add that for the final release." use custom shaders and everything will be fine :) ...Show All

  • Visual Studio 2008 (Pre-release) x:Subclass does not work

    Hi, I have a user control and want it to subclass a my base class instead of System.Windows.Controls.UserControl. I figured I could use x:Subclass as follows: < UserControl x:Class = " MyClass " x:Subclass = " MyBaseClass " xmlns = http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x = http://schemas.microsoft.com/winfx/2006/xaml > Unfortunately, this does not work. The generated code still subclasses UserControl and (for some reason) the partial modifier is removed in the generated code. Any ideas Thanks, Kent Boogaart This forum is focused on the WPF Designer rather than on WPF runtime issues. The WPF forum http://forums.microsoft.c ...Show All

  • Visual Studio Team System TFSScheduler not using SSL

    I keep getting these messages in the IIS log: 2006-11-07 19:55:24 W3SVC3 192.168.1.2 POST /Services/v1.0/ServerStatus.asmx - 8080 - 192.168.1.2 Team+Foundation+(TFSServerScheduler.exe,+8.0.50727.147) 403 4 5 I already changed the TFSServerScheduler.exe.config to use the FQN and the HTTPS site (port 8081) but it doesn't look like it is using it. Jason, Can you post the changes you made to the config file here (without specifying your FQDN ) Did you make sure to change the "BisDomainUrl" element to "TFSNameUrl" Thanks, ...Show All

  • SQL Server Any update on native Word Export delivery?

    Is there any update as to when a native export to word/rtf will be released ...Show All

  • Visual Studio 2008 (Pre-release) Multiple monitors

    Just one question. How multiple monitors will be supported in WPF, or if there is some support can you tell me where i can find it in what manner do you want to use wpf with multiple monitors I didn't find any possibilities to determine or control on which monitor an app or window is running. Are there any ...Show All

  • Visual Basic ListView control Problem - missing blue rectangle around selected item

    Help please, I did simple form containing Tabcontrol and Listview on one Tabpage. During initialization I put some items and set selected property of one of them to true. When the form is shown no blue rectangle arround selected item Similar problem is when I switched between tab pages. I selected by clicking one item. The blue rectangle is ok. Then I switched to the second tabPage and then returned back to first one with selected item in Listview - the blue rectangle disappeared. How to solve this problem Could you help me please. What I'm doing wrong (I' tried to call refresh, focus on listview control no improvement in behavior). Thank you in advance. Vlastimil ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Custom soundtracks

    I've only had XNA Game Studio Express since yesterday, but I've been having a lot of fun with it. I've started working on a game which is coming along nicely, but one thing irks me - I can't figure out how to have music playing that stops when a user chooses a custom soundtrack instead. At the moment, when a user chooses their own track is starts playing fine, but the game soundtrack continues to play in the background. I'm sure I've missed something simple, but I can't for the life of me figure it out. Any hints would be much appreciated. Eli Tayrien - MSFT wrote: You can specify the category on a Sound in the properties dialog in the Microsoft Cross-Platform Audio Creation Tool. Categories are us ...Show All

©2008 Software Development Network