Software Development Network Logo
  • Visual J#
  • Visual FoxPro
  • .NET Development
  • Architecture
  • VS Express Editions
  • Visual C++
  • Visual C#
  • VS Team System
  • Smart Device
  • Game Technologies
  • Visual Basic
  • Visual Studio
  • Windows Live
  • SQL Server
  • Windows Vista

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

BraBo

Member List

Jonathan Jeffries
Vatroslav Mihalj
edepicier
rwa
ftball714
sujeeth
Ramoas
Yalix
jimmimacc
Steve Hines
GeuS
jmd
StuUK
Mark Eliason
patria
J Guy Davidson
Lucky2000
PF
HarrisSyed
Scott0620
Only Title

BraBo's Q&A profile

  • Visual Studio Team System Build errors when creating unit test with wizard

    I just installed VS 2005 RC to investigate using the automated unit testing but I can't get the wizard generated unit test to compile.  It seems like there was an install issue or something.  Here are the build errors for a stock wizard generated unit test in CPP: CLogicalServerUnitTest.cpp .\CLogicalServerUnitTest.cpp(6) : error C3083: 'VisualStudio': the symbol to the left of a '::' must be a type .\CLogicalServerUnitTest.cp ...Show All

  • Visual Studio Express Editions How to create a sort of login?

    Hello I want to make a program for certain people and I want it so that they need to enter a code the first time they run the program. The codes would need to be programmed into the program and a certain code would need to show certain info in the program ( for example: if someone entered code 12345 on the first startup the program would show 'welcome name'). If you need some extra explenation just ask. I would like to know how to do this. ...Show All

  • Visual C++ Create Windowless control

    I'm creating a windowless control with a simple line in it. (GdiPlus). Add a mouse event. This is not working in my MFC dialog project. I can see the mouse event, with the add handler wizard, and add it to the code. It is working tough in VB. What is going wrong Doeb Since we haven't seen any reply here, I would recommend trying http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.win32. ...Show All

  • Visual C++ implementaion of unwinding

    I have troubles finding information on this subject, so I'll try to ask here: What kind of unwinding mechanism implementation is used by VC8.0 Is it the same old and slow 'update structure on the stack while we go' (like it was up to VC7.1) Or MS finally decides to go after GCC & others by separating successfull execution path on compile stage (which is significantly more efficient) Bye. Sincerely yours, Michael. ...Show All

  • Visual Studio 2008 (Pre-release) Running self hosted services (WSDualHttpBinding) as windows services (Network Service)

    Problem: If you want to run a WCF service (with any kind of http binding, for example: WSDualHttpBinding) as a Windows service then there is security restriction, the windows service should run with administrative rights (for registering arbitrary namespaces), but what if you would like to run the service as "Network Service" There is solution by using Httpcfg.exe (http://www.leastprivilege.com/HttpCfgACLHelper.aspx) but now the questi ...Show All

  • Visual C++ problem in explicit linking of DLL

    I have made a sample Win32 DLL(not MFC) without using .DEF file(I do not have to include a header file thus).To test that i have made a sample application.It loads the DLL using explicit linking(using LoadLibrary() and GetProcAddress()).To make it work I copied the dll to the folder of the exe.Now, the dll is being loaded(the handle returnd by LoadLibrary() is not null).But the GetProcAddress() is returning a null pointer.I have run the dumpbin ...Show All

  • Windows Forms BackgroundWorker keeps changing my code!

    I think I'm going crazy... I have a VB project with several forms that use BackgroundWorkers.  The code works fine.  However, from time-to-time, VS B2 decides to change the code in my DoWork event handlers.  It deletes ALL of my DoWork code (leaves the Private Sub and End Sub lines) and replaces it with: 'This method will run on a thread other than the UI thread. 'Be sure not to manipulate any Windows Forms controls ...Show All

  • Visual C++ convert int to string

    Hi, I want to make the following code work but I can't find a method to convert the int to a string.  Any ideas   string ErrorMessage( int intRec, string strKey){    return (DateTimeStamp()+ char (7) + "Record number" + char (7) + intRec+ char (7) + " contains an invalid Key:" + char (7) + strKey+ ".\n" ); } char(7) is typecasting the value 7 to some unprintable character, and there is no overl ...Show All

  • Visual Basic Picturebox change forecolor

    Hi!! I'm developing a math (ray tracing) application in VB6, and using .line method to draw between 100 and 100,000 lines in a picturebox.  I need some of this lines be painted in a different color. I use picturebox.forecolor=RGB(255,0,0) in runtime but it just won't change the color the lines are painted!! What can I do   Thank you, Konstantin. This newsgroup is for questions on Visual Basic ...Show All

  • Visual Studio Team System Test Creation Bug

    I have a project for which I am generating some tests on a class which inherits from Windows.Forms.Form. The new project is created successfully, but the following error occurs during compilation (without any changes being made to the generated code): Error 1 Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version=2.0.50727.0'. Tests Anyone have any ideas as to why this happens and how to fix it Jeff ...Show All

  • Windows Forms Implementing Custom Property similar to Location property.

    How can I implement a Custom Property similar to Location property, where user can either provide values to Location (10,10) or drill down to individual coordinated X and Y. Thanks ...Show All

  • .NET Development add resources dynamically

    I develop a visual studio 2005 add-in. When compiling certain projects, I would like some information from the add-in to be embedded in the output file of the project (exe) as a resource. This seemed to me like a simple thing to do, but I didn't find how to just do it right. I tried to build a .resource file using ResourceWriter and embed it in the exe in the post-build, using al.exe /embed or csc.exe /res. However, this replaces the w ...Show All

  • SQL Server Embedded 2000 Package Question/Issue

    Hi All, I am facing with a very intersting question here. I have an embedded DTS 2000 package inside my SSIS 2005 Package. This DTS 2000 package just execute a transfer from a DB2 server to the 2005 server. Its a very simple transfer, without any transformation ( just column to column ). Well, when I edit the DTS 2000 and save it, the package size increases about 100/200kb. It sounds like the package version ( the same as we have in the 2 ...Show All

  • Visual Studio 2008 (Pre-release) GridView representation of XML

    Hi, I am trying to display the contents of an Xml Document in a GridView. An example of the the Xml is as follows; <Table> <Column>Name <Cell>Dave</Cell> <Cell>Pete</Cell> </Column> <Column>Age <Cell>32</Cell> <Cell>26</Cell> </Column> </Table> I want the GridView to look as follows; [Name] [Age] Dave 32 Pete 26 That is, in tabular form. My Xaml ...Show All

  • Visual Studio Additional Toolbox Tab

    Hello I have got a question concerning the grouping of toolbox items in a dsl debugging instance of Visual Studio. Is it possible to add an additional toolbox tab besides the e.g. "Minimal Language" tab. If yes, how do i tell the items which toolbox tab they belong to. Thanks in advance alexander Hi Alexander, This is not really possible with the currently released CTP, but you will be able t ...Show All

©2008 Software Development Network

powered by phorum