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

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

Guldmann

Member List

odelfim
boyo358
Mark-Allen
J Russell
Quinn Dexter
Mark Rodenhauser
Saurabh Pant
ThomasHo
MamaKike
oldrocketdog
Shariq77
dnenadd
Subramaniyan
colinmit
zas
PatrickFe
SHARANU
Guy Ronen
Gonzalingui
Marco Ferrero
Only Title

Guldmann's Q&A profile

  • Visual Studio Express Editions Need Help

    hi, i know it might seems silly and even i don't expect answer but anyway since Dec 2005 i starting to learn programming with .net i have learned lots of stuff but every thing i try to learn will be like i open a door for hell, every thing even small controls have tons of properties and methods and lots of stuff you need to learn , i know its natural thing to happend when you start to learn new things, and i know i'll not be able to memorize the .net framework 388000 command(method, property ... etc) 2 months and half now i keep reading like dog and have feeling that the way still too long to walk , but realy i feel i overloading my br ...Show All

  • Visual Basic code for toolstrip copy button

    I am a newbie having fun with Visual Basic Express 2005. I am creating a dedicated browser using the WebBrowser control. I have added a toolstrip and created basic buttons (back, forward, refresh, home, print) that work but am at a loss how to get the copy button to work. I realize it will probably require an “if … else” method to ensure that some text has been selected prior to putting it on the clipboard. I have found several resources on copying from a textbox but the text will be copied from a webpage in the webbrowser. Any guidance to help me along in creating the required code to get the copy button to work will be appreciated. ...Show All

  • .NET Development Data drops when reserializing XSD.exe-generated classes using 2.0 framework.

    I gen my XSD /classes with no reported errors, then deserialize my sample data using XmlSerializer. The data structure looks exactly as expected in the debugger. Then I reserialize with XmlSerializer and, again, no reported errors. The output is valid by the schema. I can reserialize it if I like using the XmlSerializer objects, for example. The output just happens to be missing a bunch of elements (it's a lax schema, minoccurs of everything is zero, so this is valid). On inspection it seems to be serializing just the string-valued elements--not the longs, dates or enums. I've tried various types of output to no avail. I've been goo ...Show All

  • Visual Studio Team System Task gap - From Add Existing Team Project to Creating Workspace

    The Team Explorer guides me along really nicely in terms of connecting to a TF server for the first time and then select a project.  However, once I have that project added all the folders are grayed out in the Source Control explorer.  I knew I needed to "get latest version" of the files in the team project into my workspace.  I knew I needed to create a workspace but I was having a hard time finding it in the VS UI.  I kept wanting to go to the Team Explorer <ProjectName> node and right-click on it and select Team Project Settings | Source Control... but for the user I was testing with, this menu pick was gra ...Show All

  • Visual C# Build problems?

    I have a problem with the Visual C# Express Edition Beta. Sometimes when I try to build or debug (which requires building) my project, I get the following error: Error    2    Could not write to output file 'G:\MyProject\obj\Debug\MyProject.exe' -- 'The process cannot access the file because it is being used by another process. '     Using WhoLockMe says that Visual C# is the process that's using the file. This only happens after I've built or debugged the project before during that session using Visual C#, and doesn't occur all the time. Once it happens once though, it will continue until I c ...Show All

  • Windows Forms Comparing types of objects???

    Hi In the following code, I am trying to compare the type of object in obj variable with type of typeInt. int typeInt=0; int a = 1; object obj; obj = (object) a; if (typeInt.GetType() == obj.GetType()) { MessageBox.Show("Int returned"); } I want to make sure if this is the correct way to do it. If not, how else I compare types of two objects Please advice. Tha ...Show All

  • Smart Device Development Date Time changing based on timezones??

    I have a application which passes dates/times back and forth via web services.  The server is EST.  The pda is CST -1 hour.  The PDA downloads the data from the web service and insterts it in SQL CE.  When the user views the info it is 1 hour off. If the user adjusts the timezone on the pda to EST it works fine.   Any help on how to tell the app to ignore timezones Thanks, Aaron OK, and just to be sure, this is right after sl.GetTickets returns And is the conversion 2005-09-27 -> 2005-09-07 a typo, or does this actually happen Anyway, it seems the PDA is misin ...Show All

  • Visual Studio Express Editions How do I test for null date in SQL table?

    Visual Basic 2005 Express: SQL won't permit null dates in a table. I would like to test for this condition and replace the null date with a DefaultDate (01/01/1901). How do I test for a null date in an SQL table The following code gives an error saying that DBNull is a type and cannot be used in an expression. If PatientBindingSource.Current( "BirthDate" ) = DBNull Then PatientBindingSource.Current("BirthDate")=DefaultDate End If The isdbnull method in VB.Net seems to do the trick.   If Isdbnull( PatientBindingSource.Current( "BirthDate" ) ) Then    Pat ...Show All

  • Windows Forms Changing the ListViewItem height...

    Hi, For my ListView with combo boxes in it I need to make the ListView items a little bit higher. The ListViewItem.Bounds property is read-only... Any one has an idea Any suggestion is appreciated! Thanks in advance Gogou What view is your ListView running in - icon, small icons, list or report ...Show All

  • Visual Studio 2008 (Pre-release) Not Logging Msmq Messages

    I have this configuration in <system.diagnostics> section <system.diagnostics> <sources> <source name="System.ServiceModel" switchValue="Verbose, ActivityTracing" propagateActivity="true"> <listeners> <add name="messages" type="System.Diagnostics.XmlWriterTraceListener" initializeData="logs\tracelog.e2e"/> </listeners> </source> <source name="System.ServiceModel.MessageLogging" switchValue="Verbose, ActivityTracing"> <list ...Show All

  • Visual C++ Button

    How would you make a text box say something from clicking on a button I've tried text_box1 = (((text_box2 * 9)/5)+32); But it didn't work. Why What it is getting to you is the on click event method for clicking on the button. What were you expecting by double clicking on the button Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Windows Forms Can't view Form in Designer

    Hi, As i am a first time user on Visual Basic 2005 Express. I had followed the whole Starter kits for new project - after applying the template, surprisingly, there isn't any form (Form1.vb[Design]) and tree view of such form under "Solution Explorer". Since creating the project, the form should pop up automatically. What should i do next Cheers! Hi Ben, Being the beginner on VB2005 Expr Ed, the steps taken, were from the Virtual Tour (of 16hrs long), which i was watching the video (run on Media Player) and applying the steps into creating a desired project. Initially, when Click on "New Project", select ...Show All

  • Visual FoxPro How do i disable an active screen saver?

    Good day to everybody, i have a small program installed in the workstation that is controlled at the server, Can we disable a running screen saver when my program becomes active Example: I send a message to the workstation,... so my program installed there will pops-up automatically....but the problem is, ...when the user did not use the PC in a period of time so naturally screen saver will take-over, and my program pops-up at the background of the screen saver. is there a way to solve this Thank you and more power Not a good idea. Anything that is controlled by Windows should be kept to Windows. What ...Show All

  • Visual Studio 2008 (Pre-release) Sync and Async Support in Proxy

    Is there a way to implement a proxy that supports both synchronous and asynchronous invocation patterns of a service Yes. Please see this: http://windowssdk.msdn.microsoft.com/library/default.asp url=/library/en-us/cpref19/html/P_System_ServiceModel_OperationContractAttribute_AsyncPattern.asp In addition, you can use a duplex messaging pattern to make this work. Thanks, Scott ...Show All

  • .NET Development Rename Root Node in XML

    I am working with C# and having trouble renaming the root node of an XML document.  I am unable to find the objs I need to accomplish this task.  Any suggestions short of string manipulation   Thanks! // Create and populate the XmlDocument System.Xml. XmlDocument xDoc = new System.Xml. XmlDocument (); xDoc.LoadXml( "<xml><node/><node2/></xml>" ); // Create the new DocumentElement System.Xml. XmlElement newDocElem = xDoc.CreateElement( "Renamed" ); // Move the nodes from the old DocumentElement to the new one while (xDoc.DocumentElement.HasChildNodes) ...Show All

©2008 Software Development Network