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

Software Development Network >> Nick Lilavois's Q&A profile

Nick Lilavois

Member List

ThisBytes5
JRH77
AlanMusicMan
Animas
rhapsodyv
JackNet
Me!!!!
SomaJ
kpthekiller
noel 55
Josh Gammon
winstonSmith
ken w
fatboy401
Earl Bonovich
LucyS
lucasjordan
jchmack12
velibicer
MichaelY
Only Title

Nick Lilavois's Q&A profile

  • Smart Device Development Deploy to Pocket PC 2003 - Connect to device failed

    I am having a problem deploying a very simple smart device application (in fact the has only a single control) to my Pocket PC (Toshiba E355 - Windows Mobile 2003). I consistently receive the following message:    Connect To Device Failed I have also tried to connect to my device as follows: From the Toolbar: Tools --> Connect to Device Selected Platform: Pocket PC 2003 Error Message: Connection failed.  No connectio ...Show All

  • Visual Basic Where are the Navigate Backward and Forward buttons in VS2005 VB Text Editor?

    Hi guys, Does anybody know the answer on this stupid question I get used to click on these buttons in VS2003. It was quite comfortable to get back when I 'Go to Definition'. Now, in VS2005, I have to remember from what place I jumped to Definition in order to get back. I've ticked off the Tools->Options->Text Editor->All languages->General->Navigation Bar checkbox but it didn't help. Cheers, B7 it would ...Show All

  • Visual C# Visual C# Application Deployment

    Hello, Is it possible to create an application with "Visual C# 2005 Express Edition" that can be deployed on another PC running the Windows operating system without the .NET Framework installed on that PC. Thank you, Robert Thanks; Do you mean that any application created with the Visual Studio Express Eddition (e.g., C#, or C++), can only be deployed on anther PC running Windows that has the .Net Fram ...Show All

  • .NET Development System.IO.File.Encrypt do not work

    Hello, I been searching the forum and web and can not find any answere to my question so i am hoping someone can give me a clue to why this simple function do not work for me. Problem i am facing is the function: System.IO.File.Encrypt(path); gives me a exception with -->"inccorect function" i have tryed the following code : System.IO.File.Encrypt("c:\\temp\\TestFile.txt"); System.IO.File.Encrypt(".\\TestFile.txt" ...Show All

  • Windows Forms partly solved

    I installed VS2005Beta2 a couple of days ago, and it has seemed OK so far. Today I tried to make a very simple Windows application just to try out a few things. I made one form with just one button and another form which should open when the button was pressed. So far so good, this worked. However after running it in debug mode and returning to the studio, strange things happen. It seems that every time the following message appears in the ToolB ...Show All

  • Visual Studio 2008 (Pre-release) Interop Between WPF and GDI+

    I want to write a simple application which can capture the whole screen, and this is what I do: private void captureButton_Click(Object sender, RoutedEventArgs e) { Int32 height = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height; Int32 width = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width; System.Drawing.Bitmap captureBitmap = new System.Drawing.Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format ...Show All

  • Windows Forms No FindString method in ListView! What to do?

    Hi All, I had a dapper little ListBox which showed an index of files in alphabetic order. Above it, I had a textbox and when the user started typing in a file name, I could use the ListBox.FindString function and select the first matching file. Now, I also wanted to do some drag and drop and found that ListBox didn't have the DragItem event (and others) but that ListView does. Switching to ListView thus improved certain things. However, ...Show All

  • Visual C++ what is the difference between #include "header.h" and #include <header.h>?

    I'm sorry for what sounds like a dumb question! include "" searches your local directories first, it's for files in your project. include <> searches your external include dirs first, it's for including library stuff like iostream, list, vector, etc. I believe either will work, but in theory you should get in the habit of using "" for local files and <> for library files. ...Show All

  • Visual C++ GetDC function

    "anonymous@discussions.microsoft.com" <lewix@discussions.microsoft.com> wrote in message news:5c171357-414c-4815-a105-05f8076d448d_WBRev3_@discussions.microsoft.com > This post has been edited either by the author or a moderator in the > Microsoft Forums: http://forums.microsoft.com Hi, > i hope i'm not posting a newbie question. > I have to get current DC handler of my window dialog, so (as > ...Show All

  • SQL Server Is anyone using C# and the SSIS Objects to Develop/Modify Packages?

    Anyone out there developing or modifying packages w/ C# and the SSIS objects that I can compare notes with Thanks! Hi, I tried to create SSIS package programatically,I successfully added OLE DB source & destination but got problem in adding lookup transformation. How can I get reference table column output.& how can I set join column property for specific column plz help. ...Show All

  • Visual C++ threads and standard Input (stdin or cin)

    Hello Everybody I am getting the user input using "stdin" from a seperate thread running in application "ABC". The problem I am facing is that when the application "ABC" is finished and user didnt enter any input than a deadlock is created between stdin and fflush. because "stdin" is still running in the thread and "fflush" is called by OS when it is terminating the program even I am terminating the threads explicitly. Any body have any id ...Show All

  • SQL Server Generating XML based on Schema

    Hi, i need Info regarding this Can a stored procedure in SQL Server 2005 generate XML data based on the schema, We don't prefer to manually build an xml string inside the stored proc Is there any SQL Server 2005 feature to do it if possible Can i find any article on how to do this. Thanks, Vaishu How about using "FOR XML AUTO" in your select! select * from tbl1 FOR XML AUTO ...Show All

  • Windows Forms treeview_AfterSelect fires after Validating Canceled

    I have a form with a treeview on the left and a panel with properties on the right. If the validating event on the panel is canceled, the treeview's AfterSelect event still fires, despite CausesValidation being set to Tru on the treeview control. Has anyone else seen this Do you know of a work-around for this problem How are you hooking the canceling of the panel's Validate event to the cancel of the BeforeS ...Show All

  • Visual Studio Team System TFS and named instance of analysis server

    Can TFS access analysis server if it is a named instance if so is there any documentation on this cause I am told that it has to be default instance for analysis server... The reason I ask is we have 2000 and 2005 on a server and we need both versions of analysis server. Thanks much. Refer to http://blogs.msdn.com/buckh/archive/2006/03/29/sql_named_instance.aspx Swamy ...Show All

  • Windows Forms Form Refresh Question

    I've created a simple form (VB.net 2003) to process whole bunch of data from a database. The form asks for some basic information and has a button to start the process. As the program is running, I am updating a label control so that I can see that the program is actually processing records (I'm displaying customer name being worked on). Here is where I'm stuck... While the program is running (ie. not waiting for user input), if I minim ...Show All

©2008 Software Development Network

powered by phorum