Software Development Network Logo
  • Visual Basic
  • SQL Server
  • Windows Forms
  • Smart Devicet
  • Game Technologies
  • Visual FoxPro
  • VS Team System
  • Audio and Video
  • SharePoint Products
  • .NET Development
  • Windows Vista
  • Visual C#
  • Visual C++
  • IE Development
  • Visual Studio

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

glasgow1

Member List

guyinkalamazoo3
Denis Pitcher
Romantic_touch
vishuonline
tulkar
J. Clark
Giri
valentin_lv
ReneeC
Svennis
AlexDcosta
Steve Jackson
Srinivas Govada
Seiggy
JeffS23
Troy Lundin
JonesAtl
Alok_sriashoka_Patna _city
PublicError
smilemax
Only Title

glasgow1's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. XNA GSE Help Files!!!???

    Dear, I Did Installed VC# Express And XNA GSE. Where Can I Found The XNA Tutorials And Help Files See also this thread - which is sticky at the top of the very forum you posted in http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=683758&SiteID=1 PLEASE, search the forums before posting questions. ...Show All

  • Smart Device Development problem in deploying the application on device

    Hi All, I've developed a windows mobile 5.0 application for smartphone in C# and created a CAB file. And I bought a Motorola Q device which has windows mobile 5.0 in it. I was able to deploy the .cab successfully, but when i try to run the application, its saying "Application requires a newer version of .Net compact framework". My assumption is all windows mobile 5.0 phones ships with .Net compact Framework 2.0. Please advice me. Thanks Tan thanks for the replies. I am really concenrned about the file size of .Net compact Framework file size(25 mb). Most of the windows mobile phones will have 50 mb built in storage. my application size is 40 kb and dependency file size is 25 mb, its so f ...Show All

  • Visual C++ VC++ 2005 Pro Windows Forms samples

    hi, I am looking for Visual Studio 2005 C++ sample applications built with the Visual Studio rapid development (graphical) tools using Windows Forms. Unfortunately, I cannot find any such samples thus far on MSDN or elsewhere. I did download (from MSDN) the ‘calculator’ sample app which uses C++ / Windows Forms, but the code is not a product of the rapid dev tools and thus not useful. Would someone advise me please where these C++ samples may be found Thanks very much Visual C++ General General questions about Visual C++ 2005, including the development environment, libraries, setup, debugger, samples , and documentation. Pardon my question regarding samples posted to this forum. ...Show All

  • Silverlight (formerly WPF/E) web services

    Hello, am I correct to understand that there is no .NET framework integration yet I am wondering what support for calling web services there will be in v1 release. The usage I am thinking for WPF/E is to have XAML+C# as a complete front-end, using no javascript, and talking to backend web services. Does this sound like a reasonable usage that will be well-supported and is a goal for the WPF/E initiative To me it does not look like the December CTP supports this. Thanks, Brad Williams Going forward we plan to support the scenario you articulate using a slimmed down .NET Framework version. This CTP does not have that funcionality. Nevertheless, you can use ASP.NET and ASP.NET AJAX in conjunction wit ...Show All

  • Visual C# DoubleClick = 2 Click(s)

    I want to open the frmAbout when Clicking the icon and the frmDidi when DoubleClicking the icon. i added the code for both in the Click and DoubleClick. When I try the Click it works fine and frmAbout was shown but when I try the DoubleClick it opens both frmAbout and frmDidi and I think that's because the DoubleClick is actually 2 Clicks!!! any comments and solutions Yes The Click event is raised every time a control is double-clicked so the Click and DoubleClick events are raised when the form is double-clicked and both methods are called ...Show All

  • Visual Basic How to use 2D Array ?

    Hi, every one.. I need One help form you. i want to know how to use 2D array in VB coding. whose lenght is unknown that means it 's vary from application to another.for one cretaria it si 20 for some other scenario it is 15. so how to declare and initialze the 2D array for the same case. Thanks One of the nice new features of .NET is the list(Of T)...It has all of the benefits of an array and more...for one you don't have to worry about bounds or the index .... Dim MyList As New List ( Of Integer ) Dim Index As Integer = 0 Dim x As Integer = 0 For Index = 0 To 10 MyList . Add ( x ) x = + 2 Next For   Index = 0 To 10 Debug . Print ( CStr ( MyLis ...Show All

  • Microsoft ISV Community Center Forums add a digital signature to a document without displays the Signatures dialog box?

    Hi, I am trying to do a web application, the idea is: 1 user upload a file (word, powerpoint etc) 2. the server side receive it and sign a signature with the user's information on it. I want to save the digital certificate for each user on the server side so that users do not need to choose which certificate they use. But it seems that the method Signatures .Add will displays the Signatures dialog box and I have to choose a digital signature manually to a document. Is there anyway to add the signature without showing the signatures dialog box (e.g. my certificate is already saved on the server, so I use a method like Singatures.addMycertificate("certificate1") ) Many Thanks Jerry ...Show All

  • Visual Studio Team System Please Help With Setting Up VS2005 Team Edition for Software Developers

    So, I can assume that I am missing something. I have VS 2005 Team Edition for Software Developers, but I don't know how to set it up to where I can actually create a Team Project. Is there a how-to manual on just setting it up to where developers can share a project and check-in/check-out Do I need to set up something else in addition to just installing VS2005 Team Edition for Software Developers Thanks. You need to install the Team Foundation client a.k.a Team Explorer. See the chapter "Overview of Installing Team Explorer" in Visual Studio 2005 Team Foundation Installation Guide . Note: On computers with security update 896358 installed, downloaded Compiled Help Module (CHM) ...Show All

  • SQL Server Incorporating Data Mining Wizard into a program?

    Is there any way to incorporate the SQL 2005 Mining Wizard into my program Sure, I can create my own mining wizard using DMX, but that's quite a bit of work. Has anyone tried this Is it possible Any pointers -Young K ...Show All

  • Visual Studio Express Editions Grab the users AD name

    Is there a way to grab the users Windows name I am on a company Active directory. I just want to display this in my application. Like welcome john doe! and latter do some authenticaion with this.   thanks   Imports Microsoft.VisualBasic.ApplicationServices Dim U as New User MessageBox.Show("User is " + U.Name)         ...Show All

  • .NET Development Oracle Real Application Cluster Support

    Hi Does anyone know what (if any) support the Microsoft .Net Framework data provider for Oracle has for the Oracle Real Application Cluster (RAC) The documentation for the Oracle data provider for Oracle list its level of support, but I can't find any positive or negative information about whether the Microsoft data provider for Oracle will even connect. Hope this makes sense and many thanks for any help in advance. Neil System.Data.OracleClient does not do anything explicitly to support RAC. OracleClient uses Oracle's OCI layer under the covers, so if there is something you can configure at the OCI level, or if there's an Oracle-specific connecting string attribute you can use to enable some ...Show All

  • Visual C# Multidimensional Arrays

    Ok, my book really sucks I think. After struggling with an example in the book, I looked in the MSDN and searched these forums. I believe my book is wrong when it shows: int[,] student = new in[4][3]; I tried doing it that way but it errors. int[,] student = new int[5,4]; gives me no error and works. I am going to go with that. Unless someone can tell me that int[,] student = new in[4][3]; is indeed a correct format or what kind of a typing error it could be... The following also seems to be in the wrong format: int[][] x = { { 2, 3 }, { 4, 5 }, { 6, 7 } }; I don't think you can do it that way... hi, this is multidimension Array int [,] x= new int[2,2]; the best thing you can relate this with a ...Show All

  • SQL Server Need assistance with Duplicate Select Statment

    Any help would be appreciated here. My question is two part: 1.) Select duplicates that match any of a number of columns for example... The email is the same OR The homephone is the same OR The mobilephone is the same OR The address1 is the same The uniqueID is ConsIntID My Select Statement: (Which does not work) SELECT CONSINTID , FIRSTNAME , LASTNAME , EMAIL1 , ADDRESS1 , HOMEPHONE , MOBILEPHONE , CREATEDATE , USERIDS FROM CONSULTANTS WHERE CONSINTID IN ( SELECT CONSINTID FROM CONSULTANTS HAVING COUNT ( HOMEPHONE ) > 1 OR COUNT (MOBILEPHONE) >1 OR etc.... ) ------------------------------------------------------------------------------------------------------------------------ ...Show All

  • SQL Server Timeout expired on Index Creation

    I am trying to change the index' on a table I have to create a Clusterd index. When I apply the changes I want I get a message 'SiteData' table - Unable to create index 'IX_SiteControlData'. Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The table has around 6M records How do I change the timeout period and what is the default so I can set it back Thanks in advance for the help Thanks, that helps.  But it leads to another question.  If there is no timeout....why am I getting a timeout error when I try to change my index the actual nessage is: 'SiteControlData' table - Unable to create index 'IX_SiteControlData_SiteID_Calc_Date_Calc_Time'.& ...Show All

  • Visual Studio problem converting 2003 solution to 2005 web application

    I think I have a setup problem, but am not sure. I have a 2003 solution with over 20 projects which I want to convert to a 2005 web application, but the conversion keeps converting each project to a web site. I had VS 2005 Express on my machine. It does not support web apps, so I removed it and downloaded the 90 day trial version of VS 2005 Professional and installed it, plus SP1, plus the patch and add-in for web apps. When I tried the conversion, (by navigating to the 2003 .sln file in 2005)each project became a web site instead of a web app. Another thread indicated there may be some conflict between VS 2003 and VS 2005 on the same machine, so I removed all VS related sofware for both versions, ran the Microsoft VS cleanup u ...Show All

©2008 Software Development Network