Software Development Network Logo
  • Windows Forms
  • .NET Development
  • VS Team System
  • Game Technologies
  • Visual Basic
  • Visual C++
  • Microsoft ISV
  • Visual FoxPro
  • Windows Vista
  • Visual Studio
  • Windows Live
  • Architecture
  • SQL Server
  • Visual C#
  • Visual J#

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

0010110

Member List

Anwar Buchoo
mangs_22
Hasnul
rayhojka
Steve Clibbery
StockTrader
Coleby
Paraglider
sam_jeba
msibm
Don Stuber -- Pedifix
JakkyTchong
tca9
katarn85
VeeraMuthiah
22DoorsDown
marceloshb
rohits
Dawnyy
JamesTKirk
Only Title

0010110's Q&A profile

  • Visual Studio Team System Why test case's name becomes lowercase

    Hi all, Sometimes, I find my test case's name becomes lowercase. Is it a bug Or any design of VSTS If it is a bug, any walk around If it is VSTS design, what is the design purpose Thanks, Leon Could you describe a case where the test case's name becomes lowercase Thanks, Rick ...Show All

  • Visual Studio Team System Team Foundation Server Beta3 Setup Failed

    I tried installing Beta 3 of the Team Foundation Server, single server installation. I followed the instructions in TFSInstall-v50920.chm. Setup of team foundation server failed with: Error 28905. WiDbLoc: Could not list of fields to localize from the database Berry here's when the errors occur in dd_vsinstall80.txt: [09/24/05,14:37:47] VSServerUI: ISetupManager::GetGlobalCustomProperty() failed to find global prop in CProgressPage::RunningComponent() [09/24/05,14:37:47] VSServerUI: {4F8791EE-486F-44B5-952B-F28F9FD58BD0} [09/24/05,14:37:47] Setup.exe: GetGlobalCustomProperty({710A502B-4669-405C-A985-BA21545509BA}) [09/24/05,14:37: ...Show All

  • Visual C# How to add an application into a form?

    I have a vendor application (exe) and I like to add it into my application. Something like a MDI application holding other application. I found System.Diagnostics.Process class, but I can't add the app into my app. Thanks in advance You can't add another application to your application unless that application is exposing a API to integrate with it. What you can do from your application is that , you can open another application from your app using Process.Start(....) ...Show All

  • Visual Studio Express Editions Share with friends

    Is it ok to burn a copy of these 5 Visual Web Developer 2005 Express Visual Basic 2005 Express Visual C# 2005 Express Visual C++ 2005 Express Visual J# 2005 Express to a CD for some friends of mine who can't dl them from here One way to find out is to attempt to install the software on another computer and make sure you fully read the EULA when you get to that step. If the EULA says you can't do it, exit the install and tell you pal it's time to get a broadband connection. ...Show All

  • Visual Studio Express Editions Office 2000 has VB Installer / Configuration Problem after installing VB Express 2005

    I am an absolute beginner with VB. I installed VBE 2005 without a hitch but since doing so I have a problem with Word and Excel. Each time I launch them I get a message saying "Please wait while Windows configures Visual Basic Express 2005 ENU". If I let the installer run it chugs aways for several minutes. There is lots of hard drive activity and I notice MSIexec runs in the task list with lots of MSInnn.tmp entries (where nnn is a number). This happens every time I launch Word or Excel, but not PowerPoint. If I hit 'cancel' the installer window disappears and Word/Excel loads OK. I am running Office 2000 with SP3 installed and Wi ...Show All

  • Windows Forms Crystal Report:Logon Failed

    CrystalDecisions.CrystalReports.Engine.LogOnException: Logon failed. Can anyone had experience with Oracle Let me know how to get rid of this error  Any help would be apperciated.... ok guys... sorry for the long arse delay been busy.. The only way I have found to work with Oracle is to create a schema file of the query you are using.  This is depressing ...Show All

  • Visual Studio Express Editions Express Beta without .NET?

    Hi there. I made a couple of simple applications, one just a simple gui using the MFC and another made just from an empty project where I supplied all of the code without using any template. When I try to show it to someone else on their machine, it says they need the .NET 2 framework. The same code will execute just fine anywhere else when compiled with other compilers. I've been reading how to go about deploying a .NET frameworked app, but my question here and now is: Can I make an app with the C++ Express Beta 2 that is not dependent on the .Net framework I could understand if certain features require it, but what I made (even the non- ...Show All

  • Windows Forms Don't work

    Hello, I'have this code but it isn't working what is here the problem: Graphics ab; ab = this .CreateGraphics(); ab.FillEllipse( new SolidBrush ( Color .Aqua), 10, 10, 500, 500); ab.Dispose(); Greets, DIII How exactly is it failing You need to be more specific with your problem if you want there to be any chance of anyone here being able to help you. ...Show All

  • Windows Forms OpenFileDialog & Custom control

    Hello! This is my problem: I have create a control, and i would like to know , how create a properties to select file(with openfiledialog), who open an openfiledialog The same thing that i create a property bitmap, but for other file type. I hop that you understant my question, Thanks, Wavemill would you please get me the sample for the same. i had created the same way. but the dialog doesnot appear. Please help me out ...Show All

  • Visual Basic Relase the Fix for Visual Basic Compiler Error &H8013141e&

    Hi all i just want to know when is going to be released the fix for visual basic compiler error &H8013141e&   this is already reported in the microsoft productfeedback site. i think this is a very urgent patch that must be released asap and please do not repond that i should go back to vs.2003 because i have lots of code developed in VS 2005 to framework 2.0 ..   JSB PS: this error pisses me of, i need to restart VS.IDE every 5 minutes. i think this is too bad for a recent relesase product ( its full of Bugs ).   I am having the same problem. Happens in both Visua ...Show All

  • Microsoft ISV Community Center Forums Automatic BCC from Outlook (VBA)

    Hello, I am trying to create a subroutine in outlook to send an automatic BCC to a certain 'mail recipient (a@b.c)' if the subject contains 'xyz'. I have managed to create a subroutine which applys to EVERY mail i send. I want to set it for certain 'subjects' rather if subject contains 'xyz. What do i have to add Please help or guide me to resources. I need to know a subject field which i could compare strings with, i guess. ----------------------- Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Dim objMe As Recipient Set objMe = Item.Recipients.Add("a@b.c") objMe.Type = olBCC objMe.Resolve Set o ...Show All

  • Windows Forms Basic Script Access to Windows Form Controls In IE

    So, I'm getting my feet wet with hosting controls in IE, and as a simple test I'm just trying to get access to a simple function to change the text of a label in the control from a standard html button hooked to a javascript function. I created a basic control library in VS.Net 2005, added my label, and added a public function to the class defintion as follows: public void changeLabel() { lblStatus.Text= "Changed"; } I've compiled the control and embedded it into the following html file: <html> <head> <script language="javascript"> function doit() { change1.changeLabel(); } </script> </head&g ...Show All

  • Visual C# using Word = Microsoft.Office.Interop.Word

    Hi, I am having problem with the [Interop] word I was prompt for not exist. are there any reference I should add jbattat you have to download the Introp Assamblies. include the reference of word object library after download and installation. http://www.microsoft.com/downloads/details.aspx familyid=3c9a983a-ac14-4125-8ba0-d36d67e0f4ad&displaylang=en ...Show All

  • SQL Server New to SSIS and have a simple question

    I know this is a simple question (hopefully). I am pulling data from an AS400 DB2 mainframe and copying it into SQL Server 2005. For one table the date is stored in three columns (TDAY), (TMONTH) and (TYEAR). I am first using Data Conversion to convert these columns into string format (as opposed to numeric) and then creating a Flat File. I then want to take this Flat File and copy the columns into SQL server, however I want to "merge" those three columns, create a date and store that into one column in SQL (TDATE). So is this where I need to use a Derived Column Thanks for any helpful information. ...Show All

  • Visual C++ Upcasting/Downcasting name jargon

    Well I am a little confused with naming jargon of casting. My intended goal was: CBase* pBase = static_cast (derived); What is it called upcasting/downcasting I guess what we are doing is casting a pointer from Dervied Class to Base one so we are moving up in hierachy. Should It not be called upcasting . and There are many articles where it is called upcasting like for example: http://www.codeproject.com/managedcpp/castingbasics.asp While in MSDN they interpret as downcasting: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vclib/html/_mfc_static_downcast.asp Which one is correct Best Regards, ...Show All

©2008 Software Development Network