Ondis's Q&A profile
Smart Device Development Custom Build Rule "works" but makes project undeployable
I am trying to use a Custom Build Rule to build assembler files, much as described by Jeff Abraham and I am kind of running into the same problem. The rules files only differ on the extension used and some quoting practicalities. I don't agree with Jeff's analysis of what is going on however: An unfortunate side effect of this build rule is that you end up deploying the .obj produced, because it becomes a project output As far as I can see it ...Show All
Visual C# Dynamically moving controls
I have six panels, each panel contains a textbox and its label. Each panel has a checkbox associated with it on the form, but outside of its respective panel. I only want the panels whos checkboxes are checked to be visible. If another checkbox is checked, I want that respective panel to be displayed directly under the last panel displayed. Once that checkbox is unchecked, I want the panel to disapear, and all the other panels that come after, t ...Show All
Visual Studio Team System How to create a new Report in Team Foundation Server?
Hello everybody, I know someone has already asked for, but I believe is one of most common and unexpressed questions of this forum.... Is there's any guide, walkthrough or similar which explains how to create a new report for a project in TFS Hi Paolod here is a link to a bunch of walkthoughs concerning reporting and other topics of Team System / Team Foundation Server. Thanks, Tom ...Show All
.NET Development sock.SetSocketOption does not work.
Trying to execute sock.SetSocketOption statement I get this error: An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call This is the actual code: try { // create a socket instance sock = new Socket ( AddressFamily .InterNetwork, SocketType .Stream, ProtocolType .Tcp); // create server IPEndPoint instance. We assume&nb ...Show All
Visual Basic Customizing the XML documentation stub?
I'm using VS 2005 Beta July CTP. Is there any possible way to "customize" the XML documentation stub. In other words, currently when I type ''' I get this: ''' <summary> ''' </summary> ''' <param name="RowIndex"></param> ''' <remarks></remarks> but I would like to be able to have the stub generated with additional information and tags, such as: ''' <summary> ''' & ...Show All
Smart Device Development hide today icons....
is there a way to hide all the today icons and then have a button in the tray that show them... what device are you working with, for starters on my Treo, shortcuts show up at the top of my start menu, on my 2125s, it shows up on the today screen ... you are talking about the quicklaunch bar (I think that's what it's called ) ...Show All
Smart Device Development Launch Excel
Is there a way to launch excel (or any other application) programatically in C# on a PPC so that it occupies only part of the screen Thanks buddies, Pete M There's a way to launch application via System.Diagnostics.Process class in NETCF V2 or via OpenNetcf.org equivalent or P/Invoke CreateProcees() in NETCF V1. However, they would most likely occupy entire screen as that's how Pocket PC applications are ...Show All
Visual Studio Express Editions Help me with importing c++ dll functions.
Hi, Im trying to import these functions from vb.net but i dont know what WORD and so on would be in vb.net and how I would call them. ////////////////////////////////////////////////////////////////////// // Decrypt Message From FrontCode Peer Cache Server // // Parameters // pSrc : (IN) Message From Peer Cache Server. Buffer must be 132 bytes. // pDst : (OUT) Primary Node Addresses. Buffer must be 120 bytes. // // Remarks // Node Address St ...Show All
SQL Server SQL2K5 SP1-CTP fails while upgrading "Database Services"
Hello. I'm a little confused what went wrong on the SP1-CTP upgrade. Now, all three times I installed SP1-CTP, it failed to upgrade the "Database Services," but possibly for varying reasons Attempt 1: Received message about Pending Reboots, message about Full Text .dlls being locked. Stopped Full Text service, selected "Try Again," received "Failed" for "Database Services" component; successful for all other components. Rebooted. ...Show All
SQL Server How to create a new SINGLE file .mdf in SSMS?
It is easy to create a new .mdf in VS "add new items" or via the connection GUI. How do I do that in the full version of SSMS(connecting to the SSE instance of course) What about if there was no SSE, only a full version server instance. I know I can attach an existing .mdf, but what about creating a new one Thanks for the reply - Steve.. As soon as I get some time to look into this ...Show All
Visual Studio Team System tbl_WorkspaceLink ??
Hi, I saw in the DB - TfsVersionControl that there is table called tbl_WorkspaceLink. What the responsibility of this table There is any way to create link to some WS Thanks in advance, Shmulik. Hmm I don't know waht this table can be, it's also empty in my case ( Iahve three TFS projects for demos) But are you planning modifying it directly hmmm I don't think it would be good idea ...Show All
Visual Studio Express Editions How can I do reports with my visual Basic Express Edition?
I would like to do charts reports with my visual basic Express edition. I'm seeing a number of issues like this. I wonder if the user community is not forgetting the intent of Visual Basic Express It's intended for hobbyists and people who are learning computing. It is not intended for production use. ...Show All
Visual C# Enterprise Logging Block
I wrote code to use the logging in the Enterprise Library. In the configuration application, under Logging Applcation Block, there a setting called 'TracingEnabled'. When I set this to false, I STILL get my logs written to. Looking that the Logger class, I found the IsLoggingEnabled but the TracingEnabled setting has not effect on this method. How can I get my logging to not write to my log files with TracingEnabled is set to false. ...Show All
Visual C# Save Combobox items to file (not .txt)
I have a program which has 46 diffrent combo boxes. The items in these boxes change according to what the user selects (ie Box35 items changes according to what item is selected in box 30). What I would like is for the user to be able to set all the combo box items the way they want, click save, and the program save them to a file (pref not a text file, XML maybe ). I can sort of conceptualize the saving of each "item" of every combo b ...Show All
.NET Development Use JScript from code
Hello, I have a few question about using JScript from code. In early versions this could be done by using the scripting runtime DLL by adding code and objects to a moudle and running the code after it. my question are: 1. How can I do it with .net - I mean adding objects and code to a module and running it. is there a code example 2. Is there a way to parse the script before, or I must run it to know if it is written correctly 3. ...Show All
