Jamzb's Q&A profile
Visual Studio 'Can Grow' - Overwrite the down field
Hi, When i choose 'Can Grow' and the field value enlarges at runtime, it overwrites on the field which down. But i need to instruct to move down. How cud do it I am using CR 9.0 dot net bundled Version .noscripthide {display:none;} .noscriptinline {display:inline;} .noscriptblock {display:block;} .scripthide {display:none;} .scriptinline {display:inline;} .scriptblock {display:block;} .script12hide {display:none;} .script12inline {display:inline;} .script12block {display:block;} .lnav {position:absolute;} .lnavch {margin-left:23.0ex;} .hide {display:none;} img {border:0;} img {border-color:#0000a0 ...Show All
Software Development for Windows Vista Documentation for MSH in WinFX SDK January CTP
Hello, I finally suceeded in installing the entire January CTP SDK of Win FX, the run time components, the Vs.NET additions for WWF ,the CTP Of Visual studio .net code named Orcas, Expression (both the designer and the interactive designer). All are working fine and without any problem. But when i want to view some information regarding the documentation, I keep getting this dialog box error. --------------------------- Error --------------------------- A Runtime Error has occurred. Do you wish to Debug Line: 103 Error: Could not complete the operation due to error 80041001. --------------------------- Yes No ------------------ ...Show All
.NET Development System.Diagnostics.Process.Start(). How do I stop leaking handles?
I am launching an executable using Process.Start() and then closing it with CloseMainWindow. It works quite well, but when I use the winXP Performance Monitor I to track handle usage by the application am using up handles with each invocation of the process start/stop cycle. These handles are not being closed. How do I ensure I don't leak resources I have tested the following code as a reduced version of the problem (using the Win2K calculator application) and can verify it has the same behaviour. Can anyone see what I am doing wrong. tia. private void RunTheCalculator() { using (System.Diagnostics. Process calcProc ...Show All
Visual Studio VSTS 2005 (PDC bits) Installation and Running Issues...
I installed the given PDC VSTS 2005 and by the end it sort of failed still it finished the installation. An exception was thrown while "Executing Action: hxMerge_VSCC_v80" and request for the selecton of a debuger by just ignoring the issue it continue with the installation and later told me that it was completed successfully. It happend by the point in where it tried to run VSTS for some reason that I don't know, still on a retry I got the same issue. On both occations it installed the product, still when I run it it just shows the splash screen and goes away. Did some one had the same experience Can some one tell me how to ...Show All
Visual Basic Intellisense Problems
With the Microsoft's own Excel.com Object referenced in the VB 2005 project, I get irratic results on Excels objects, methods and properties from intellisense. Usually the item(s) are ommitted from intellisense. For example, Dim x as New Excel.Application x.columns("A:A").EntireColumn.Autofit () (intellisense stops after x.columns) Do I need addtional references for Excel If so which ones Thanks -Art Hi, Art, Intellisense works off the symbols which are made available to it. In your case, we know that the symbols are available because (I presume) you're not getting an error, so adding more referenc ...Show All
Smart Device Development VS 2005B2 remote app running problems
Hi, I used to be able to run/debug applications on my AudioVox smt5600 using Visual Studio 2005 Beta 2, but now it has stopped working, and I'm stumped about how to fix it. VS reports that the deployment has succeeded. I get the little multicolored pie thingee, but it just goes on and on, and never runs the application. If I navigate to the app via file manager on the device, I can run my app without any problems. If I switch to the release configuration, it doesn't make any difference. I've tried power cycles, making sure the debugger is off, etc. Does anyone have any ideas about what I can do next TIA -- ...Show All
Software Development for Windows Vista DirectShow Redistributables
Now that DirectShow is part of the platform sdk, what are the plans for redistributables Will the new DS features in vista be available on XP ...Show All
Software Development for Windows Vista Error adding a custom activity to a workflow
I defined a new custom (composite) activity as part of a workflow activity library. The library project compiles fine. From within my sequential workflow project, I add this activity to a workflow by dragging it from the toolbox in the designer. I define the required parameters in the workflow that the above activity expects. However I get following error while compiling the workflow project. "error 279: Could not create activity of type 'WorkflowProjectNamespace:WorkflowName'. Could not load type 'ActivityNamespace.ActivityName' from assembly 'ActivityLibraryName, Version 3.0.0.0, Culture=neutral, PublickeyToken=null'. " What gives I have ...Show All
.NET Development Some thoughts about default parameter for C#
I've been troubled by this problem since I started to use C#. I always try to write classes that are easy to use. When I try to write some methods that takes several parameters, I found it was really troublesome to write different overloads. I had to give up some overloads, because there are just too many combinations, when the parameter list is long. And I thought, why not default parameters Anders Hejlsberg explained in an interfiew that they didn't include default parameter because they think it was not necessary. They think it's just feature that make programmer a bit easier, but not some feature that make the language more powerful. Wel ...Show All
Visual Studio 2008 (Pre-release) Peer to Peer Application
hi I am tring to build a peer to peer application using WCF....can any one give me some details about peer channels and how to use it.... Regards Ragu A good place to start would be http://windowssdk.msdn.microsoft.com/library/default.asp url=/library/en-us/wcf_samples/html/31f4db66-edb2-40a6-b92a-14098e92acae.asp ...Show All
Microsoft ISV Community Center Forums Working with Outlook Public Folders from Excel
Can anyone point me in the direction of some example code Instead of sending an e-mail which has a large attachment to a distribution group, I want to post it to an existing Outlook folder. The code will be placed inside an excel workbook, which creates the attachment file. Thanks in advance Hi ADG, Can you please provide a more detailed example for the engineer If you want to send a screenshot you can email me at budsup@microsoft.com . -brenda (ISV Buddy Team) ...Show All
.NET Development Socket Recive Problem
hello, i have a ftp server when the user download a file (in a new thread) and then the user sends "abor" the server recive only "yo" or so but why it recived this But this is only if i connect local on my ftp Which version of System.Net are you using Are you using FtpWebRequest to connect to your server Please provide more details like a code snippet, a network sniff and/or a trace log in the case it is failing and the case it succeeds. Here aredetails on how to get a network sniff : http://blogs.msdn.com/dgorti/archive/2005/10/29/486887.aspx Here aredetails on how to get a System.Net log : http:/ ...Show All
Windows Forms Visual Basic .NET 2003 Drawing Applications
Hello whoever, I am making a basic drawing application for a class that consists of a simple form with a pnl for the drawing area and radio buttons to modify the object size or color. When I create the MouseEvents to draw with, generated handler is for the painter panel. For example, ....Handles pnlPainter.MouseMove The problem is that when I do move the mouse, the application draws on the for instead. Apparently, it does draw in the location respective to where I click on the panel, so 1,1 clicked on the panel draws at 1, 1 on the form. I can make it draw on the form in the location clicked by changing the event handler ...Show All
Smart Device Development Setting Focus during activated event doesn't work.
Hello, I have an application that has a main form which correctly sets the focus during the activate event to the control that I want, however, any new forms that I open will not retain the focus to the control I set. The focus always returns to the form after the activate event is complete. Is anyone else having this issue Thanks Figured out a workaround finally, Put a myControl.focus() call in the gotFocus event for the form. Works every time now. Thanks ...Show All
Software Development for Windows Vista accessing member variables
I have researched this topic on here and have found some useful information but nothing directly related to exactly what I am doing. It is simple really, I have a private member variable declared similar to this ... namespace myWorkflowLib { public sealed partial class myWorkflow : SequentialWorkflowActivity { private string svId; ... There is a whileActivity that contains a sequenceActivity which contains several codeActivities that issues several SQL statements, and depending on the output of the statements, I might want to update this member variable, svId. The whileCondition has its code condition ...Show All
