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

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

RScero

Member List

gracias
lmttag
Andre's
MotteKarotte
TEJKIRAN
Nilesh Ingale
bennett1016
Byenary
Kiwi Ranger
CaptainSmudge
cbpd86
JTechOnlineGuy
Bill_Henning
2c
Mike Wachal - MSFT
MarcoB
Justin Patterson
kenneth123
FAp
yyz2112
Only Title

RScero's Q&A profile

  • Visual C# byte array to bitmap

    Hi there, how can I create a bitmap within a byte array, using pinvoke I found functions like createBitmap, createBitmapIndirect in gdi32, but I don't know, how to use it, or are they the right functions. I have to use pinvoke!!! Somebody can help me Greets sirithvasa Hi, > how can I create a bitmap within a byte array Do you mean you want to create a bitmap object from a byte array If so you can do something like: MemoryStream ms = new MemoryStream(byteArray); Image img = Image.FromStream(ms); Mark.r ...Show All

  • Visual Studio Team System TFS Setup 28100 Error Message

    Hi everyone, I am trying to install Team Foundation Server on a Windows 2003 server and just before it finishes I get this error: Error 28100. Error loading event webservice. I have tried whatever I found on the web like deleting the registry entry and running install again, Changing permisssionsa,.... When I check System Log I found these 2 logs: The identity of application pool, 'TFS AppPool' is invalid. If it remains invalid when the first request for the application pool is processed, the application pool will be disabled. The data field contains the error number. The identity of application pool 'TFS AppPool' is invalid, so the World Wide Web Publishing Service can not create a worker process to serve the appli ...Show All

  • Visual Studio Team System Virtual Server in a Production environment

    Hi      I am planning on doing a dual server installation of TFS.My data tier is a real box, where as my app tier is a VM.I am going to be doing this in a production environment at my client's place. Microsoft recommends not to  run TFS on a VM in a production environment in the following article http://msdn2.microsoft.com/en-us/library/ms316494.aspx   Virtual PC Team Foundation Server servers will operate correctly on a Virtual PC or a virtual server. However, this configuration is not recommended for production environments. It can be used in evaluation or demonstration scenarios   Is there a specific reason why If so, what are the risks involved Could someone please hel ...Show All

  • Visual Studio 2008 (Pre-release) Page.Show() ???

    I would like to know how to do the equivalent of Window.Show() method with a Page for a browser app (i.e. pop up a new window). I can't seem to find any documentation on this. Thanks in advance! You cannot show new top-level windows from within a browser app. The security sandbox does not allow this. Besides, you navigate to a Page. In a standalone app, you can create a NavigationWindow object and Navigate() to your Page object or Uri. Look at the Window management and Navigation articles in the WPF SDK. You might want to try using a Popup or other solutions discussed in this thread . ...Show All

  • Visual Basic Problems installing Visual Studio 6.0 on Vista Ultimate

    I can not get Visual Studio 6.0 to install on Vista Ultimate. I am running setup.exe as Administrator and I get an errors saying "iviewers.dll was unable to register itself in the system registry". Chris: Thanks for your repsonse. I had read this in the forums and both VS6 and the service pack were installed using the "Run as administrator..." option. Rory ...Show All

  • Visual Studio Express Editions Output to Textbox adds zeros

    Here is the code Private Sub Receiver(ByVal sender As Object, ByVal e As SerialDataReceivedEventArgs) Handles COMPort.DataReceived Dim RXByte, Nibble As Byte Dim RXArray(2047) As Char Dim I As Integer = 0 Dim J As Integer = 0 While COMPort.BytesToRead > 0 RXByte = COMPort.ReadByte Nibble = (RXByte >> 4) + 48 ' Convert received byte to Hex If Nibble > 57 Then Nibble = Nibble + 7 End If RXArray(I) = Chr(Nibble) I = I + 1 Nibble = (RXByte And 15) + 48 If Nibble > 57 Then Nibble = Nibble + 7 End If RXArray(I) = Chr(Nibble) I = I + 1 End While Dim RxString2 As New String(RXArray, 13, 7) TextBox1.AppendTe ...Show All

  • Windows Forms Deriving a new application

    Hi I have an application that is installed at client pcs. I now need to derive another app from the existing app but need the setup to consider the second app to be completely different and separate from the first app to avoid any problems at installation. The second app will be installed in a separate folder. What changes do I need to do in new app's setup to accomplish the above Thanks Regards Yahya ...Show All

  • .NET Development Imaginary numbers in VB.Net

    I am just wondering how Visual Basic.Net deals with complex number. Also, I need to write some code that, if given a complex number, will only take the real part and ignore the imaginary part. Thanks for any suggestions. I am using Visual Studio 2003 and none of the search returns really seem to help. They seem to be declaring complex numbers simply as DoubleComplex which is not an option in my version. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creator's Club Licensing Query

    If I get a Creator's Club subscription on a 360 under my gamertag, and then log it onto a different 360, will I still be able to use it on the second 360 I know that this would work for arcade games and whatever (you get a license for the 360 you bought it on, and for the gamertag that purchased it), but I can't find any proper confirmation either way about CC subscriptions in the FAQs, and only conflicting stuff in the forums, so any help would be nice. Thanks, David. Yes, Your subscription is tied to your gamertag so if you take it to another console you can run the XNA Game Launcher. That said, you will need to download a new copy of the XNA Game Launcher on the console as you cannot move the ...Show All

  • .NET Development MSIL to native code ... is posible with NGEN?

    Hello! I find the Native Image Generator , and i want ask if this tool can convert MSIL code to win32 native code. Somebody use it What results I read that is for avoid de JIT work each time but ... can I create a native and redistributable win32 exe with it I don't like send MSIL exes to my clients ... y can buy a obfuscator but ... i prefer something more ... closed :P Thanks in advance. Regards. Two reasons this won't work: you still need the original assembly to be able to run the program. And NGEN can only be run on the client PC. ...Show All

  • .NET Development Uploding text file to Remote Server from Local Windows Application

    HI, I am running into a huge road block which I am not able to upload files from windows application to a remote server. I know this can done on the server side (ASP.NET). Is there anyway that I can upload the file to a remote server from a local windows application How can I achieve this Please help! indeed there is. you could use the FTP Classes in .NET 2.0 or perhaps also consider using the WebClient class.... System.Net.NetworkCredential credentials = new System.Net.NetworkCredential(" username ", " password "); FtpWebRequest theRequest = (FtpWebRequest)WebRequest.Create(" ftp://yoursite.com/filename ToSaveAs.ext "); theRequest.Method = WebRequestMethods.Ftp.UploadFile; theRequest.Cred ...Show All

  • Software Development for Windows Vista How to handle instance state of old version workflow?

    Hi, every one. We are trying to use state workflow to handle our sales order process. We create a new instance of the workflow for each new order as the new order is created.  As order is approved/shipping/closed, workflow instance handle it’s state. This works perfect. But when user changes the workflow definition, the old instance cannot load! Firstly we consider about keeping all version of workflow class in one assembly  But this will lead the workflow definition assembly growing large forever. Because usually a sales order need several month to be processed and user need change the workflow frequently. So there will be a lots of old version instance stay in our database. ...Show All

  • Visual Studio 2008 (Pre-release) Custom Control - Generic.baml file not generated

    Hello. I'm having an issue with my custom control if I move it to an external library. My custom control works fine if it is in the same assembly as the application but when I move it out to an external library my control does not appear. I noticed that within the app the generic.baml file was created but in the external library I do not see the generic.baml file. My build action for the file is set to Page. Any ideas/suggestions would be greatly appreciated. Thanks! Note, I have done the following steps below: /// Step 1b) Using this custom control in a XAML file that exists in a different project. /// Add this XmlNamespace attribute to the root element of the markup file where it is /// to be used: /// /// xmlns: ...Show All

  • Visual Basic Windows Media Player 10 Control Enhancements

    Hi, I am developing an application to subtitle videos using the WMP 9/10 object with success for the moment. I'd like to take more advantage of the control and allow the user to use the Enhancements such as Video Settings to control video brightness, contrast, etc. My question if it's possible to access and modify such settings, and if not, I wonder if there's some sort of plugin to allow this, otherwise I'd have to migrate to another player control, and I would not like this option because I'm already forcing users to get WMP9 or 10 to use the program which was released on december 2004.- Any help will be really appreciated, I already searched through the WMP control reference at the MSDN Library without sucess. TheDarkestShado ...Show All

  • Gadgets MIME types in Spaces vs. Live.com

    It looks like a recent change to Spaces makes it more restrictive on MIME types than live.com.  Specifically, where the application/xml MIME type used to work just fine on Spaces and continues to work on live.com, Spaces will no longer load a gadget.xml manifest presented as application/xml.  Instead, it requires the manifest to present as text/xml.  This was preventing me from debugging my gadgets on Spaces because my web host presents .xml files as application/xml (a simple .htaccess file fixes this, but it took me a bit to track down the root of the problem). My Hangman gadget currently has a problem retrieving its data feeds which are presented by Yahoo as application/xhtml+xml.  The same feeds pull just fine on ...Show All

©2008 Software Development Network