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

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

winterxu416

Member List

Ben Lam97757
MichaelLaw
JohnnyBoyWonder
Jdlee
Wim Bouma
Stephajn
Rob Lorimer
aant10
Samiha Esha
CHWA
Kenny Kerr
Jamie Cansdale
NaveedAzhar
chessmaster
Ming Zhao
???
TJT
_Bandit_
stack
Dipesh Bhattarai
Only Title

winterxu416's Q&A profile

  • Software Development for Windows Vista Tutorial - Lab 4 Ex 1 Tk 4 St 10 & 11

    FYI - I could not get the designer to see Workflow1.OrderEvtArgs (or Workflow1.OrderSender) until I changed the access level from private to public. protected didn't work either. Sound like you have Beta 2.2 installed and the labs you are using were built using Beta 2. There is an upgrade document here that might be helpful for you until the labs are upgraded. ...Show All

  • SQL Server connecting to database

    Ilya Tumanov wrote: Yes, but it makes no sense. To accomplish that you would have to purchase SQL 2000/2005 and pay CALs per device (or per CPU license). If that’s acceptable, simply get rid of Access and use much more powerful SQL you've paid for. Alternative solution is to use Web Service to talk to Access database. Create couple WEB methods to talk to access and call them from device. Something like this should do: DataSet GetAccessData(String command, …) { // Connect to Access DB here, execute command and populate data set with returned data. return dataSet; } ...Show All

  • Windows Forms Dark (abnormal) Selection grabs of controls in a container control

    Anybody who has experienced this and knows the cause Snapshot included. <a href="http://www.freefilehosting.net/play.cfm id=F64D402B-CF1F-D571-A36C5E07BC0698E4">view image</a> I have never seen it but it looks like something either forgot to erase the selection rectangle when it moved, or erased it with an xor in the wrong spot. That is, it looks like two selection&n ...Show All

  • .NET Development Problem with : The type or namespace name 'myDataset' could not be found (are you missing a using directive or an assembly refer

    Hi, I have the following code for my Win Application: private void Page_Load( object sender, System.EventArgs e) { if (!Page.IsPostBack) { SqlConnection con= null ; SqlDataAdaptor da= null ; SqldataSet ds= null ; try { con= new SqlConnection("server=ajaypc;uid=sa;pwd=;database=ajay"); da= new SqlDataAdapter("select * from nm",con); ds= new DataSet(); con.Open(); da.FillSchema(ds,SchemaType.Mapped); da.Fill(ds,"eid"); DataGrid1.DataSource=ds; DataGrid1.DataSource="eid"; DataGrid1.DataBind(); } catch { throw ; } fina ...Show All

  • Visual Studio Can't clear the VSS Working Directory in VSS2005

    In VSS 6.0d, I can clear the working folder for any given project/subproject by simply setting it to a blank entry. This allows me to remove/reset the working folder of a subproject, which in turn causes it to inherit the working directory of its parent. In VSS2005, when I clear the textbox for the "set working folder", the "save" button is disabled. Is there an option to turn this feature back on in VSS 2005 I really miss that! I need to be able to manually control the working folders when using the VSS UI. You can get the old dialog by keeping the Shift key pressed when clicking SetWorking Folders or by ...Show All

  • Visual Basic Transparency seems impossible in Visual Basic 2005 :..(

    Hi, I've been using VB 6.0 in the past, but .gif transparent images were too limited in colors, and .png seems so much better. So I got the beta 2 edition of Visual Basic 2005 (free off Microsoft's website, nice surprise!). The thing is though, transparency like on the image I attached above doesn't seem possible. The transparent pixels just show the form background, not the other image below. Am I missing something here I was wondering what the best way (that's still simple for someone who hasn't programmed in a while, hehe) to make it work In VB 6 a transparent text layer worked perfectly. So for example I could have giant "RELOAD" te ...Show All

  • Software Development for Windows Vista How to draw window system buttons?

    I am trying to draw the standard window system buttons (Minimize, Maximize and Close) but have no luck in drawing them to look like the ones you see in top right corner on Vista. I am creating custom form so I need those. I tried using Theme API but that does not get my anywhere... Question is how to draw Vista style system buttons Are you doing this for Vista or for an XP mock If its for XP, try looking through wingdings for the symbols of the 3 buttons. Have fun!!! ...Show All

  • Visual C# Programtically determine paramaters

    Is there a way to programatically determine the parameters passed to a procedure i.e. given: void Proc1( string cVarName ) { ...determine that one parameter named cVarName is here and it's type is string and then say display it. } As an FYI, I was curious if I could write a generic function for CodeSite to easily dump the incoming parameters of a given procedure. Regards, Nick H You could write a generic function that would take the class instance (this) and the function name as a parmeter to figure out which parameters are there via Reflection. But that does not help with dumping the ...Show All

  • Windows Forms Invalid value for 'OSVersion'

    Error ' Invalid value for 'OSVersion' during Publish application via Publish Wizard. Thereafter no more able to compile the solution/project whitout error Thanks in advance for any hints, ideas.     This error is issued from the GenerateApplicationManifest msbuild task when the OSVersion property passed to this task is not valid. It is expected that the OSVersion property will be of the form "a.b.c.d", where a b c and d are all numbers >= 0. I would suggest turning on diagnostics information for the build to see if you can figure out where the OSVersion is getting set ...Show All

  • Visual Studio 2008 (Pre-release) Modify Window Chrome via templates?

    I've been playing around with Avalon for quite some time. I love it and am really looking forward to what people can create with it. My only gripe is the fact that the Avalon application resides inside a regular window chrome. Now, I understand why this was done, but does anyone else see a need to allow for customization of the window chrome Could anyone explain to me how Microsoft Max accomplished this Finally, I've opened up a suggestion on MSDN Product Feedback. If you think that customization of the window chrome should be allowed without Win32 calls, vote on it! http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbacki ...Show All

  • Visual Studio Team System Webtest - Upload File fails

    Hello, I am using VS 2005 for Software Testers - I am having trouble testing the upload of a file (simple text file) to the server. My .NET code is as follows :- ASPX: <input id="filefield1" type="file" name="filefield1" runat="server"> <input type=submit runat=server id=DoUpload value="Upload" NAME="DoUpload"/> ASPX.VB: Protected WithEvents DoUpload As System.Web.UI.HtmlControls.HtmlInputButton ... Private Sub DoUpload_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles DoUpload.ServerClick And my webtest is as follows:- WebTestReque ...Show All

  • Visual FoxPro How to perform group by and order by AFTER union?

    Hi, I have a SQL statement like this: SELECT * FROM (    SELECT * FROM A     UNION     SELECT * FROM B) GROUP BY 1, 2 ORDER BY 1, 2 Is there any way to translate it to FoxPro 2.5 compatible Thanks. I think you can use this : SELECT * from A ; UNION ; SELECT * from B ; group by 1, 2 ; order by 1, 2   ...Show All

  • Visual Studio Express Editions ClickOnce Install Always Runs Program After Install

    Any way to have Click Once install, but NOT run, the installed program as part of the installation     Ed Tenholder Okay, I found the solution. Change the following Publish Option: Block application from being activated via a URL When cleared (the default), the application runs automatically after installation. Selecting this check box specifies that the end user can only activate the application from the Start menu; this blocks the application from being activated using a URL. This check box is cleared by default. For more information, see DisallowUrlActivation . Ed Tenholder ...Show All

  • Architecture Enterprise Architecture Conference & Service-Oriented Architecture Conference

    I'd like to let your members know that SOAInstitute.org is co-producing two events that may be of interest... The first of 2006 series is coming up April 19-20 in Chicago. The Enterprise Architecture Conference Series presents a holistic approach to the ongoing challenge of aligning functional, data and technical architectures with business strategies. For organizations that are struggling to gain the most from major IT investments, the EA Conference Series delivers new insights into leveraging leading edge technologies, existing systems and business requirements. The Service-Oriented Architecture Conference Series provides senior IT e ...Show All

  • Visual C++ How to find the C++ source lines given a crash address?

    In VS2003 you used to be able to find source code lines from a crash address using the MAP file generated with /MAPINFO:LINES. In VS2005 this doesn't seem to be possible. I have found a handfull of references on the web that say that the source line can be found from the crash address using the exe and the pdb file, but I can't figure out how to do this in VS 2005. The code I'm wanting to debug is a wrapped unmanaged assembly written in C++ called from a main program written in VB. Is this described in any of the documentation, if not then how can it be done Take a look at this past ...Show All

©2008 Software Development Network