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

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

Bennie9425

Member List

Awaneesh
Andy Lichey
Squeaker
MDXXI
Jan_Alexander
zhangshaolin
bhanoji
Neo_xx
AllUltima1
Moso
SteeleWORX
Mohan_info
Kjelle
manthrax
Aarthi
Bradley Grainger
SOYGAMA
twostars
berndS
nsqtr
Only Title

Bennie9425's Q&A profile

  • Visual C++ Is it possible to put a mixed assembly in GAC?

    I have a CLR class library project which links to a .lib file to use the classes and methods of an old library (MFC 6.0 DLL). When I put the .NET assembly in the GAC and run my application I got a System.IO.FileNotFoundException . It seems that when the .net assembly is loaded from GAC it can not load the old DLL anymore. What should I do (I need the .net assembly as a global assembly.) Shadi_05 wrote: I have a CLR class library project which links to a .lib file to use the classes and methods of an old library (MFC 6.0 DLL). When I put the .NET assembly in the GAC and run my application ...Show All

  • .NET Development Best DB for future ?

    Just a quick question... (I'm a newbie to all of this) Right now if you create an application with SQL express, a user has to install SQL to use the app. But I was wondering, with Vista coming up is SQL going to be installed by default, or will a user still have to install it Being new to it all, I just figured I would concentrate on learning what will be most used in the future. If the mdb's are going away, I won't spend my time on them. Thanks... Hi, I do not think that sql dbs will be installed with vista by default. You can deploy them with your application setup. Wether to use access or sql I canno ...Show All

  • SQL Server No grouping?

    Hi to all! To count(something), it is usually required to use a group by function, however, that is not applicable in this case: I would like to select records that have similar values for 'col2' and 'col3', given a certain 'col1', and how many records each 'col1' returns. The following example hopefully makes it clear. The table: Col1 Col2 Col3 ------------------------ s1 A B s1 C D s2 A B s2 C D The result should be: col1 col2 col3 Expr --------------------------------- s2 A B 2 s2 C D 2 I had figured out the not-working-query: SELECT *, count(col1) FROM table as t1 INNER JOIN table as t2 ...Show All

  • SQL Server How do I update multiple base table view?

    I got a view from multiple tables. All tables have a primary key column which are linked in a diagram as relationship. So I have no problem to update this view from a direct editing environment such as 'Enterprise Manager' or 'MS Access'.  I wrote a stored procedure for UPDATE to use it from a client application (Visual Basic .NET) but when I executed this stored procedure from Query Analyzer I get error message :   "View or function 'PartsFab' is not updatable because the modification affects multiple base tables" But what I tried was changing just one column and actually it does not affect mutiple tables. Even ...Show All

  • Visual Basic VS2005 - Localization problems

    Hi, It seems impossible to localize forms in VS2005 (as well as in VB2005 express). What I did : - Set the localizable property of the form to true - Select a language for the form (english, for example) - Enter the appropriate controls texts in english - Select another language for the form (french, for example) - Enter the appropriate controls texts in french - etc. When I switch back to english, half of the text has disappeared ! Is it a known problem in these beat version For test purposes, I tried to do the same things in Visual Studio 2003 and it works perfectly. Thanks for your help. Patrick ...Show All

  • .NET Development Application_AcquireRequestState Execute twice per request

    Code inside of the global.asax file on the Application_AcquireRequestState event fires twice for each request. One the first request I have session state and on the second, I do not. Here is simple test I ran to verify that it is running twice:     Protected Sub Application_AcquireRequestState(ByVal sender As Object, ByVal e As System.EventArgs)         If Request.IsAuthenticated Then             System.Diagnostics.Debug.Print( "Inside Application_AcquireRequestState" )         End If   ...Show All

  • Visual Studio Team System Create Project Visual Studio 2005 Team System

    Hello When i create a team system project, i am an error. the message is csstasks.xml is denied I don't know what i do Please help me lbo Robert, I got the same error, I hope this helps you to find what's the problem : <ReportParameter Name="CoverageScale"> <DataType>Float</DataType> <DefaultValue> <Values> <Value>1</Value> </Values> </DefaultValue> <AllowBlank>true</AllowBlank> <Prompt>Coverage Scale:</Prompt> <ValidValues> <ParameterValues> <ParameterValue> <Value>1000</Value> </ParameterValue> <Param ...Show All

  • Visual Basic getting HTML from a website

    Hi guys, I'm making a project that requires getting the HTML source from a website. I'm not at all sure about how to go about doing this. Any help would be greatly appreciated! Thank you so much in advance! -Robert Robert.... There are women here too. The other two identical questions you asked are in VBE and you marked your question as answered here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=414318&SiteID=1 ...Show All

  • Visual Studio Express Editions Error .exe is missing question

    I'm geting the error messege "Video Studio cannot start debugging because the debug target 'C:\\documents and settings\name\local setings\application data\temporary projects\ConsoleApplication1\bin\debug\consoleapplication1.exe is missing. Please build the project and retry or set the outpath and assembly name properties appropiately to point at the direct location for the target assembly." when i try to run a simple hello world program. How do I fix this Well, that's the problem. If you do a build, you'll get an exe. If your build fails, you won't have an exe. To check, go to the path it's lookin ...Show All

  • Visual C# Auto Generated Settings Class

    Hi there, I was looking for some help/advice regarding the auto generated class that wraps an assemblies settings. We are currently building an application using VS 2005 but are using MSBee to build a 1.1 version assembly. We have hit a problem in that any Web References added through the IDE have cause this Settings class to be generated. As this class is a partial class this cannot be compiled sucessfully under framework 1.1 Is there any way to avoid the use of this code and still add the Web References via the IDE or will we have to go down some other more manual route to add our web references Thanks Andy ...Show All

  • Visual Studio Express Editions I really need a piece of advice...

    Hello again. I am really wavering. I am a developer, windows applications, not web. Until now I used VB6 to build client side user friendly applications. Server side usually are DCOM VC++6 applications (we develop laboratories and quality systems for manufacture). Now I have to develop a new client application, and I would like to try VB2005: I downloaded the express edition to evaluate it. Of coarse I have a lot of code, and tested user interface modules developed in VB6: MDI & treeview interface, graphs and statistics with National Instruments components, reports with excel library, etc. I tried the wizard to convert it to VB2005, but ...Show All

  • Visual Basic Sharing classes between solution projects

    I have created a VB.NET project (Project1) in a solution and I would like to share some of its classes with a new project (Project2) I am adding to that solution. If I right click on the target project, Project2, and add existing items, and then use 'link file', I am able to add a link to the desired class files residing in Project1. However when building the solution I find that I get errors because Project1 refers to the classes with "Imports Project1.MyClass", and Project2 when reading the linked file does not understand what Project1 is. I want to keep the code for each project encapsulated in one exe ...Show All

  • Software Development for Windows Vista Microsoft Platform SDK Feb 2003

    When I try to install this SDK I get the follwoing error: The currently installed SDK is not in its original dirctory.  The installation can not continue. Please go to Add/Remove Programs, uninstall the SDK, and try again. I did have this SDK installed once and I uninstalled it, there must be an .ini or .msi file left over somewhere.  I'm using this with Windows XP, SP2 - Visual C++ 6.0 Hi, Are you installing off of a CD or over from the msdownload site   If you are installing off of the MS Download site, I would recommend clearing your IE Cache before attempting to reinstall the SDK. I would a ...Show All

  • .NET Development Terminating Processes from a Windows Service Cleanly (c#).

    Hi, Recently, I have created a Windows Service in C#; that calls a process (writen previously in c). It starts fine, however im unable to terminate the process cleanly, when the Onstop() is called.   Process.Kill() works, but prevents my process from shutting down cleanly (loses data - that I need). Ideally I need to use the CloseMainWindow() method... but this does not seem to work within a service (as a service does not run an interactive GUI... and does not take advantage of the WM_CLOSE message)... Is there a way to send the process a signal; to enable a clean termination Any ideas Best Regards Rober ...Show All

  • Visual Studio Team System Distributed System template

    Hello, I've just downloaded Visual Studio Team System Beta 2 and started "looking into" the Team System features but was unable to locate the Distributed System Solutions project types when creating a new project.  Where can I find these Thanks, Scott Mead Marking this as the correct answer for now while Jyothi and Scott work on this offline so I can stop getting reminder e-mail every day ...Show All

©2008 Software Development Network