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

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

gvollant

Member List

Dopey Coder
GoffQ
nirbhay
FedericoAX
xxxlazyxxx
Ahmad122
Kiumo
Anujapv
TylEray
JavaKid
elmoubi
falcon22
Doctor Owl
Yeghia Dolbakyan
Jeeva_mega
Zero_Cool
TKD BLK BELT
SQ
jhepple
Salman
Only Title

gvollant's Q&A profile

  • SQL Server .NET Runtime error on SQL Server 2005 (RTM)

      I upgraded my primary production server this morning to SQL 2005.  Everything went fairly smoothly, but a couple of hours after my installation was complete, I found the following error in my event log:   Source: .NET Runtime Optimization Service EventID: 1101 .NET Runtime Optimization Service (clr_optimization_v2.0.50727_32) - Failed to compile: Microsoft.ReportingServices.QueryDesigners, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 . Error code = 0x80070002   I am a little stumped since we did not install Reporting Services.  We only installed Database Services, Int ...Show All

  • SQL Server SSIS LOGGING

    Second time around w/this one. I'm running my sqlserveragent with a domain admin account and everything works well. I then switch to a domain user and the package fails. Windows app log contains ths Package "Package1" failed. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp . So I go to the sql server agent jobs and select the job I'm trying to run. I then go to Job Step Properties and under the logging tab choose SSIS log provider for Text files. What is supposed to go in the Configuration String It will let me type a text file in there or choose from one of my "3&q ...Show All

  • Visual Studio Express Editions sample project "addresses" database

    I just downloaded VB Express.   I am a beginner.  In the VBGuided Tour - managing your records, I tried the sample program "addresses" and the 3 addresses came up fine but I couldn't add any addresses to it.  I first hit the add button and blank text boxes came up, then I filled them in and hit the save button but nothing was saved.(that is when I closed the program and then ran it again just the original 3 addresses were there)  I read a few posts about this but now am more confused.  Can VB Express save data or not   If it can what code should be added to the sample project "addresses" so t ...Show All

  • Windows Forms Retrieving rows from childtabel in ado.net 1.1 (net 2003)

    Hi again I'm trying to retrieve the data from a childtable in a relationship like so For Each row As DataRow In DsSPAM1.Relations(0).ChildTable.Rows TmpStr += row.Item("NaamGebruiker").ToString.Trim & ": " & _ row.Item("StatusOmschrijving").ToString & vbCrLf Next But this gives me all th record and not the records related to the record in the parent table. tnx and regards Remco VKH txn got it working. pretty ugly but it works stapRow As DataRow   stapRow = CType ( Me .BindingContext(DsS ...Show All

  • Visual Basic grid event

    hi! when I changed row in grid, I want to know which event what do u mean by row changed, is that values in the row or focus of the row in the grid, or something else ...Show All

  • Visual Studio Howto create multi-tabbed view?

    Zitat from help (topic Logical View and Physical View): "Editors can also create multi-tabbed views on one DocView object, like the HTML editor, which has an HTML tab and a Design tab." How to create multi-tabbed view Which interface is responsible for ( IVsMultiViewDocumentView is optional and not suitable) I read the docs differently, from the doc location Visual Studio Integration->Editors->Document Windows and Editors->Logical views and Physical views, aka ms-help://MS.VSIPCC.v80/MS.VSSDK.v80/dv_search/html/e3611704-349f-4323-b03c-f2b0a445d781.htm IVsMultiViewDocumentView is an optional interface that objects sited in a win ...Show All

  • Visual Basic multiple button with 1 method

    hi there, i have set of 5 buttons, and i would like to use 1 method to listen to these 5 button's click event and display the particular name of the button when i click 1 of it using messagebox, i have no idea how to implement it, can anyone show me example: when i click Button1, a messagebox will prompt and show me  "Button1", so as well for others Private Sub Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click, Button2.Click, Button3.Click, Button4.Click, Button5.Click        :        :        : End Sub thank yo ...Show All

  • SQL Server can i use SQL server 2005 standard to create and host db for website?

    Hi guys,    I am just wondering what's the difference of sql server 2005 standard and enterprise editions. can I use SQL server 2005 to host a database for a website     Thanks!   Daren   You can find an overview of the features on the Microsoft website ( here ). Hosting a database for a website on a Standard Edition is perfectly possible.  Enterprise Edition is for really large environments, so if you are expecting millions of hits per day it might be better to use EE because of it's extra features for high level/load databases.  But a lot of data ...Show All

  • SQL Server SqlServer & Visual Studio

    For a new programmer, we set up the SqlServer Desktop engine on a PC and installed Visual Studio. The DB uses Windows Authenication for access control. The database was populated using backup/restore from a the desktop engine on a different PC. The programmer logs into the network using his own ID & password. In the Server Explorer window of VS, he can not create new objects (e.g. when right clicking on Views, the "add new view" option does not appear). However, if he opens the Enterprise Manager, he can create new views and functions, but these additions do not become visible in the VS Server Explorer. (It IS the same database; we ...Show All

  • Visual C++ Network deployment VS2005

    Hi, Does anyone know how to invoke VS2005 cl compiler from a machine that does not have VS2005 installed I've copied all the content of c:\Program Files\Microsift Visual Studio 8 from another machine with VS2005 installed, and set the include, lib, bin path correctly. But when I started a dos prompt and try to invoke cl.exe, I got ' The system cannot execute the specified program' . Interestingly, I found a file named 'cl.exe.config' in c:\Program Files\Microsift Visual Studio 8\VC\bin directory, I suspect it has something to do with invoking the cl compiler. The idea of this exercise is our source code is resided in a network ...Show All

  • .NET Development Stop a windows service on a remote machine

    Hello, I have to create  an application on my machine(A) to start/stop a Windows service on another machine(B)  connected through network. I have used the System.ServiceProcess.ServiceController object. It provides two properties to specify the 'machine name' & 'service name'. But when I use the ServcieController object's "stop" method, I get an error indicating that I don't have the permission to do stop a service on the machne(B). My questions: "In case, I do know the administrator login & password of machine(B), how can I enter those credentials and stop the service on machine(B) through machine(A) " Also,  ...Show All

  • Visual Basic Common Forms/Modules

    Hope I posted this in the right area.  In the VB6 world we could have common Modules and/or Forms which were used in different Projects.  These Modules/Forms were in different Directories, which were add to the project.  When you made changes to them, the changes were reflected in all projects.  Under VB 2005, is there a way to have do the same thing   I Have tried, but it just moves the Module/Form under the Solution folder.  Any changes I do are not reflected back to the orginal Module/Form.  Or is there a better way under the .net world Thanks Larry Gatlin Great, I kne ...Show All

  • Visual C++ Cannot compile abstract ref classes with private pure virtual methods

    The following BaseClass defines an abstract class with a public Description property that invokes a pure, virtual description() method. The DerivedClass is a sub-class of BaseClass and implements the virtual description() method. I want the description() method to be private, but when I try to create a DerivedClass, the compiler balks, calling DerivedClass abstract because of the description() method. When I declare the description() method as protected or public, it compiles and runs without errors. Having a public interface and a private implementation is one of many ideas I've used from Herb Sutter's books. This works fine in native c ...Show All

  • SQL Server Error encountered while installing SQL Server Express Edition

    I encountered an error when attempting to install Visual Basic Express Edition RTM. During the setup, I selected MSDN Express Edition and SQL Server 2005 Express Edition. Specifically, the SQL Server 2005 EE part of the installation failed. Here's the error I received: Visual Basic 2005 Express Edition Setup Error occurred during setup Visual Basic 2005 Express Edition has been successfully installed. The following component failed to install: Microsoft SQL Server 2005 Express Edition x86 I had not installed any betas on this particular PC; however, I had already installed Visual Studio 2005 Pro and SQL Server 2005 Developer Edition. ...Show All

  • SQL Server Foreach Loop Container in SSIS

    Could someone send me any links or information on how to loop through an ADO.NET dataset in SSIS I need step by step information please. Thank you, Shiva Here are BOL topics that might help http://msdn2.microsoft.com/en-us/library/ms187670.aspx http://msdn2.microsoft.com/en-us/library/ms141724.aspx http://msdn2.microsoft.com/en-us/library/ms140016.aspx Some other helpful links http://www.whiteknighttechnology.com/cs/blogs/brian_knight/archive/2006/03/03/126.aspx ...Show All

©2008 Software Development Network