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

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

maverick_majnoo

Member List

LuckyL
danni123
Luke Yang
Mauricio hevs
re infecta
nizmo
orent
Janetb
Viktor78
Kadett
rpoy
Sergio.Rykov
CoderD
Riaanvs
yasmina
Atleta
Jonathan Caves - MSFT
shivali.sadavarte
Perels
dnweb
Only Title

maverick_majnoo's Q&A profile

  • Visual Studio Team System No Work Item is created when a build fails

    For some reason the automatic creation of Work Items when a build fails has stopped working for one of our projects. It's been building just fine for some time now, so I haven't noticed before today. So I'm not 100% sure what we might have changed to cause this behaviour, but it could be one of the following actions; Renamed the build type Added iterations and areas Anybody have any ideas Need more info Hi Jarle, Is there anything in your build log for the failed build saying that a work item could not be created for build failure. Can you also please check the WorkItemFieldValues property from your TfsBuild.proj file for the build type and post it here thanks, Swaha ...Show All

  • Visual C# Active Directory in C# .Net

    I have been given the task to figure out what I can do in c# respective to programing in Active Directory. I am wondering if there are any good examples out there if anybody knows about some. I have googled it and found some, but still not a lot. I have read on the microsoft's help but found little to no examples. I don't know maybe I was looking in the wrong place. If someone could point me in the right direction it would be very helpful.\ Thanks, Matt Online Resources Active Directory in C# and .NET System.DirectoryServices Namespace How to get User Data from the Active Directory Enumerating Active Directory Objects using C# Active Directory object picker control ...Show All

  • Visual Studio Express Editions Copy Protection/Demo Disk

    Good Day, as a beginner I learned from a lot of you in this forum and wish to thank all of you who have help. Because of your help I have completed by first program and learn how to deploy onto a CD using ClickOnce. Where I need help understanding next is how do I build a demo disk the will either limit the number of entries or a time expire method so that the client will need to purchase a upgrade and how do I copy protect the software so that it can’t be copied to other machine. I have read a lot of the forums commits but most of them seem to suggest using third party software. I would like to learn how to do write code for these things for myself. Any suggestion on which way or what reading material can lead me in the ...Show All

  • Visual Studio 2008 (Pre-release) Create Image from Background

    On my application, I would like to create an image which is exactly the same as my background. So if I have a red Background, I want a red image... This image will be used in a WindowsForms control, as a BackgroundImge property Does anybody have an idea Thanks !   footballism wrote: Sounds like RenderTargetBitmap can serve you pretty well. Sheva     Do you have any example   Because this class is used to convert a Visual to a Bitmap and I want to convert a Background (a brush) to a Bitmap...   Thanks ! ...Show All

  • Visual Studio Express Editions Mining Drivers

    I would like to write a simple driver back up program similar to the DriverGuide Toolkit as a learning excersize, but I don't know where to get started. Where would I go to learn how to access the registry and get information about drivers, find the files, and then zip them up. I have already found a way to zip them up. But I don't know how to get in the registry I am guessing it is with a series of win32 calls, but not 100% sure about that. Could any one steer me in the right direction Thanks, Matt The win32 dev newsgroups at http://msdn.microsoft.com/newsgroups is a more proper location for such questions. OTP Thanks, Ayman Shoukry VC++ Team ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Drawing Lines wider than 1px?

    How can I draw Lines with a width different from 1 px Take a look at: Microsoft.DirectX.Direct3D.Line() You can specify the width Julian ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DreamBuildPlay is up!!!

    Now go register!!   Actual contest details to come the week of Feb 5th I don't really know any valid zipcode and phone number for the US, nor any address for that matter. Thanks for the advice, anyway! I guess I'll just have to wait until they fix this. ...Show All

  • SQL Server Execute As error

    I have a stored procedure that needs to run with elevated privliges, so I tried setting it to run as one of the db owners. When a regular user tries to execute the SP, I get the error Cannot execute as the database principal because the principal "joejoe" does not exist, this type of principal cannot be impersonated, or you do not have permission. What do I need to set up so a user can be impersonated If I try to impersonate dbo, I get the error, Cannot execute as the database principal because the principal \"dbo\" does not exist, this type of principal cannot be impersonated, or you do not have permission. ...Show All

  • .NET Development RealProxy.Invoke, how to catch remoting exceptions.

    Hello, I would like some input on how to resolve a problem I have. We have a client-server application. The client gets references to services exposed by the server through a service manager. The service manager gets the requested service from the server and returns it to the client application. In order to centralize the error handling, we have decided that service manager would wrap the server's services using a RealProxy. This works fines except.... In my RealProxy.Invoke i cannot make the difference between an exception coming from the remote service and an exception coming from the remoting infrastructure, to detect that the server is no longer available. If you erfer to the code below,I was expecting that any exception c ...Show All

  • .NET Development Bit manipulation

    Hi! We would like to see if C# (1.1) has any API to manipulate bit in that way: For example, send a variable to it, like a INT64 and ask that function is such bit is 1 or 0; like... Int64 test = 255; bool bit = CheckBit(test, 5); and that CheckBit would return if the 5th bit is 1 or 0... We know how to write that function, and it's simple, but we always prefer to use the standard API, and we don't know if C# 1.1 has that already. Thanks in advance Yep, it does. BitConverter can convert your Int64 to an array of bytes, System.Collections.BitArray is available to manipulate the bits. For example: Int64 v = 255; System.Collections.BitArray vec = new System.Collections.BitArray(BitConverter.GetBytes(v)) ...Show All

  • Windows Forms piture array?

    i have yet another problem. im trying to create an array of " System::Windows::Forms::PictureBox::Control"s to use as images but when i try to do anything with the images i get an exeption of "System.NullReferenceException" here is the code i am using: public : static array <System::Windows::Forms::PictureBox::Control^>^ picarr; private : System::Void timer1_Tick(System::Object^ sender, System::EventArgs^ e) { System::ComponentModel::ComponentResourceManager^ resources = ( gcnew System::ComponentModel::ComponentResourceManager(Form1:: typeid )); if (!test) { picarr[0] = gcnew System::Windows::Forms::PictureBox::Control( this ->splitContainer1->Panel2, "Player" , 12, 12, 10, 10); this ...Show All

  • Visual Studio Express Editions How can I print image file (*.bmp) to the default printer?

    I have an image file (*.bmp) and I want to print this file to the default printer. and how can I control if the printer will print this file in the left or right of the paper Regards, Yaniv pinhas In the print page event change the X(horizonal), Y(Vertical) co-ordinates and put it where you want. Top left is 0,0 e.Graphics.DrawImage(PictureBox1.Image, New Point(0, 0)) or e.Graphics.DrawImage(Image.FromFile( "c:\test.jpg" ), 0, 0) ...Show All

  • Visual Basic not sure it this goes here or not

    I am using vs 205 team suite. I am at this point creating a crx app but everytime i try to save i get an error. An unhandled win32 exception occurred in devenv.exe[3612] the number changes, and then exits. when i restart and try to ope the project i get the same message on opening the project. How can i fix this So, let's see, are you getting the error on all projects that you create And is the environment purely Visual Studio, or did you install a SDK or addin Thanks, John ...Show All

  • Windows Live Developer Forums xml for KeywordPerformanceReportRequest please

    Hi there, I wonder could someone please paste the resulting xml form a keyword performance report. I have tried to set up a campaign, order and a kew keywords to generate my own reports....but they keep coming out blank! If someone could post the xml returned....or even an .xls file returned from a query I can do the work I need to do. Thanks. Justin. Here you go Justin.   < xml version="1.0" encoding="utf-8" standalone="yes" > - < NewDataSet ReportName =" Keyword_performance " LastCompletedAvailableHour =" 10/15/2006 4:00:00 PM " xmlns:xsd =" http://www.w3.org/2001/XMLSchema " ReportBy =" 10/15/2006: 10/14/2006: 10/13/2006 ...Show All

  • SQL Server Web based Data Mining Query... Installation issue..

    Hey gang, I have ran into an installation issue that has been bugging me all weekend. I'm trying to run the preditive analytics query from a web based application (ASP.NET). I have installed a data pump as directed by this article "Configuring HTTP Access to SQL Server 2005 Analysis Services on Microsoft Windows Server 2003" because this isn't set up under a domain. I also set appropriate roles in Data Mining Database (set it to everyone for testing purpose). ConnectionString is "MSOLAP.3;Persist Security Info=True;Data Source=http://1.0.0.1/olap/msmdpump.dll;Initial Catalog=DataMiningDB" Try Dim connection As AdomdConnection = Me.Connect Dim command As New AdomdCommand(txtQuery, connection) ...Show All

©2008 Software Development Network