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

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

Dashus

Member List

rafidheen
Jim Hughes
rasoliver
Bert Yu
Ian Finnimore
dihoch
CLT
vtrepan
Efraim Kyriakidis
baldrick98007
Randine
farmer101
Vikas Bindra
s3382
dv83d
freebsd_maple
workin4fishin
Alex2147
Helge Norvang
KevinRansom
Only Title

Dashus's Q&A profile

  • SQL Server Business Intelligence Project

    Hello Where can I download the project type for reporting services I need this for Visual Studios 2003. thanks You can get the trial version from here: http://www.microsoft.com/downloads/details.aspx FamilyID=ba517c01-2e2f-4bc7-84af-149b7637f807&DisplayLang=en This is the same as the full version.  The designer components are not trial versions and will not expire after 180 days. -Daniel ...Show All

  • Smart Device Development Connection to SQL Server 2000

    Hi, I am trying to connect to an SQL Server 2000 database using VB.NET 2005 CF. When I run the application (code below), I get the following error: An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.SqlClient.dll Additional information: SqlException Can anyone help me solve this problem When I use the same code in a windows application from, it works fine, but it doesn't when ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where is DirectX going?

    I read somewhere *cof* http://www.managed-world.com/SoonDirectXDirect3DNothingElse.aspx  *cof* that Microsoft is deprecating a large part of DirectX (DirectInput, DirectSound) he then hints about learning Shaders http://www.managed-world.com/AdviceLearnShadersNow.aspx so the question is, should I not bother to learn DirectInput, DirectSound, etc... what should I be learning if I want to develop DirectX applications in the future is DirectX ...Show All

  • .NET Development Editor flags valid XSD as error?

    The VS2005 editor complains about the following fragment of XSD: < xs:complexType >   < xs:all minOccurs = " 1 " maxOccurs = " unbounded " >     < xs:element name = " Class " type = " g:ClassType " minOccurs = " 1 " maxOccurs = " 1 " />     < xs:element name = " enumType " type = " g:enumType " minOccurs = " 0 " maxOccurs = " 1 " />   </ xs:all > </ xs ...Show All

  • Visual Studio Team System Security Role Membership for Creating New Team Project

    I am trying to give my R&D Team rights to create team projects on TFS.  According to the installation guide, one needs to be in the following 3 groups in ordre to create Team Projects: 1. Team Foundation Administrators 2. Windows Sharepoint Services Administrator (top-level site) 3. SQL Server Reporting Services Content Manager role (system-level).  I have no problem finding the first 2 roles.  However, the content manage ...Show All

  • Software Development for Windows Vista Where can i find $$$$$$$

    Where can I get a The Beta 2 Version of Vista ...Show All

  • Windows Live Developer Forums Edit Issues

    I'm having some issues with my editPost implementation. The first is that each time I edit a post the dateCreated moves back 5 hours. I am at GMT -5 which leads me to believe that the adjustment is being applied somewhere but I'm not doing it myself so I'm not certain as to where it is happening. I'm assigning the dateCreated value of the post I get from getPost to the dateCreated value of the post I'm assigning via the editPost. Along the wa ...Show All

  • Visual C# Validation expression for a RegularExpressionValidator!

    Hi, Can someone give me the validation expression for a RegularExpressionValidator in asp.net. i need two  validation expression.The rule for the first one is as follows.It should allow the following: a-z or A-Z 0-9 and underscore (_) Also, the underscore should not be the first or the last character. Rule for second validation expression is: only numbers 0-9 and it should be four digits Thanks & Regards, Frenz ...Show All

  • Windows Forms DataGridView

    Problems keep coming on me ... how can I make a row highlighted on mouse over I was looking for the past hour for answer ... no luck .. Well, an easy way to fake it, is probably: Set the DataGridView SelectionMode to FullRowSelect and hook to the CellMouseMove event like this: private void dataGrid1_CellMouseMove( object sender, DataGridViewCellMouseEventArgs e) {   this .dataGrid1[e.Colu ...Show All

  • Visual C# http:// comment problems....

    Currently im working on a web browsing program and i am trying to make it so it will automatically add the http:// before the www. part of the entered web address. my code is this: if (comboBox.SelectedText.StartsWith(www.)) { comboBox.SelectedText.Insert(0, http://) } theres probably problems with this code but i cant debug it because as soon as it reads the // it comments out the rest of the code... is there anyway to make C# not read the / ...Show All

  • Smart Device Development VS.NET 2005 cannot deploy any WinApp to PPC03

    I use VS.net 2005 standard edition . I try to deploy a simple Device Application (1.0) VB or VC# to my pocket pc 2003 which is a Dell Axim X5 with Win CE 4.20.1081 build 13100 . It is possible to run the app using whatever emulator (although i had a problem with the simple PPC03SE emulator at first) . It is also possible to manually transfer the simple *.exe file or even *.cab file using the explorer through active sync 4 ...Show All

  • Visual Basic Moving to a Specified Point in an Image

    Currently, I have a program with the following code: Public Class Form1 Dim mMap As Bitmap Dim mDragging As Boolean Dim mLastpos As New Point, mOffset As New Point Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load mMap = Bitmap.FromFile( "c:\temp\pic\map.jpg" ) mOffset.X = (MapBox.Width - mMap.Width) \ 2 mOffset.Y = (Map ...Show All

  • Software Development for Windows Vista Microsoft Platform SDK Feb 2003

    When I try to install this SDK I get the follwoing error: The currently installed SDK is not in its original dirctory.  The installation can not continue. Please go to Add/Remove Programs, uninstall the SDK, and try again. I did have this SDK installed once and I uninstalled it, there must be an .ini or .msi file left over somewhere.  I'm using this with Windows XP, SP2 - Visual C++ 6.0 Hi, Are you inst ...Show All

  • SQL Server Executing .sql file using SMO

    Hi all, Is it possible to execute a .sql file using SMO. like in old days we used to use osql.exe to execute the sql files Thanks in advance Rujith Hi, you don’t need SMO for that,executing scripts can be done via a *normal* sqlconnection (untested script, just wroite down in notepad) static void Main(string[] args) { if (args[0] == null) { Console.WriteLine("No file ...Show All

  • Visual C# global variable for windows application

    hello, how can i write and read a global variable for the entire application in C# Many Thanks, Jassim Rahma Hello Jassim There is no concept of Global Variables in C#, you can use global variables inside the entire class but not in the entire namespace. Solution for this problem is to create STATIC VARIABLES and use these variables anywhere in the namespace. Hope this might help ...Show All

©2008 Software Development Network

powered by phorum