Edward Kim's Q&A profile
.NET Development System requirements for VS 2005
Does anyone know what the runtime requirements are for solutions developed in VS 2005 Thanks, Eyvind. Never mind, I found it: http://www.microsoft.com/downloads/details.aspx FamilyId=7ABD8C8F-287E-4C7E-9A4A-A4ECFF40FC8E&displaylang=en " Supported Operating Systems: Windows 2000, Windows 98, Windows 98 Second Edition, Windows ME, Windows Server 2003, Windows XP" Yay! Eyvind. ...Show All
Windows Forms Hosting Windows Form User Control in IE
I created a Windows Form user control that contains an inhouse Windows Form control. I use the object tag in the htm file: <object id="userControl1" classid="http://server/vdir/u.dll#userCtl.userCtl" height="200" width="200" VIEWASTEXT> </object> Everything works fine accessing the page on my local machine via http://localhost/... and http://server/... However, when  ...Show All
Visual Studio Express Editions Exception thrown in a ClickOnce installation
Hi again, Sorry, but I have another ClickOnce problem. My program runs without exception in the development environment, but the ClickOnce RUN version throws an exception in the form.Load event. Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles MyBase .Load Try Dim fileStr As String = "..\Images\" doorPic(0) = Image.FromFile(fileStr + "Door1.gif" ) doorPic(1) = Image.FromFile(fileStr + "Door1S.gif." ) doorPic(2) = Image.FromFile(fileStr + "Door2.gif" ) doorPic(3) = Image.FromFile(fileStr + "Door2S.gif ...Show All
.NET Development Outlook/Exchange
Can someone give me some insight on Outlook <-> Exchange communication. Does each Outlook client poll Exchange every once in awhile and pull information out or does Exchange push info out when somehting changes thanks, -Mike ...Show All
Visual Studio Express Editions Passing values to a function and returning value
Still learning passing values. Could someone check my code so far and see if I am heading in the right direction I am getting value not declared errors and I see it, but not quite sure on where to declare them. Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim A, B, D As Integer A = 1 B = 2 D = 5 AddThem() MsgBox( "Sum is " & c) End Sub Public Function AddThem() Dim C As Integer C = A + B + D End Function The function must pass a value back to the functio ...Show All
SQL Server Financial function
Hello, I seek a solution for the cacule of YIELD TO MATURITY of the bonds. In Excel av YIELD() but SQL server Do you have an idea Thank you Isn't the sigature automatically inserted anymore -- Frank Kalis Microsoft SQL Server MVP http://www.insidesql.de Heute schon gebloggt http://www.insidesql.de/blogs ...Show All
Visual Studio Tools for Office Shared AddIn Deployment problem
Hi I have developed a simple managed com add-in in vb.net for MS Word 2003 which displays two message boxes in OnConnection and OnStartupComplete events. I did make the setup and installed it which is running fine. Now i deployed the same setup in another machine which is having windows 2000 SP4/.Net framework 2.0/word 2003/IE5 only installed on it. It does not displaying any message boxes. I did check the registry keys and i found that when ever i open the word application the addin "LoadBehavior" parameter becomes 2 instead of 3. Can someone please throw a light why this addin loadbehavior becomes 2 Cheers Praveen ...Show All
Visual Studio Team System witexport.exe syntax
I'm trying to export a work item type so that I can modify it in TFS. I'm using the witexport.exe tool with the syntax below. Both indicate that the specified "... work item type does not exist." witexport.exe /f c:\assignedto.xml /t myserver /n "System.AssignedTo" \p "My Project" witexport.exe /f c:\assignedto.xml /t myserver /n "Assigned To" \p "My Project" Suggestions Is there a list of work item types that I can export Or samples on acceptable switch values Thanks in advance. Mark Problem solved. Assigned To is a subset of Task.xml. The syn ...Show All
Smart Device Development CreateFile() only supports 256 characters ???!!!
It seems like WM5 only supports 256 characters creating a file with CreateFile(). However the docs tell otherwise: MAX_PATH, which is supposed to be 260. This works fine under PPC 2003, but with WM5 it doesn't. Is that intended behavior, a bug, or just bad documentation -Stefan Hi, I am a QA in MS. I tried to repro the same as mentioned above by you, and following are the results: For PPC/SP 2003 - Support is there till 258 characters. For PPC/SP 5.0 - Support is there till 255 charaters. Although MAX_PATH is 260, still I am not getting the results. I will report this problem to co ...Show All
Visual Basic Saving files by drag and drop
I wish to implement a system wherby the user saves a file generated by an application by dragging an icon onto a windows folder. As I understand it, the simple way would be to extract the path name of the folder at the termination of the DoDragDrop method and then save the file in the usual way. However, the DoDragDrop method does not appear to return any useful information about the target. (Why not, for heavens sake ) The complicated way is to package up the data as a DataObject before the DoDragDrop method is called but I haven't a clue as to what sort of format is accepted by a windows folder. It won't accept a text string. Can ...Show All
.NET Development Tips and tools for finding out why serialized files are so big
[VS.NET 2005 Beta 2] Hi, I was wondering if anyone knows of any tools that can help determine why (binary) serialized files are bigger than expected Maybe something that graphs the serialized objects in the file If not, does anyone have any tips for finding out I'm sure I can work it out with tracing but it would be good to hear if anyone knows any shortcuts! Cheers, G. RayManning wrote: A converter from the binary format to human readable/xml would still be a nice tool to have. Definately! Thanks for the answers - even if they're not the ones I wanted to hear... G. ...Show All
Software Development for Windows Vista running legacy VC++ applications on Vista
Hi friends, We have legacy application VC++ (COM) built using VC 6.0 on XP machines. On trying to run this on vista,we are bumping into various issues. I want to be able to debug (5308 build) the application on vista. I tried installing VC 6.0 on vista, it doesnt work and our code doesnt build using VS 2005. I tried making debug build on XP and tried running it using VS 2005 on vista. VS 2005 on Vista ( 5308) complains that it cannot load debug symbols, where as the VS 2005 on XP works fine, it loads the same pdb files. Please help. Thanks in Advance I did get Visual C++ 2003 to install succes ...Show All
Visual Basic Blair Allen Stark
Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input. Lab Problem III A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours. The maximum charge for any given 24-hour period is $10.00. Assume that no car parks for longer than 24 hours at a time. Develop a console program that calculate and displays the charges for each customer who parked a car in this garage yesterday. ...Show All
Visual C++ Can functions....
...be nested inside other functions Yes: the compiler is pretty much based on both the ECMA Standard for C++/CLI (ECMA-372) and the ISO/IEC Standard for C++ (ISO/IEC 14882:2003). The ECMA Standard can be downloaded from: http://www.ecma-international.org/publications/standards/Ecma-372.htm ...Show All
Visual Studio Team System list of fixes or improvements for VSTS from Beta 2 release to July CTP version
Hi, Could someone please provide list of fixes or improvements for VSTS from Beta 2 release to July CTP version Thanks, Anu You can find other information about what changed in the following blog post. Info on the upcoming July CTP http://blogs.msdn.com/buckh/archive/2005/07/11/437820.aspx Buck ...Show All
