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

Software Development Network >> Jo?ko's Q&A profile

Jo?ko

Member List

Nate Hekman
RchiTekt
Joe Beer
nmasao
drlarsen
bdubyah
MunjalD
Pumkiny
Alan van der Vyver
Jerry Zhang
Kanus
Eric Geil
Jat the great
Armin_
Constantin Mihai - MSFT
Lyle Bullock
CookieRevised
Morten Jokumsen MVP
Peppy
Dmitriy Vasyura - MSFT
Only Title

Jo?ko's Q&A profile

  • Smart Device Development debugging problems with Activesync/visual Studio .NET 2003

    I have a recurring problem debugging on my device with Visual Studio .NET, and I'm beyond desperate to get it resolved. I am able to connect to my device using Activesync. I can copy files back and forth. I have put the appropriate toolhelp.dll file in the windows directory. I have set the appropriate CPU type, and gone through every Microsoft tutorial I could find. No matter what I do, when I try to connect to the device it says the device is n ...Show All

  • Windows Forms If you can answer this Overrides Question... you're brilliant and probably way underpaid

    I have a treeview control on a form. The TreeView control automatically as part of the .NET framework contains and uses a TreeNodeCollection, which of course you gain access to using objTreeView.Nodes I am able to override the TreeView control without breaking the tinyest of a sweat. Public Class MyOwnTreeView Inherits System.Windows.Forms.TreeView ... End Class Well here's the EEEnormously HUUUUUGE dilemma where MASSI ...Show All

  • Visual Studio Express Editions ListView sorting question

    Hi I have a ListView control called HSlist on a form which has 3 columns. The adding data seems to work OK, but the sorting is weird to say the least. Initially, I thought that the list would be sorted on the contents in the first column, so I added to the ListView with the Item containing the data that I wanted the list to be sorted on (numerical). Then I found that the list was being sorted on the second column (strings), so I swapped th ...Show All

  • Windows Forms ExpandableList Paint Bug

    1) Start IssueVision 2) in the middle pane select the top item in the second "Computer" group. 3) Then click on the last item in the above group "Telecommunications." Notice you'll see the list "jump" and draw the Telecommunications group  ...Show All

  • Visual Basic Datetime.op_GreaterThan vs hours in date

    Hi, very simple question: Have 2 date fields:  me.futureDate = #05/30/06 07:30AM# and date.today #05/30/06#. Both dates are today, so to me this is the same, but when I try this line: DateTime.op_GreaterThan( Me .FutureDate, Date .Today), the result is true I think this has to do with the 7:30 AM with is more than the current date. When I try this we end up in the else clause:  if Date.Today > Date.Today then 'here ...Show All

  • SQL Server Package config errors - VS_NEEDSNEWMETADATA

    Hi everyone, I am having issues with using package configurations when just chaging the ServerName and InitialCatalog vars of a Connection Manager.  I have DelayValidation = True on the Data Flow Task that is erroring out, but I am still recieving a VS_NEEDSNEWMETADATA error before the package is executed.  The 2 boxes have identical tables I'm trying to access, although 1 is 2005 and the other is 2000.  Any thoughts   I thou ...Show All

  • Visual Studio Team System TFS without Active Directory

    We haven't upgraded our Microsoft network to Active Directory yet. Is there any other way we can install TFS or VSTS Thanks Andrew, It is not necessary to have Active Directory at all, it is possible to install TFS in "workgroup" mode using local Windows accounts. You can take a look at the TFS installation guide for step by step instructions. For workgroup mode, you will need to install t ...Show All

  • Visual C# ArrayList filled with non-string objects to array of string

    Could you tell me, please, if there is an opportunity elegantly convert ArrayList filled with objects of some class to string array Example: class Point { int x, y; public Point( int x, int y) { this .x=x; this .y=y; } } // ... static void Main( string [] args) { ArrayList p= new ArrayList(); p.Add( new Point(2, 3)); p.Add( new Point(5, -2)); string [] result=( string [])p.ToArray( type ...Show All

  • Visual Studio Team System how to enable Fxcop

    I have a solution with  - a number of classes  - a website  - a httphandler  - a http module I want to run fxcop on my class files - but cant find out how to enable it. I've looked at http://msdn2.microsoft.com/library/ms182066(en-us,vs.80).aspx  - but is still lost. The only thing i can do is "enable fxcop" on the website properties page. But it doesn't do me no good You're correc ...Show All

  • Visual Studio Express Editions Best way to do something

    I have a project and I'm not sure the right way to go about it - I'm after some ideas. Basically it'll be a program that takes ad bookings for a magazine and allows them to be placed on pages in magazine editions. I'm thinking of setting up a class for ads, pages and editions but my problem is that an edition will have properties like date, magazine, number of pages but also contain an array of pages then a page will have properties li ...Show All

  • Windows Forms Building A Windows Application

    Hey people I am a total newby to Visual Studio. I only know PHP programming. But I want to build Window Applications. I have watched the video tutorials. on the MSDN site. but it does not teach me any code really, as it is always pasted. What I want, I am currently skint (Have no cash) and I am looking for some cool tutorials. Where I can actually build something. I have seen so many tutorials which tell you something, but if you building some a ...Show All

  • Windows Forms Cargar un formulario desde un parametro

    Me encuentro creando un menu dinamico en vb2005, donde los nombres de las formas se encuentran en una base de datos y deseo ver si se puede pasar el nombre de la forma como parametro para cargar dicho formulario algo asi Private Sub FormaLoad(ByVal StrFrm as String) Dim MyForma As String = StrFrm Dim Cargar as New MyForma MiForma.showDialog() End Sub Espero me puedan ayudar o dar su recomendarion, mi cuenta ...Show All

  • Smart Device Development Can't use buttons on SmartPhone

    I have installed Visual Studio 2005 and i want to do a program for a smartphone. I did double click over the buttons of the image of the smartphone and the program create a code. I write mi code in each of the events of the buttons but when i compile the program the buttons in the emulator the buttons don't do anything. i did the same process in the for a program in a pocket pc and all was good. What should i do ...Show All

  • Visual Studio Team System Add Users to Global Group AND/OR Porject level groups CAN NOT find DOMAIN outside build server

    Add Users to Global Group AND/OR Project level groups CAN NOT find DOMAIN outside build server ---------------------------------------------------------------------------------------------------------------- Per Pete Sheill Alert of Wednesday, February 22, 2006 4:18 PM - I am advised to use the Team Studio GUI interface to add users to appropriate projects/groups for Build.Notification. I search for the applicable MSFT web page about Addin ...Show All

  • SQL Server TRY/CATCH SQL 2005

    Yes, you can insert any T-SQL statement or statement block inside the CATCH. You can, for example, nest another TRY ... CATCH block inside the CATCH. Andrew Watt MVP - InfoPath wrote in message news:426511f9-2c97-41ec-9133-63c6ab4aebfe@discussions.microsoft.com... > What can you do in the CATCH IOW, could I try to do an insert, get an > exception, and then insert the ROW into some other table inside the > CATCH instead > > ...Show All

©2008 Software Development Network

powered by phorum