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

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

primal

Member List

Jean-Pierre
Basic
Reshu
wp416
Winnie123
Mr.Nam
Royman
marcelv
Sstar
vczombie
Jimvh28
patel_mitesh
Adam_C
wingbyte
NickP001
LoriC
dogboy ff
Svennis
Jcwf
Rory Plaire
Only Title

primal's Q&A profile

  • Smart Device Development Unable to run compact .net application on some PPC devices

    We are having trouble running .Net applications on an iPAQ rx1955. We have installed Compact .Net ( I thought all Windows Mobiltiy 5.0 devices came with Compact .Net). And when we run a simple Hello World application compiled for either 2003 or 5.0 they do not work. They do nothing. The thiking icon flashes for a few seconds and then nothing else takes place. We have had other people with this problem on other HP devices and never found a solution. Does anyone have any thoughts on what could be going on here Does anyone know what is the percentage of devices with PocketPC 2003 and 5.0 that do not come with Compact .Net as the default. ...Show All

  • Visual Studio Express Editions USBs, COM ports ...

    How do I get my program to receive a binary file from a external device, analyze (compare) that binary and react to it. Can I get some help (in VB) about the code that I should use. I'd prefer COM ports but USBs would work. I know how the comparing should look like but I don't know how to store that data and get it! Any help You better start by deciding what kind of connection you'll make to the external device. From there, we can give you some help. PS: don't forget about TCP/IP if that's an option... ...Show All

  • Smart Device Development database entegreted

    hi i am mehmet my questions about smart device applicaton database connection i am writing code about smart device connection database but i want to entegreted my computer database (sql server) with pda database for data. data transfer from pda database to sql server on my computer thank you Hello Mehmet, I didn't completely understood your question. Did you want to sync your PDA database with your database on your computer If yes, then you can use active-sync to sync database between computer and PDA. -Thanks, Mohit ...Show All

  • Smart Device Development VS2005 always deploys framework files

    I am developing an application for SmartPhone 2003 using VS2005. When deploying the application VS always copies the standard framework files (System.dll, etc) to the target application directory even though these are already in the GAC.  The app runs fine on the GAC files if the files in the app directory are deleted.  Any way to stop this download (to save time and space on the target machine, especially if multiple apps are under test) What do You hit build or deploy because if you hit deploy it should only copy the program files and send them to your mobile device but if you hit build it will s ...Show All

  • Windows Forms Documentation links

    FYI- It looks like several of the documentation links at  http://www.windowsforms.net/Terrarium/docs/ObjectModel/OrganismBase.(none).aspx give error messages.  For example click on the 'Animal' class.   oh, great!  looks like it's been fixed.  Thanks! ...Show All

  • Visual Studio Team System Enabling code analysis is not an option in VS 2005.

    I have visual Studio 2005 installed, and I have read the MSDN article(s) that say how to enable code analysis, but guess what, there IS NO code analysis tab when I go to my project properties. There is nothing anywhere on any tab in project properties that says anything about Code Analysis... so my question is... where the @#$% is it Any help would be fantabulistically cool. Thanks any and all. Hi, Code Analysis is only available in the Visual Studio 2005 Team Suite and Visual Studio 2005 Team Edition for Software Developers sku's of Visual Studio. Regards, Jeffrey ...Show All

  • SQL Server The error is (17058): SQL Server 2005 Express Edition 9.00.1399.06 install work.

    I have encountered an error (as shown below) when attempting to install the SQL Server 2005 Express Edition 9.00.1399.06 on on my XP SP2 pc. the file: "C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\Summary.txt" show the following messages: Machine : DUMBO Product : SQL Server Database Services Error : The SQL Server service failed to start. For more information, see the SQL Server Books Online topics, "How to: View SQL Server 2005 Setup Log Files" and "Starting SQL Server Manually." and ... Machine : DUMBO Product : Microsoft SQL Server 2005 Express Editi ...Show All

  • Visual Studio Team System Team Build - Security

    Hi, we would like to implement multiple team-build types, but only certain users must be allowed to execute certain team-builds. I have not found a way to ristrict which users may execute a specific team-build. Will this be an RTM feature - or must we use alternatives for all restricted Team-Build functionalities The TeamBuild report shows who the build was was requested by. This is in the Requested By row in the Summary section. This name is not available to the build process. ...Show All

  • Visual C# How many pixels does DrawString use?

    I am creating a chart on the fly using System.Drawing. On the left-hand side of the chart there are labels for the different pieces of data shown in the chart. However I want to find out which label is the longest (in pixels) so that I know how much room to allot for the label area on the left-hand side. //code for a sample label graphicsObj.DrawString(labelName, labelFont, labelBrush, labelX, labelY); Basically I want to know if there is a way to figure out how much a label is going to take up in pixels Hi, try the MeasureString method: SizeF size = graphicsObj.MeasureString(labelName, label ...Show All

  • Visual J# auto Import

    Is there anyway in VS 2005 to auto load import references in J#. I use the javax.swing.JOptionPane in most of my projects and was looking for a way to load it automatically into new programs. Thanks for any input. Let me get your question right. Are you looking for a way to add a reference automatically to your project if you refer some type from a particular DLL ...Show All

  • SQL Server Cannot Run on this Edition of Integration Services Error Message

    Hi All, I am little new to 2005 so this may be an easy one. I have a IS package that I created on my local 32 bit machine. I have copied this package to one of our servers running SQL 2005 EE x64. The package executes fine until it gets to a VB Task at which point it errors with the message of "The Task "DefalutValues" cannot run on this edition of Integration Services It requires a higer level edition" Is this a known bug/error that you can not build on a 32bit machine for a 64bit machine. I have set the precompilescriptINtoBinaryCode value to true. If anyone has any suggestions please let me know. Thank you ...Show All

  • Visual Studio Team System When is VSTS Beta3 Extensibility Kit releasing?

     I'm looking for sample apps for Beta3 WorkItem Object Model to import bugs from Beta2 server to Beta3 server. I was told that it will be releasing soon. Does anyone know the exact date Thanks, Anu The extensibility kit for Beta 3 is finally released! I downloaded it this morning from http://msdn.microsoft.com/vstudio/extend/ . Sarah Cameron ...Show All

  • Visual Basic Any way to constrain generics to value types?

    Is there a way that I can constrain a generic type to only accept either integers or doubles  Seems like value types are altogether exluded from participating in generics but I wanted to make sure. Is this right Any reasons that explain this I'd like to write something like: Private Sub Foo(Of T As {Integer, Double})(ByVal Value As T ) Thanks in advance! Hi, what is near is that you can limit it to structures (value types) as follows Public Shared Sub Foo(Of T As {Structure})(ByVal Value As T) End Sub Another thing is that if you just allow Doubles (as you can't have value typ ...Show All

  • Visual C# value in a variable for string method

    Hi, The Select() method of XPathNavigator takes an XPath expression in the form of a string. I have a string type variable 'name' which needs to be given to Select() method. How should I do it name = "John"; Ideally, I should have something like XPathNavigator nav = doc.CreateNavigator(); nav.Select("/root/level1/Name[contains(.,name)]"); Instead of name variable, its value should come into the Select() method. How should I do it Thank you. Hi, Thanks for the reply. There is a small correction. nav.Select(string.Format("/root/level1/Na ...Show All

  • Visual C# Transferring data from one form to another, is it possible?

    More specifically, I have a form that has as combo boxes on them. When this main form loads, it retrieves data from SQL and I bind these combo's to data tables. However, I manually put an item named <create new customer>. If the user selects that option from the combo, I popup a new form that contains all the customer fields they need to populate. When they click save, what I would like to do is either save the data back to the sql database at that time but at the same time take the values the user entered and transfer it back to corresponding fields in the Main form without making the main form make another call to SQL if at ...Show All

©2008 Software Development Network