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

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

AnaD

Member List

chester645
Dale Shetler
Buruburu
Furikazashi
Dobereiner Miller
nick di pietrantonio
Jim Conigliaro
Awsok
pimmy21
Kenneth MacDonald
Wamiq
wicky
mmsspp
Sumathi
Imran Haider
warelock
Matt.Lin
Jason Wells
LPastor
tracy97214
Only Title

AnaD's Q&A profile

  • Smart Device Development Can eVC++ applications also run in desktop WindowsOS's?

    Hello all, I am porting a series of PalmOS applications (primarily GUI's) to CE.NET using the eVC++ SDK. Is there anyway I can rebuild these app's into .exe's which will also run on Win9x/XP/etc. These are simple GUI's with COM1 serial I/O. thanks Close, but not exactly. You can develop for CE 4.x either with eVC 4 (C++) or with VS 2003 (C# and VB.Net). NETCF is not an add-on, it's a runtime. Without it you can not use C#/VB.Net. C ...Show All

  • Windows Forms Additional 3rd Party Deployment

    I haven't had a whole lot of time to play with this yet, but I'm curious how things like Crystal Reports that require an additional install (I don't know, I'm not expert, maybe it has an MSM or something) will work with Click Once. &n ...Show All

  • Visual Studio 2008 (Pre-release) Read First - Welcome to Cider!

    Welcome to the MSDN Forum for the Windows Presentation Foundation (WPF) Designer in Visual Studio 2008 (aka "Cider). The content of this forum is Cider and things directly related to it, such as how WPF concepts are handled at design-time, and how the designer integrates with the rest of VS. This forum is for lots of people: the Cider team, Microsoft folks on other teams (including our WPF & Blend friends), and most imp ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Yaw / Pitch / Roll from Quaternion ?

    Is there an easy way to extract yaw/pitch/roll rotation angles from quaternion Thanks! Got this from: http://www.resonancepub.com/quaterni.htm Euler angles can be extracted from a quaternion as: tan(yaw) = 2(q 1 q 2 +q 4 q 3 )/ (q 4 2 + q 1 2 - q 2 2 - q 3 2 ) (5a) sin(pitch) = -2(q 1 q 3 -q 4 q 2 ) (5b) tan(roll) = 2(q 4 q 1 +q 2 q 3 )/ (q 4 2 - q 1 2 - q 2 2 + q 3 2 ) (5c ...Show All

  • Visual Basic Modifying the OpenFileDialog

    I'm trying to add a file preview and other functionality to this form but it has been mission impossible. There is a section here (msdn) were something similar is performed but it is done in VB.NET 2003 & I am in 2005, I get allot of errors. If anyone here could directed me in the right direction or provide me with an easy to follow example it will be greatly appreciated. Thanks in advance. William This i ...Show All

  • Visual Basic Warning 1: The file 'app.config' could not be added to the project. A file with the same path already exists in the project.

    I've gotten this warning message after i copied my project directory with me to another computer. How can I fix it The current app.config file in my project contains some information used by the project. Deleting it from the solution explorer raises many errors. Is there somehow to fix this What my app.config contains: http://www.rafb.net/paste/results/7l16SG51.html Also at line 5 in my app.config it says that requirePermission is not d ...Show All

  • Visual Basic Connection String To Northwind

    Since I have been trying for some time to populate a treeview with a database, I am excited to see this thread. As cited above, I am working with the linked article ("HOW TO: Populate a TreeView Control from a Dataset in Visual Basic .NET" - http://support.microsoft.com/ kbid=320755 ), but not yet able to get it to work. The problem seems to be in "modifying the connection string to point to the Northwind database on your SQL server." When I ...Show All

  • Visual Studio Team System Process Templates

    Hi, I'm writing a little app to add process template using the IProcessTemplates interface from Microsoft.TeamFoundation.Server library of TFS beta 3 refresh. I need to pass 5 parameters and I don't know what are the next three parameters : 1 templateData (byte[]) 2 metadata (string) 3 state (string) Could you help me on this Thank you Hello, I have forwarded your question to a Dev in this are ...Show All

  • Windows Forms HTML Table Generation Library Question

    Hello, I am trying to use the HTML Table Generation Library by Dinesh Chandnani to convert a Windows Froms Datagrid to HTML.  The sample project (TableLibaryDemo) works just fine. However, when I try to use the TableLibary with my VB.NET project, I  ...Show All

  • SQL Server DateTime and Date problem

    I have created a cube with two dimensions in as2005.  A time dimension and a "data" dimension.  The "data" dimension is a table from a db that has a field called "ItemDate" that is of type DateTime.  In the Dimension usage panel of the cube designer I create a reference in the time row to the "ItemDate" in the data dimension.  The problem arises when I want to count how many "data" rows have a date of "March 27 2002".  ...Show All

  • Visual C# KeyPress event to alter textbox data

    I am converting some VB code to C# code and Im having problems with the following code Private Sub txtQty_KeyPress(ByVal sender As Object, ByVal e AsSystem.Windows.Forms.KeyPressEventArgs) Handles txtQty.KeyPress If (e.KeyChar < "0" Or e.KeyChar > "9") And Not (e.KeyChar = ControlChars.Back) Then e.Handled = True What it does is if the key entered is not a number it doesnt enter the character. Trying to do the same in C#  I ...Show All

  • Windows Forms PocketVision - References problem

    When I first open the project there are exlamations next to the web references. When I hit update web reference I get 30 build errors in the web references code relating to missing references such as System.ComponentModel.Toolboxitem but when I look  ...Show All

  • Visual Studio Express Editions How to use CrystalReports with Visual Basic Express Edition

    hi, I would like to ask a question that is it possble to use crystal reports with visual basic 2005 express edition if so how I don't believe so. You will need VS2005 Professional to use Crystal Reports. You may be able to purchase Crystal Reports separately and get it to work with express (I doubt it though), but I think VS2005 Pro will be cheaper. ...Show All

  • .NET Development Failed to access IIS metabase, VS2005 RC

    I am developing a webservice in Visual Studio RC. I have just got a new pc and my problem is that I am not able to access this webservice. I have created a virtual directory in IIS, but if I try to browse there, I get a "Failed to acces IIS metabase" error message. Does anybody know how I can resolve this problem Where exactly is the "Operators" set up in IIS   I see no dialog to do so in IIS. ...Show All

  • Visual C# HOW TO CONVERT STRING to INT without using any inbuilt functions..??

    Hi all, How to Convert my String str=10 into int s=10; without using any inbuilt libraries like parse or convert to int etc . I had this question in interview...but i tried something in binary level but not accepted.pls clarify how internally data conversion takes place... thanks. Maheshkumar.R www.snipurl.com/guac well, i never had an interview like this, but I guess they want to see you doing it manually ;) somehow like ...Show All

©2008 Software Development Network

powered by phorum