Jim Katsos's Q&A profile
SQL Server Setup ODBC problem using SQL Express
Hi, I have install Microsoft Visual C# Express Editon 2005 from MSDN site. I have follow this step . Uninstall beta versions Before installing, you must uninstall any previous versions of SQL Server 2005, Visual Studio 2005, and the .NET Framework 2.0. 2. Download and install Download and install Visual C# 2005 Express Edition!! Download Note: Having network issues or need to burn a CD for offline installation Follow the manual installation instructions . ...Show All
Game Technologies: DirectX, XNA, XACT, etc. error 1304 and error 2350
Hi durirng the install process it gives the error messages listed in the subject but i get them the following way: during the coping of the files it comies up with and "Error 1304.error writing to file microsoft.xna.ui.xnastudiopackage.dll verify you have access to that directory" it tels me to cancel or rrtry and i clikc retry as i am the computer admin and it then pops up with the "internal error 235" and i am forced to click ok where it cancels how can i fix this thank you in advance. Note: i tried this with the installer files under my documents and first shared documents. Is this th ...Show All
Visual Studio Team System vssscc file corrupt
Somehow (not too sure how it has happened) the <solutionname>.vssscc file has become corrupt in the Team Foundation Source Control. Performing an h get * in the directory that is bound to the solution folder in source control give an error about nulls in the database on the vssscc item. h get * /force seems to ignore the error and proceed though. This is causing our Team Build to fail when getting the solution out of source control. Any ideas how to proceed Regards Stef Shoffren Okay, I understand then. The file that was corrupted by beta 2 is still unrecoverable even in the converted beta 3 database. By going thro ...Show All
Visual Studio VS2005 and SQL Server 2000
Can I use SQL Server 2005 with VS 2005 beta 2. When I tried to install VS 2005 b2 on the machine with SQL Server 2000 I got an error and my SQL Server EM couldn't connect to my server. Finally I installed VS 2005 on the other machine without 2000. The problem is that if I want to create some websites that are in production I have to use SQL Server 2000. The provider that I know lets do beta hosting doesn't provide SQL Server 2005. So have to use 2000. Any suggestions Thanks Shimon The June CTP version of SQL Server 2005 is compatible with VS 2005 Beta 2. ...Show All
Visual C# c# Insert into Sql
Is there anyway to get the ID of an item inserted into a database at the time of insertion Here's what I mean, I have a database table with 5 columns. First column is called ID, where sql automatically assigns a number. When I make the call from c# it looks something like this. string sqlIns = "INSERT INTO table (name, information, other) VALUES (@name, @information, @other)"; db.Open(); try { SqlCommand cmdIns = new SqlCommand(sqlIns, db.Connection); cmdIns.Parameters.Add("@name", info); cmdIns.Parameters.Add("@information", info1); cmdIns.Parameters.Add("@other", info2); cmdIns.ExecuteNonQuery(); cmdIns.Dispose(); c ...Show All
SQL Server using filters to full text search inside pdf & word documents
how can pdf, word filters be used to full text search inside pdf, word documents using SQl Server 2005 and how to find what filters are loaded. please give a step by step instruction or direct to a comprehensive tutorial. thanks for reading. Please take a look at topic below: http://msdn2.microsoft.com/en-us/library/ms142499.aspx You can install the Adobe IFilter on the server and you should be able to leverage it from SQL Server. You can query system catalog view to get the filters that are available. There are many topics and tutorials in BOL that you can look at for more details. ...Show All
Windows Forms ClickOnce - Update from a Mapped Drive
Hello, Is it possible to have ClickOnce look at a mapped drive for updates instead of a complete UNC path Thanks, Hei ClickOnce should not have a problem. But are you sure that all your users of the app are going to have the location mapped to the same drive all time -thanks Sreekanth ...Show All
Visual Basic display files names in a button in alphabethic
I have visual studio 2003. how can i show, in alphabeth, files names in different buttons without the extension, thanks anyway Could you use the debugger to step through the code Please check whether you get multiple file names in the early code. You need assign different Location for each new button, otherwise, they will overlap each other, and you will only see one of them. Thanks Lifeng Lu ...Show All
Windows Forms Timer Issue
Hey, Usually I am over moderating at ASP.Net, but today I have a question for you guys. I have a timer that just is not firing. Can anyone help Imports System Imports System.Collections Imports System.ComponentModel Imports System.Configuration Imports System.Windows.Forms Imports System.IO Imports System.Data Public Class Alert Inherits System.Windows.Forms.Form Private Timer1 As System.Timers.Timer ...Show All
Visual Basic Access Form in Code from a User Control
I have created a UserControl1 that inherits from the Visual Basic.Net 2005 TextBox Control. A Windows Application Project is then created (named WindowsApplication1) and the UserControl1 is dragged onto Form1 of WindowsApplication1. Question: In the code of User Control how is Form1 accessed In particular, it is desired to place some graphics on Form1 from code in UserControl1. Thanks for any response... Forgive me if I am telling you something that you already know, but I believe that the proper technique is to access UserControl1 from Form1, instead of the other way around as you are sug ...Show All
Visual Studio Tools for Office Saving word doc silently
From within a word doc project in VSTO, I am trying to create and save a word doc to the server without starting an instance of word. Something like this: Private Sub ThisDocument_Startup( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Startup Me .Range.Text = "Hello World" Me .SaveAs( "C:\Temp\WordDocTest.doc" ) End Sub Running this in my local visual studio project opens an instance of word. How can I prevent Word from opening up I could not find any examples in the forum. Thanks for any help, Brian Let me rephrase ...Show All
Visual C++ Debug in Windows NT
Hi, I am using Visual Studio 2005, How do I debug my MFC application in Windows NT Regards Manoj Jangid VS2005 doesn't run under NT I guess that means you can't, unless you can connect to debug remotely. For debugging on anything apart from my dev environment, I would use error logging rather than install VS on lots of machines. For starters, I'm not legally entitled to, I don't believe. Also, it's better to test on a virgin machine and work out machine specific issues through a mechanism that also gives you a way to gather information when a crash on happens on specific *client* machines. And believe me, this DOES ...Show All
Visual C# While Loops and Keyboard Events
In a class I have a while loop that sends out an event while test is true as follows: while(test) { PeriodFire( this , new PeriodEventArgs( true )); } In another class I consume the event and do some graphical work on it. this .timer1.PeriodFire += new ABIS.PeriodEventHandler( TimerOnTick); public void TimerOnTick () { .... Do some graphical work Application.DoEvents(); } I am also using the keyboard Events KeyDown() and KeyPress() to do some work. The problem I am having is that the keyboard events are not being fired. Or if they are, it is only once now a ...Show All
Software Development for Windows Vista Developing apps in Vista
I have WinXP configured with VS 2005 "Whidbey". I want to get ready and start building Avalon applications but downloading Windows SDK is pain due to its size(1.1GB).And this is a pre-requiste before installing WinFX Development Tools "Orcas".After downloading 1.1GB of Windows SDK it has to be burnt into a DVD to continue with installation. And I don't have a DVD writer.Is there any other way out Also I have Longhorn OS installed in other partition configured with VS 2005 "Whidbey" . Do you know what additional software components needs to be installed in a Longhorn OS to develop Avalon/Indigo applications.. ...Show All
Windows Forms Any problem with installing .NET application on a shared network drive?
Hello. Does anyone understand the mechanism of running a .NET winapp from a shared network drive I've tried with a few clients and it seems to be OK. However, how about if 100 clients running the same application at the same time I'm curious that the real mechanism of doing this is when I run the shared application from my local machine, the OS will copy the whole exe file to a temp folder in my machine first or what it does is like Just-In-Time code reading from the network source My app does not need any special call to non-partially trusted assembly as it just reads data from web services and perform some presentation. Thanks for all of ...Show All
