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

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

planetx

Member List

SoopahMan
Dave19
melkonian
Lakusha
Pletzky
Petar Petrov
Myron Marston
BogN
Dorny
funkpuppet
MRF
Carlos De Matos
corestar
gamesplant
jbeary
S0nny88
SunLiWei
EvanBlack
DemandPoint
chongqing
Only Title

planetx's Q&A profile

  • Visual Studio Express Editions Visual Express and Workflow Foundation

    Will Workflow Foundation work with VS Express 2005. Kitty Hi Kitty,    Unfortunately, no. The designer (the graphical representation of the workflow) that Windows Workflow Foundation provides will not work with Visual Studio Express. However, you can certainly use the underlying code and markup to author workflows. Check out the Windows Workflow Foundation forums answers for any workflow related questions http://forums.microsoft.com/msdn/ShowForum.aspx ForumID=122 Dennis ...Show All

  • Windows Forms Save position in DataGridView after refreshing

    I have DatagridView on a form. When user click to save changes I save tham and then re-red data agin to reflect latets updates from database. Question how I can return pintor on current record after refreshing Otherwise user clicj save and find himself on first row of DataGridView. It is really annoyning scrol to old position especially on big table Thanks If you are using the BindingSource, you can store the Position to a member variable before saving, and set it after saving/refreshing the data, IF THE SAVE DID NOT CHANGE YOUR ORDER... But I cant stop asking : WHY do you refresh the whole data af ...Show All

  • .NET Development Write Text File with the same Culture

    Hi, I developed a windows form application which writes a txt files with portuguese words with accents. The applications was developed in Windows XP in english and it writes the file correctly. But, when it runs in Windows 2000 Portuguese, the portuguese words have the accents changed to ascii simbols. How to fix it Regards, Marcelo. You need to install the font file in the machine under %System32%\fonts. You probably got the font installed in the first machine with the installation of some application or by enabling some language package but if you don't know you could copy the font file from one machine to the other. ...Show All

  • .NET Development VS 2005 RC1 problem with BackgroundWorker or threads in general?

    Has anyone worked with RC1 and if so, have you encountered any problems with threading and BackgroundWorker specifically.  We are seeing about a 10 second delay before the DoWork gets called.  Also the painting of the forms is sluggish in general.  We have installed this on several machines and have had the same problems on each. Thanks, Hello, Rico Mariani has a great CLR Performance blog available at: http://blogs.msdn.com/ricom/ He also links to a Performance Wiki at: http://channel9.msdn.com/wiki/default.aspx/Channel9.RicoM Those two resources should be helpful in narrowing down where the performance regression is ...Show All

  • Visual Studio Team System Team Build: Delete/Rename/Hide a build type

    While playing with Team Build I created a few different build types just to see what the options do. Now I've got everything sorted, I want to remove these old types so that people don't get confused. How do I go about doing this Just to clarifty Nagaraju's comment. You can use tfsbuild.exe do delete builds and not build types. For deleting build types you need to go through the source control way as described above Thanks -Khushboo ...Show All

  • Visual C# ADOX in c#

    Hi, I need to create the Access File for temporary data. I checked by google and get that I need to use ADOX. But it's activex. Questions: 1) If I am using ADOX, I need Access installed or Access runtime installed 2) How can I use ADOX If I need that Access or their runtime must be installed, I need to know how can I create Access File programatically (in c#) Thank's Alexei Here's an example of how to use ADOX to create an empty database file: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=89600 ...Show All

  • SQL Server Custom Report Item and embedded images

    Hi, I would like to integrate an embedded image into a custom report item. However, I can't find a property which gives access to the embedded images collection. What would be the right approach to load an embedded image within the process method Kind regards Benno Hello, Could you tell me how to create a custom report item that modifys the RDL file. Thanks!! SQLNew ...Show All

  • .NET Development Serialization and regional settings

    Hello all. I have a strange problem with object serialization. When I serialize object with english regional settings it works fine, but on computers with other regional settings it falls because these settings use another decimal separator (I suspect there will also be something else ). Settings Thread.CurrentCulture = en-US helps, but I need something better. Any ideas Thanks in advance ...Show All

  • Visual Studio 2008 (Pre-release) Compile error

    I had the PDC 2005 LINQ Preview version installed and was able to create a LINQ console application in VS Beta 2.0. I ran into the following error in compilation "; expected" in the p declaration using System; ..... using System.Query; using System.Xml.XLinq; using System.Data.DLinq; var EvenNumbers = from p in Number where p == 4 select p; What did I miss Thank you all in advance for your help I found out what the problem was. After the installation was completed, the screen will follow with a page as the link below: C:\Program Files\LINQ Preview\Docs\ReadMe.htm. Go down to the sec ...Show All

  • Visual Studio Express Editions Can't create new project

    All right, no one answered the last post but I absolutely cannot find an answer ANYWHERE! I get that stupid syntax error when I try to create a new project, I've moved the temp folder to a path where there are no symbols and it still doesn't work. What a rip... I wanna learn! Anyone Have you done everything listed in this thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=132012&SiteID=1 ...Show All

  • .NET Development I want the CLR to probe the local folder BEFORE the GAC

    Hi,   I have some assemblies in the GAC.   I am running an exe from a folder, and the assemblies in the GAC are also in the same folder as the exe.   Is there a way to stop the CLR from loading the assemblies from the GAC and load them from the folder (if they are found)   Is there an element I can add to the .config file for the exe I am running to tell it to do this   Thanks. The codebase element in the config file should do what you need http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconspecifyingassemblyslocation.asp ...Show All

  • Visual C# Design Issue

    I have the following forms and the MDIparent can open 3 different types of child forms. MDImain form.    ChildForm1    ChildForm2    ChildForm3 So the MDI has to transfer fileNew() or fileOpen() to each childform since the child knows best how to handle this. Should I use a property to trigger this event from the MDi fileNew_click event Something like    ChildForm1 childform = new ChildForm1;     childform.MdiParent = this ;    childform.setNewFlag(true);  <<===== trigger event in child which can invoke       &nb ...Show All

  • Visual Studio Team System What test framework/technique should one use for testing web pages?

    Situation: I have a number of pages that require passing information back and forth via Query Strings or POSTs. I would like to apply unit tests to each of the components on the page. As an example: http://homesite.com/landingpage.aspx a=UNIQUEIDHERE I want to write a unit test to a: make sure if the correct uniqueID is passed in, it is parsed correctly b: if they key is no longer valid, the page is redirected correctly Options: It would appear that I have quite a few options to do this. A day full of browsing around gives me: Use nUnitASP -- this is ok, but I'm writing all my tests in VSTS, and this would mean it'd be a separat ...Show All

  • Software Development for Windows Vista Questions about state machine workflow and parameters

    Hi there. I have some questions about how to deal with parameters in a State Machine workflow. Parameters as far I know should be passed in the form of Event Arguments in a State Machine, that’s right The example is "inspirated" in the Expense Report sample application, except the workflow type (mostly because the WCF communication)... In the case Event Arguments are OK to pass parameters, I have this EventArgs class: [Serializable] public class FormSubmitedEventArgs : ExternalDataEventArgs { //Form passed to the ExternalDataEventArgs //Use: Asign FomulariosMetodos instance when rising the method. Formula ...Show All

  • Windows Forms BindingManagerBase Deletion is Final?

    I have a textbox control bound to a dataset containing a single table with a single column, on a form with buttons/event handlers using BindingManagerBase to navigate thru the dataset.  I also have buttons to create new records, save changes, delete records and cancel changes.  The exit button checks the state of the dataset looking for pending changes,&nbs ...Show All

©2008 Software Development Network