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

Software Development Network >> Jim Lux's Q&A profile

Jim Lux

Member List

jrett
todonnell69
rathor
GatorSP
Albert
MrMad
AbelVR
Russan
Kyuuketsuki
chds
#LS
csheppard
KPC
ChrisWest
Michael (MCPNS)
DamsDev2007
monika
freeskier89
Stéphane Turcotte
mdanshin
Only Title

Jim Lux's Q&A profile

  • Visual Basic Can't select folder of new project

    Can't select folder of new project If I select new project, the default is WindowsApplication1.  I rename it.  However, there doesn't seem any way I can choose where to locate the project.  I created a number of projects in my folder VS2005Projects, so there must be a way. I must have done something that took the choice away. I searched the forums for new project folders, location of new projects and a number of other variations, but there were no useful results. I must be missing something very simple. Can anybody help me dennist Mea Ahuz, as we say in Hebrew.  100%. Thanks. dennist (In ...Show All

  • Visual Studio 2008 (Pre-release) Certificate authentication of a WCF client (Beta2/RC0 release)

    I'm doing the following steps. 1. Create a certificate using makecert and imported to Trusted Root Certification Authorities on my machine. 2. Hosted a HelloWorld service in the IIS and added this in the Web.Config (used the svcconfigeditor tool) < behaviors > < behavior name = " NewBehavior " > < clientCredentials > < clientCertificate findValue = " 5d64429aac414432f2227a036b55bf0def589863 " storeLocation = " LocalMachine " storeName = " Root " x509FindType = " FindByThumbprint " /> < serviceCertificate > ...Show All

  • Architecture User Connection ratio for asp.net application

    I am designing a web application and using some underlying reader classes. I see the number of connections to database are much more than users, may be 5-6 times. I think the number of user and connections should be same or almost same. I ran some vanilla code with out underlying reader class and found out that number of user and connections are same(almost). Underlying reader class use type data set and extend reader class for type dataset for crud operations. I am not creating any thread or starting another connection and try to use the same connection and in fact uses same connection string. Regards, ...Show All

  • Windows Forms Performance and Many Child Controls

    Hi, I have the need for a ListView like control (used in Details mode) that can contain one of several different child controls in each cell. I am using 9Rays FlyGrid as the ListView-like control, and placing a myriad of child controls into this FlyGrid and painting them over the specific cells they "belong" to. My problem is that the scrolling performance of this ListView window is horrendous. I have located the slowdown to the OnMouseDown method (Taking up to 1 second each time the scroll-down button is pressed) which adds up to multiple seconds quickly if pressed multiple times in succession, making it unusable. I a ...Show All

  • SQL Server Can Sql Server 2005 and MSDE 2000 coexist?

    Hello All, Does anyone know if you can create a MSDE 2000 named instance on a server running full Sql Server 2005 (not Express) I have a need to run a program that will not port yet into Sql Server 2005. My guess is that if it is possible, I would need to make it a named instance similar to Sql Server 2000 and Sql Server 7 coexisting using named instances. Any ideas would be appreciated. ...Show All

  • Visual Studio Team System VSS Converter error

    I've installed Visual Studio 2005 Team Suite and tried to migrate a VSS database to TFS but get message that VSS 2005 is not installed. I thought VSS was supposed to come with Team Suite If I recall correctly, the VSTS sku includes VSS, but it is not part of the default install package. If you do custom install and include VSS (or do a full install), that should do the trick (you can also run change/remove on VSTS from Add/Remove programs, and add VSS). If you try that and still get this error, reply back and we'll investigate further. ...Show All

  • .NET Development Improving startup time - force cold start

    Hi, I want to work on one of my application's start up performance and to effectively do that I want to force a cold start everytime I start it to find out what takes really long the first time it starts. So how can I force windows to dump all the prejitted code that it generates the first time the application starts so it has to prejit again after the first start. Also, I was wondering what other techniques people use to find out what takes really long the first time the application starts and where one should start looking for bottlenecks Thanks, Tom I think this article from msdn-magazine could be inter ...Show All

  • Visual Studio Tools for Office Call VSTO Addin functions from external application?

    Hi all, Please pardon me if this is not the right place. I'm looking for a way to call functions in a VSTO Addin from an external application. In VS2003 and Shared Addins, I used to be able to do this using this code in the external app: lole_object = iole_outlook.COMAddIns.Item("OutlookIntegrator.Connect").Object -- synchroniseAppointments() is a publically declared function in the Addin lole_object.synchroniseAppointments(ls_diarynoteIDs) However, when trying this using a VSTO addin, it did not work. From what I can gather after some research, this seems to be just the way VSTO addins are s ...Show All

  • Visual Studio mscorsvw hogs CPU

    I installed .net 2.0 beta 2.  After 2 days, mscorsvw continues to dominate the CPU.  Other process such as logon and Oracle DB take about 3 times longer to execute. This is not a bug please read the following blog post http://blogs.msdn.com/davidnotario/archive/2005/04/27/412838.aspx ...Show All

  • Visual Basic open file dialog box

    I am new to vb, and yes i am a student who has a major project due this wednesday Could anyone give me hand on how to properly code the open file dialog box.. the help files and this msdn site are not very helpful.... (I need to open txt files only in a certain location) Also need help on drawing on the form.... the help files explain how to get the pen to draw certain objects (rectangles, squares, circle shapes basically), I need to draw a line at a certain angle from the x-axis which runs horizontally through the form ( form size 600 x 600) once the line is drawn, I then need to put an arrow on it which i think i saw some stuff on ho ...Show All

  • .NET Development Requests and responses use the same port number (80)?

    Hi,  If I send out 10 concurrent/simultaneous requests from a client to a web service, will the web service process the requests and send out the responses through the same port number (80), or different port number for different request What I observed is, IIS is using the same port number (80) to send out the response. Well, in this way, the problem is, won't this shared port be a bottleneck for the web service For example, I am sending 10 concurrent/simultaneous requests from a client to a web service. And the web service will send back the file specified by each request. If they all go through the same port, these 1 ...Show All

  • Visual C++ HOW DO WE GET CONSOLE INPUT USING getch()

    HOW DO WE GET CONSOLE INPUT USING getch(). it doesn't work in vc++ 2005 moreover can u please tell which header files to use. also please tell what is problem with this code: #include<iostream> #include<conio.h> using namespace std; struct distance { int feet; double inches; }; int main() { distance d1={4,5.6}; cout<<d1.feet<<" "<<d1.inches; _getch(); } IT gives follow ing error: Compiling... main.cpp .\main.cpp(12) : error C2872: 'distance' : ambiguous symbol could be '.\main.cpp(6) : distance' or 'C:\Program Files\Microsoft Visual Studio 8\VC\include\xutility(1652) : iterator_traits& ...Show All

  • .NET Development retrieve data in .net client from java web service

    I have created a client in .NET which is calling Java Web Service. I call the web service with: Serv.Service myService = new Serv.Service(); myService.Url = "http://localhost:8080/saaj/response"; XmlNode doc = myService.getNotebook(idNoteb); int num_childNodes = int.Parse(doc.ChildNodes.Count.ToString()); in Java is request recieved and send it back. I return here SoapMessege , In .NET i don't know how to retrieve these data. i recievd empty doc and int.Parse return error. The Java Web Service is being deployed on Java Aplication Server. please help Thanks Jerry ...Show All

  • .NET Development Collection to store result from multiple tables

    what Collection should i use to store result from multiple tables. I have to view resultset from multiple table in a gridview. I don't want's to return reader. I want's to return my collection in such a way that fields name are binded as column. It shouldn't be strong type collection Any idea. You should use a Dictioary<K, Dictionary<K,V>> or a List<Dictionary<K,V>> The first option is a little more complex, the second one is straight forward - it's a list of dictionaries or a list of tables as you call them. The K is the key you use to access the items in your table. The V is the type of the value stor ...Show All

  • Visual Studio 2008 (Pre-release) svchost.exe

    I received this error on my pc renning windows XP SP2:   The memory could not be read file name svchost.exe   then I can not access the network .how can I solve this matter. thanks  I was getting that message too, and was also unable to go online. I actually updated my virus definitions, and that seemed to work! (Updated - Norton, that is). Good luck! ...Show All

©2008 Software Development Network