Software Development Network Logo
  • VS Team System
  • SQL Server
  • Visual C#
  • Game Technologies
  • Windows Vista
  • .NET Development
  • Windows Forms
  • Visual FoxPro
  • Microsoft ISV
  • Visual Studio
  • Smart Devicet
  • Visual Basic
  • Visual C++
  • Audio and Video
  • SharePoint Products

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

gkrups

Member List

gon_no1
Yassi
Haim Cohen
VikasAgr
da Vinci
TaiChiMaster
Jack Robins
Butterflyangel02
Roman Hnatiuk
Alan Finney
Kerry_Dixon
Eric White King
Jsilver
TRTwiggy
hallscreations
MSP.Saami
John_Mac
Bill Reiss
KvRaji
Bdenison
Only Title

gkrups's Q&A profile

  • Visual Studio Express Editions VB 2005 Express and use of subforms

    Hi. I am currently using Visual Basic 2005 Express Edition and I seriously need some help. I have successfully connected a database to a form in VB and I can view data from an MS Access table in a form. The problem I have is that I have two specific tables - "People" and "Person_Contracts", and the Person Id (identifier for People) is used in the latter table to identify which contract belongs to which player. Now, I have included three of the fields from the "People" table in the form and a data grid with data from another table with data relating to the contracts. At the moment, when i view a specific record for a person, the data grid displays all the data instead of specific ones related to the r ...Show All

  • Windows Forms Creating Windows Form based on XSD

    Is there any way or any tool out there that will generate windows form fields based on an xsd An XSD is a definition of the valid tags/attributes an hierarchy of an XML file. It would be extremely rare than you could (or would want to) create a single form to handle data entry of a particular XML file. ...Show All

  • SQL Server Error Msg 7355 While using OPENROWSET in SQL Server 2005 SP1

    I run the following statement: SELECT a.* FROM OPENROWSET ('SQLNCLI', 'Server=MyServer;Trusted_Connection=yes;', 'exec distribution..sp_replmonitorhelpsubscription @publisher = MyServer, @publication_type = 0, @mode = 1') AS a; and I get the following error: Msg 7355, Level 16, State 1, Line 2 The OLE DB provider "SQLNCLI" for linked server "(null)" supplied inconsistent metadata for a column. The name was changed at execution time. My research tells me that this issue was resovled in SQL 2000 SP2. What am I doing wrong This error happens if the result set metadata depends on the parameters and/or can be different at execution time. This is typically the case for results ...Show All

  • Visual Studio Team System Automated Testing in VSTS

    Any suggestions on a test language to use for regression testing I understand VS2005 has automated unit testing, but I am looking for the best tools to create automated box level tests. Thanks, integration is important. I'm assuming more tools will integrate as time goes on, but we're trying to plan our automation now. ...Show All

  • Windows Forms openFileDialog filename problem

       In my application, Users can uplaod picture. Therefore I used openfileDialog.  And also in my database I have two fields imageName and imageLocaiton. When I use openFileDialog I get the imageLocation and sent to the database. But I can't get imageName.  Does anybody know that how i can get imageName     private void Form6_Load( object sender, EventArgs e) { this .uploadbindingSource.EndEdit(); this .uploadbindingSource.AllowNew = true ; this .uploadbindingSource.AddNew(); } private void browse_Click( object sender, EventArgs e) { this .openFileDialog1.Filter = "JPG files(*.jpg)|*.jpg|All files(*.*)|*.*" ; this .openFileDialog1. ...Show All

  • SQL Server implement manual replication between two SQL Server 2005 Express?

    Hi, I need to synchronize the data between two SQL Server 2005 Express. The database is really simple, just few tables (but data are inserted very often) without any triggers. Since Express edition could not behave as a Publisher I was thinking about implementing manually a sort of Replication mechanism... It should be a sort of Transactional Replication with queueud updating. Does it sound a good idea Has anyone done this before o there are better solution Thanks in advance, Stefano hi Stefano, as you already know, the SQLExpress edition does not provide the SQL Server Agent... that means you are completely on your own regarding the actual schedules of replication.. you have to do all manually and no ...Show All

  • Visual Studio Installing VS 2005 - Error code 4101

    Hi All I'm trying to install VS2005 on XP. From Disk 1 it runs thru the initial copies but eventually hits the following error messages which were written to the error log in dd_vserror80.txt. [09/14/06,15:36:15] Microsoft .NET Framework 2.0: [2] Error code 4101 for this component means "Baseline failed. Please check dotnetfx.log in the temp directory for details." [09/14/06,15:36:15] Microsoft .NET Framework 2.0: [2] Setup Failed on component Microsoft .NET Framework 2.0 [09/14/06,15:36:17] setup.exe: [2] ISetupComponent::Pre/Post/Install() failed in ISetupManager::InstallManagerHelper() with HRESULT -2147023293. [09/14/06,15:36:17] setup.exe: [2] Component error string not specified in ISetupManager::AddToActionResultColl ...Show All

  • .NET Development Exception: An established connection was aborted by the software in your host machine

    I get following exception each time i try communicate: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to write data to the transport connection: An established connection was aborted by the software in your host machine. ---> System.Net.Sockets.SocketException: An established connection was aborted by the software in your host machine I have very simple flow: 1. Send synchronized HTTP request 2. Call WEB service API in block mode 3. Send asynchronous HTTP request. The third request always fails no matter what i do. All requests are sent to same host though different servlets. Host machine is running Tomcat WEB service within J ...Show All

  • SQL Server Error Creating DSN using odbcconf.exe for SQL Server

    hi there i want to create a DSN using command line arguments,with Trusted connection=no, Login name= sa password=******* i try creating like this C:\>odbcconf.exe /a {CONFIGSYSDSN "SQL Server" "DSN=blabla|Description=blablubb|SERVER=vsnet1|Trusted_Connection=no |Database=dm"} this work fine, but when i specify the login id & password as C:\>odbcconf.exe /a {CONFIGSYSDSN "SQL Server" "DSN=blabla|Description=blablubb|SERVER=vsnet1|Trusted_Connection=no|loginid=sa|password=sysadm|Database=dm"} this throws an error as CONFIGSYSDSN: Unable to create a data source for the 'SQL Server' Driver: Invalid keyword-value pair with error code :2147467259 I too try the loginID, ...Show All

  • Visual Studio 2008 (Pre-release) Svcutil XmlSerializer Mystery (COM+ Enablement)

    We have a WCF-enabled COM+ application. When svcusitl is run with no parameters other then URL, e.g: svcutil HTTP://CTXWHDEVETSNG1:4999/X/CORPTaxETS_2007/LYWEnterprise.EnterpriseManagerMultiYear.2007/mex the resulting proxy contains [System.ServiceModel.XmlSerializerFormatAttribute()], and Request/Response classes are created for some COM objects but not for others. I checked all possible differences between the objects, and read http://msdn2.microsoft.com/en-us/ms733901.aspx but still can't figure out what triggers the XmlSerializer options to be used by default for some our objects. Any pointers will be greatly appreciated. Thanks, -gn If your data uses XML schema constructs not supported by DataContract ...Show All

  • Visual Basic setfocus

    IN vb 2005 how do I set the focus on a textbox so it shows the cursor(blinking) when the user switches to that page ok I tried TextBox1.Text=Focus that works but it returns a FALSE in the textBox and how do i set cursor position in the textbox Mitch ...Show All

  • Windows Forms how we can get the dataGrid row values....

    1)i want to get the all the values which is enter in the rows 2)i want to display the value in the datagrid which i just enter in the textbox and press enter..... thanks Hi Ather, You would have to use: foreach( DataGridRow row in this.myDataGrid.Rows ) { TextBox first = (TextBox) row.FindControl( "_first" ); String input = first.Text; ... } Good Coding! Javier Luna http://guydotnetxmlwebservices.blogspot.com/ ...Show All

  • Visual Basic Instancing remotely an .Net Assembly from VBScript

    Question from a newbie newbie... Hello, I'm doing an application with 3 different projects, an application for make the configuration, a website for managers to browse the stadistics and a logon script for pick some stats from users and manage network connections, location and other things in every logon. The website, application and script will use a common dll for make all the operations. The application works at the application part and website, still hanging some errors but all it's more or less working. Well, when I make a logon, the login script instances an object and fills the info in the object and gets its taks to do, if there is tasks in queue it makes them and put a log using other remote class with the result. It ...Show All

  • Visual Basic To deploy from Release folder or Debug folder?

    Hello, In visual studio 2005, I have the option to set the configuration manager to output my files to a debug folder or a release folder. Right now by default, it is set to the debug folder. To deploy my vb.net application, would I use the files in my debug folder, or change my program to dump files in the release folder and then use tthe files that reside in the release folder I have used the click once deployment option but finding my application taking way to long to start up after a cold boot, where as if I use the files from my debug or release folder, it starts up fine. Any advice, or clarification on debug and release folders is greatly appreciated. Thanks. Yes. .NET supports the xcopy ...Show All

  • SQL Server Remote connection refused when creating ODBC connection to SQL Server 2005

    When I create a new odbc connection to a SQL server 2005 Db I get a failure telling me dat de SQL server does not allow remote connections. How can I allow the server to allow this. Any help appreciated regards I would recommend looking at the following post, hopefully it already contains the answer to your issue: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=297514&SiteID=1 If the information here is not enough to fix your problem, let us know, we will be glad to help. Thanks, -Raul Garcia SDE/T SQL Server Engine ...Show All

©2008 Software Development Network