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

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

jwize

Member List

Jeremy Emery
Mike Rousos
TGrattidge
Randy R Jackson
and_re
richardjjs
danclarke_2000
Jared B
Kannan C. Iyer
ErickLopez
TesmerR
Whatonly
bieblsoft
Plop
YuvvY
Charlie Audritsh
Ro0ke
berwiki
Rick Strahl
Huntz
Only Title

jwize's Q&A profile

  • Windows Forms TreeView in WinForms 2.0 dosen't update itself when nodes are added

    Hi everyone, Within a Winform application, a treeview is contained in a User Control and the User Control is then located within a splitview. When the UserControl added some nodes into the Treeview, the treeview is not displaying the added nodes, it just keep displaying the initial node added to it during initallisation. Tried variious method like TreeView.Invalidate() and TreeView.Update(). The code which adds nodes to the treeview is a ...Show All

  • Visual C++ Has casting to int from double changed completely in VS2005?

    Has casting to int from double changed completely in VS2005 Numbers that are too big are always -1 now. Which has caused me much pain to track down and is not compatible with code we currently use. Here is an example, it used to be that if you cast a big number to an int, you would some value that was related to it in some way: (int)1.0957837e+011 => -2090779696 But now it is always -1 if the value is out of the range of the int: (int)1. ...Show All

  • .NET Development How an assembly in VB can use in Visual C#

    Hi Buddies, Can any one please help me understand to how an assembly in VB can use in Visual C# also, how CLR converts in to native code. Please help. Regards, Vinu.P.K c# crack wrote: Can any one please help me understand to how an assembly in VB can use in Visual C# Because they all compile to the same intermediate langugage (IL) and metadata. The original source ...Show All

  • Visual J# Generating XML documentation for J#

    I'm trying to port a core library written in Java to J#.  It has worked well so far.  But now I need to create .NET compatible documentation for this library, and I'm having problems. I know I can make Visual Studio 2005 generate an XML documentation file for my vjsproj, but I need to do this from a command-line build environment.  I've been playing with MSBUILD, but I just can't seem to find the proper incantation to make it cre ...Show All

  • Visual Basic Can anyone here tell me the shipping date and the price of vb/vwd 2005

    Now I'm kickiing a project, I'd like to dev it using the vb/vwd2005.But I dont know the shipping date and price of vb/vwd 2005 :( Can anybody tell me - Mike Hi, Detailed pricing information can be found from this link: http://msdn.microsoft.com/howtobuy/vs2005/ There is no guaranteed ship date as yet. Last when I heard it was Sept 2005 for the final version. Regards, Vikram ...Show All

  • .NET Development SqlDateTime Overflow Error

    I'm getting SqlDateTime Overflow Error when I try to INSERT a DateTimepicker.Value.ToShortTimeString (e.g. "10:57 PM") into my Sql 2005 database column (type nvarchar50). It used to be a Date/Time type column but I changed it. I changed it in the db, I changed it in the dataset designer but still the same error. How can I make Visual studio forget it was a Date/Time column and allow me to store 10:57 PM as a string Where else do I n ...Show All

  • .NET Development Converting to a string...

    i want to convert a data row value to a string but i get an error saying System.Data.DataRow cannot be converted to a string, how can i do this without getting an error can i use a CType to convert it DataTable table; DataRow row; //Get a DataRow object "row" from your DataTable "table". //Then loop over each column and print its value. for(int iCol=0; iCol<table.Columns.Count; iCol++) {  Console.WriteLine(row[iCo ...Show All

  • Visual J# ObjectInputStream - cast exception

    Hi; I make the call: ObjectInputStream ois = new ObjectInputStream ( new FileInputStream (serFile)); Document correctDoc = ( Document ) ois.readObject(); And get the exception: 1) testTemplates(net.windward.format.wordml.test.TestWordMLParser)java.lang.ClassCastException: Unable to cast object of type 'System.Byte[]' to type 'System.Object[]'.    at java.io.ObjectInputStream.fillArray(Object obj, Int32 len, Class elemType) & ...Show All

  • SQL Server SSMS + *.html files.

    If I try to add a *.html file to the SQL Server Management Studio Solution/Project, there is no way I can open the *.html file within the environment as I would expect from the Visual Studio Environment.  It opens, but it displays the HTML content not the rendered content. E.g. ReadMe.html or History.html which might cover other information not appropriate for *.sql files. E.g. Redgate's -  SQL Compare report files are output in ...Show All

  • .NET Development On Installing WSE 3.0

    This is a new install on a Windows XP Media Center Edition Version 2002 Service Pack2. On this machine I have installed Microsoft SQL Server 2005 CTP which brought in Microsoft Visual Studio 2005 Beta 2. There are no other Visual Studio Products other than the above. When I try to install WSE3.0, I get the message: Error 1772: Problem with installer package. The message is for all options Developer/Custom/ etc. Is there a work aro ...Show All

  • Software Development for Windows Vista Using XPS on non-Vista platforms

    Hi I was reading the MSDN article about XPS, and I'm quite intrigued. I'd like to have a go at using XPS for a document creation system on our internal Intranet. I suppose there are 2 main questions.. 1) I've got VS2005 - can I write XPS documents now Or do I need some other SDKs (eg WPF). Would I be able to view/print them ! 2) When does v1.0 come out, or a go-live license ! Cheers   Dan ...Show All

  • Visual Studio Express Editions button click Event, just can't get it!! HELP people

    i am in the process of teaching myself VB express basic, i am aiming to create a customer information database, for my company and i am getting abit stuck! Problem, i have created 2 forms, on my first form i have my customer information. i have created a button to open the additional form for my client file, and i would also like this button to copy information that has been entered into customer field on the first form and paste it onto t ...Show All

  • Visual Basic try catch with a loop

    I have a Try...Catch in my code and inside that I have a for loop. Now, if one of the loops error out then the whole for loop is forfeited and the code continues. I want to know if there is a way to continue the for loop after an error. What I am doing is setting decimal values with a loop. The values differ every time. Some of them may be too small for the decimal type. The two values that error out are 149 597 870.691 / 10e+24 149 597 870.691 ...Show All

  • Smart Device Development How can I tell if the user clicked the OK on a form

    Hello, Is there a way to tell if the user clicked the "OK" of a form opposed to a button on the form that forced the close of them form, in vb.net I would like to disable the ability to click the "OK" button if possible. Thanks in advance. John What sort of form are you using If you're writing it, you can just remove the OK button. The form returns DialogResult.OK if the OK button ...Show All

  • Visual Studio Is there a way to support dependency between project items?

    As subject. Thanks, Jillaint You say like C# Project. What kind of project do you have Assuming it is your own, then you would need to provide the support for this, and would probably want to also support in your automation model support for ProjectItems having a collection of ProjectItems. Rusty ...Show All

©2008 Software Development Network

powered by phorum