shevi2027's Q&A profile
Windows Forms Click-once application doesn't start
I've having big problems with Click-Once deployment of my application. The application appears to install correctly and adds an entry to the start menu, however it won't run: either from the Start menu or from the web page. The application does seem to work correctly for my colleagues, but not for me (although it used to). I can't see any event log entries, and the application isn't running in task manager. How can I see what is goin ...Show All
Visual Studio Team System Headache converting from NUnit
Our application is dependent on XML files, so as part of the unit testing project we have a folder with sample XML files that are loaded during the tests with commands like: _sessionDocument = new XmlDocument(); _sessionDocument.Load("..\\testxml\\namesession.xml"); Since we build our projects to the bin\ folder (as opposed to bin\Debug or whatever folder may get created for the configuration name) doing the ..\ gets the project ...Show All
.NET Development Can someone please explain to me the "One DataReader" Rule?
I've been trying to find a solution to a problem and while searching the threads I came across the above statement and would like to know where this comes from and where it is documented. What I am trying to do is read from one table in a database - using a DataReader and after some processing, store the results in another using a combination of a SqlDataAdapter and a DataTable. Process is pretty much: Dim Connection As SqlConnection Dim Table1 ...Show All
Visual Studio How to support Temporary Projects
Please teach us how to support temporary projects. Please teach us the topics about temporary projects in Visual Studio 2005 SDK. Best Regards. Shinya Watanabe Hi Douglas, I have created a new thread here - " MPF bug: Solution is not saved when "Save new projects when created" is unchecked ". Could you please have a look at Your input will be much appreciated! Thanks, ...Show All
.NET Development Strange Issue Consuming WebServices
Hi, I'm developping a WinForms application that consumes several Webservices (all of them are in the same server). All WebMethods calls are Asynchromous. When I debug the application, breaking the Common Language Runtime Excetions into the debugger, sometimes I get the socket exception "An existing connection was forcibly closed by the remote host Web service" and then the IO exception "Unable to read data from transport...&quo ...Show All
Visual C++ New to C++, error LNK2001: unresolved external symbol "double __cdecl
Hi, I'm very very new to this. I've been working on a school payroll project. I have to read in an array of structs, process them for grossPay taxes etc, then output the results. Sounds easy... but I keep getting this error: "error LNK2001: unresolved external symbol "double __cdecl grossPay(double,int)" ( grossPay@@$$FYANNH@Z )" I get one of those errors for each of my processing functions. I can't tell if I'm doing so ...Show All
Visual Basic Splash Screen
Vb .net if I create a spash screen and load a new form - when I dispose of the splash screen it kills the entire application. Any ideas or better methods to doing this rich I added it to the form closing event and it worked awesome! Thanks for your help... rich ...Show All
SQL Server Could not find stored procedure 'master..xp_jdbc_open'
Hi All, I am using WebSphere 5.1 and try to setup Datasoruce connection in WebSphere I have selected "Microsoft JDBC driver for MSSQLServer 2000" from the picklist in WebSphere Admin Console. The 3 jar files below are referenced correctly as well: ${MSSQLSERVER_JDBC_DRIVER_PATH}/msbase.jar ${MSSQLSERVER_JDBC_DRIVER_PATH}/mssqlserver.jar ${MSSQLSERVER_JDBC_DRIVER_PATH}/msutil.jar However when I run a testconnection, it fa ...Show All
Visual Studio Team System Getting sharepoint back after Beta 3R migration
OK, I've got Beta 3 Refresh up and running, but the sharepoint sites didn't take kindly to the database migration (apparently). When I try to open a project site, I get an error message: The virtual server that is referenced here is not in the config database. So, presumably something is amiss in the shareport configuration. So far though, I'm having a hard time finding my way through the Sharepoint configuration site. So - Which virtual s ...Show All
Visual Basic Is it there?
Here is what I have in my password form. Public Class PassCreate Dim strPass As String Private Sub btnPassCreate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPassCreate.Click strPass = txtPasscreate.Text My.Computer.FileSystem.WriteAllText("C:\Pass.txt", strPass, True) Me.Hide() PGS.Show() End Sub End Class What I want is If C:\Pass.txt <> exist then create a password write it ...Show All
SQL Server Sql server CONNECTION STRING...
Hi all, I am trying to make a connection string for the SQL SERVER..in all the sites i m getting To connect to SQL Server running on a remote computer (via an IP address) oConn.Open "Provider=sqloledb;" & _ "Network Library=DBMSSOCN;" & _ "Data Source=xxx.xxx.xxx.xxx,1433;" & _ "Initial Catalog=myDatabaseName;" & _ "User ID=myUsername;" & _ "Password=myPassword" but i cant understand where should i write this in the QUERY W ...Show All
SQL Server Product Level Insufficient
I am trying to run dtexec on some DTSC packages I created using SSIS. I keep getting the error "The product level is insufficient for the component". Anybody know what this means Thanks, Michael D. Fox If you do a search of this forum you will find many threads that discuss the usual cause and the usual solution to this problem. Thanks, Matt ...Show All
Smart Device Development Missing assembly information in converted project
This is a rather weird 'bug'. We upgraded a VS2003 Pocket PC project to VS2005. The conversion process didn't change AssemblyInfo.cs and when we go into the new Assembly Information screen in the project properties we see the settings as we set it. When we change it in that property screen, it does change in AssemblyInfo and vice versa. But when we build the project and have a look at the properties of the executable there is no version info ...Show All
Windows Forms datagrid
hello i have a datagrid whose datasource is dataset,how can i insert,update or delete a row from the daatgrid thank you for the time Hi, Does this help: <a href="http://authors.aspalliance.com/quickstart/winforms/doc/DataAccessPlaceHolder.aspx">ADO.NET Overview & ...Show All
.NET Development OLEDB CONECTION ERROR
Me encuentro realizando un programa en VB2005 previamente compilado en VB2003 (en esa version si funciona con coneccion a SQL 2000), pero al querer ejecutarlo en 2005 con su respectivo SQL me da error en la cadena de coneccion. Cual es la forma de escribir la connection string para esta version Adjunto el codigo que estoy usando para mi coneccion Gracias Corsario007 Imports System.Data.OleDb Module Coneccion # Region ...Show All
