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

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

jozeph

Member List

Jose Carlos T. Santos Junior
gon10289
Pete Runcorn
JLBetsch
Dennis Kudin
Barden
Shawn Van Ness - MSFT
Prasad Khandekar
Cryptik
ZhangQing
JJ1983
Gops Dwarak
squirrel_sc
Brandon Evans
Mr. Me
j_jst
A.J. Smith
qpeHukc
ravithegreat
Ming Ding
Only Title

jozeph's Q&A profile

  • Visual Studio Introducing HelpStudio Lite

    The VS 2005 SDK contains a new tool for authoring Help and integrating it with VS 2005. The tool is called HelpStudio Lite. It is lightweight version of the full HelpStudio product, developed by Innovasys . HelpStudio Lite is recommended for anyone extending VS 2005 - for example, by creating add-ins, controls, or packages. You will likely also want to author and include Help content with your extensions to VS. You can use HelpStudio Lite to author your content and compile it to the Help 2.5 (hxs) format, so it can be integrated with VS 2005. The HelpStudio Lite documentation includes details on how to create deployment projects for y ...Show All

  • SQL Server Win CE 4.2 and Smart Dev Application question

    I'm a bit stuck with this one... hope someone can help. I'm trying to develop an application that will run on a pocket PC with Windows CE 4.2 I'm using .Net 2003 and the application is in VB.Net. I can run the application on the pocket pc fine (ie. form paints, buttons work) , until I need to connect to Sql DB on the server. When I try to create a connection object ( Dim dbconnection As New SqlClient.SqlConnection) I get an error stating .. "This application (test.exe) requires a newer version of .Net Compact Framework than the one installed on the device" .... "could not load System.Data.SqlClient.SqlConnecti ...Show All

  • Windows Forms Is the 2.0 Framework required on the deployment server?

    I'm in the process of deploying a Smart Client application via our Windows 2003 servers.  Are we required to install the 2.0 Framework on the servers from which the application will be installed   I believe the answer is "yes", but I just want to make sure. TIA Having the .NET Framework 2.0 installed on the server is *not* a requirement for hosting ClickOnce apps. See http://msdn2.microsoft.com/en-us/library/ms228998.aspx  for more info on server configuration for ClickOnce apps. Thanks, Sameer ...Show All

  • Windows Forms Problems with Batch Update...doh!

    Hi- Here's the scenario. I'm retrieving data from two different tables. Once I get this data I am looping through the data and I have to update a couple columns in the same table. Doesn't anyone know of where I can find a good example of this. I've been looking every where for this.  Example:  Stored Proc:  SELECT IL.listing#, IL.imageID, o.brokerNum, ...Show All

  • Visual Studio Express Editions buid a application!

    have any way to buid an application but don't use framework! thanks!!! NO! Seen this question way too many times. ...Show All

  • Visual Studio Express Editions Build Form Application From Scratch

    I'm trying to create a form application from scratch and I have some questions: 1. Do I create an "Empty CLR project" or an "Empty Projet" from the "General" tab of the Create New Project dialog I've tried both. 2. namespace System is not recognized and I've try to add references under the Project>>Properties dialog, but none show up to choose. What am I doing incorrectly Please advise and thanks in advance.  To create a new c++ form application : New Project --> CLR --> Windows Forms Application that's easy When you create a Windows Forms project, System namespace is alr ...Show All

  • Visual C++ vector problems

    Hello! I'm trying to use vector class in VS 2005 Express. I have #include <vector> and using namespace std; and i still need to do this: std::vector<int> vek; Like this works fine. Why do I std is needed again Using namespace std should be enough. All is in *.h header file. And more important problem. I need to have a lots of 0-1 data(milions, up to 10). I decided to use bit_vector(http://www.sgi.com/tech/stl/bit_vector.html) instead of vector<bool> - size matters for me. It should be included in vector class but its not or I'm doing sth wrong. How to use it/link it/include it Maybe you can recommend other solution for th ...Show All

  • Visual Studio 2008 (Pre-release) Extending DataContext?

    Is it or will it be possible to override the internals of the DataContext I want to alter the object creation implementation in the datacontext to create subclass proxies instead of just instancing the entity types directly. However DataContext seems very black boxish. Im well aware of the claims that non virtuals execute faster than virtual methods etc.. but in this kind of scenario where big chunks of data is fetched from some sort of datasource , those few nano seconds will be impossible to notice.. so that will hardly be a valid argument. Ive seen that there is a "services" collection inside the datacontext , but that also seems ...Show All

  • Windows Forms Bug in .NET 2.0 DataGrid?

    Hi! When I move down with the "down arrow key". Two rows get selected each time.. Anyone else experienced this   Thank you David I have not experienced that particular problem. Only thing that comes close was pressing the tab key once tabbed over two cells. Finally figured out that the "UP" message of the tab key was causing an extra tab, but never figured out if it was a .NET bug or something I was doing wrong. ...Show All

  • Windows Forms Can't have more then 32 links in LinkLabel

    I hope you know already that LinkLabel throws Overflow error if you put more then 32 links in it. The error occurs when painting the LinkLabel (stack trace below) in the SetMeasurableCharacterRanges function. This happens to be known limitation of GDI+ and the potential solution is to chunk the CharacterRange into smaller chunks. I can't understand how it was allowed to publish this control with such obvious bug. Please advise if there is any workaround for this. Also see here: http://www.dotnet247.com/247reference/msgs/52/262907.aspx http://www.dotnet247.com/247reference/msgs/30/153947.aspx     at System.Drawing.StringFor ...Show All

  • Visual FoxPro use the reccount

    hello all  I use "set filter to" and want to know how much record is match the filter condition. I use the "reccount()"  but it return the result is not I want. it is all the record count Hi, i think you will need to use COUNT command instead. RECCOUNT() is not affected by SET FILTER. ...Show All

  • Visual Studio Express Editions Game creation

    Hi, I've been looking everywhere to a place to start me off in learning how to begin programming games. Does anyone know of a good place to start Check these out... Introduction to 2-D Video Game Development http://www.microsoft.com/events/series/msdnvideodev.mspx ...Show All

  • Visual Studio Team System Deployment folder won't get copied.

    In my test project I have a folder with a few xml files which I set the properties to be content/copy always. I added this folder to the additional files and directories to deploy window in my .testrunconfig file. When I run my test, all xml files are copied to the out directory but not the folder. So it basically flattens the directory structure on deployment. How do I tell it to preserve the directory structure Thanks. Great! This is apparently the only option to solve the same problem with generic tests. ...Show All

  • Visual Studio Tools for Office EventHandlers not firing inside ThisDocument class in Word

    I have a strange problem.  I have a Word Document project in which I have wired up an event handler called MedicalDocumentNode_ContextEnter for a node called MedicalDocument.  This normally works great. However, if I access the XML of the word document within my ThisDocument class, by doing the following (as an example): MessageBox .Show(Application.Selection.get_XML( false )); It seems to cause the environment to go out of sync with the event handling and the event handler above does not get called. Any input on this strange behaviour Okay, I managed to solve this one quite shortly after po ...Show All

  • Visual C# simple multi thread in c#

    HI Ok, i understanded what is multithread but can anyone show an example of a simple simple simple program using multi thread or point to a good tutorial Thanks.. You might want to be a little more specific with your question. What are you trying to multithread Are you doing this within a Windows Forms application A web application Each of these scenarios has different factors. And, just to add feul to the fire, I'm of the opinion that multithreading is too complicated for most developers to have to deal with. You know that to non-developers what programmers do is rocket science Well to normal developers, multithreading ...Show All

©2008 Software Development Network