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

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

deo1979

Member List

Will Barns
Gn0MiCK
CBueche
csharpener
Cnrb
Ravin08
NicoleM
ShaneBrown1979
Arik Peltz
Kathirvel
David Johnson MCSD
RonDielhof
msauper
Kathleen_H
GreyGallon
Donat Michal
ShrinanD Vyas
Florian Broeder
live cricket audio commentary
dionjuan2004
Only Title

deo1979's Q&A profile

  • Visual Studio Express Editions Embedding a Media Player

    Is it possible to add embed a Windows Media Player control in Visual Basic Express Im trying to create a media player for a website, pretty simple and easy. If this is not possible is it possible to create a status bar , a play button and a stop button in VBExpress Look forward to replys and views. What you want is the Windows Media SDK. It has all the Windows Media stuff you need, including a simple player control play/stop/rewind etc. It is also possible to go much deeper if you need to later. ...Show All

  • Visual Studio Team System successful report?

    hi there! is it possible to save a report if no errors were found or if it is empty so the programmer releases if he was successfull with his coding greets andy Andy, Use the /forceoutput switch with FxCopCmd: FxCopCmd /project:MyProject.fxcop /out:out.xml /forceoutput Regards David ...Show All

  • Visual Basic Just need the last part....

    ok, people add programs to the menu with my app, they choose a program using the browser, they then choose a name for it and put it in textbox1, this is the code for the 'finish' button: Me .BoxNumber1ToolStripMenuItem.DropDownItems.Add(TextBox1.Text)   As you can see this adds an extra menuitem and calls it whatever was put in textbox1, but i also want it 2 start the program that they chose, how would i do this do i need to add one more part to the code ok, this should be your solution: put this in the 'finish' button click event code: Dim menuItem As ToolStripItem = Me .BoxNumber1ToolStripMenuItem.DropDownItems.A ...Show All

  • Windows Forms Error message "Type SqlAddapter is not defined"

    When I define "LPMda as SqlAddapter = New SqlAddapter" the error message 'Type SqlAddapter is not defined" is displayed. This may be tied to a problem with the Windows Designer not creating the 'Windows Form Designer Generated Code' and the fact that the Windows Designer does not include the ' Inherits System.Windows.Forms.Form' statement. Please let me know how to get around this. LitePipe (Friend WithEvents / dim ) LPMda As new System.Data.SqlClient.SqlDataAdapter or (Friend WithEvents / dim ) LPMda As System.Data.SqlClient.SqlDataAdapter LPMda = new System.Data.SqlClient.SqlDataAdapter ...Show All

  • Visual Studio Express Editions how to set project to release configuration

    HI, i am creating a windows form application project. I don't know how to set the project to release even read through msdn. anyone know it please provide me the step. thanks. Look under the BUILD Menu Item at the top of the IDE and at the bottom you will see PUBLISH. As far as I know there is no Option in VB2005 to Build a Debug or Release Version like previous versions. I think the change is made at the time you Publish your application. james aka:Trucker ...Show All

  • SQL Server Business Object Integration with AS2005 Cubes

    Hi All, I currently have a microsoft client who wants to use Business Objects (latest version) with Analysis Services 2005 but does not know if Business Objects would be able to connect to AS2005. If you know of any information, that would help a great deal. thank you PS: of course, I have recommended reporting services and proclarity and the client is also looking into it. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Is DirectX good enough for creating modeling tools?

    this may seem a silly question. yet all the modeling tools i see on the commercial market and free tools use opengl. is this choice due to opengl having the ability to be used on no windows OS or is directx not upto the task well i wasn't aware of 3dsmax having a choice. :) i was curious because i wondered about creating my own tools and would prefer to stick with directx. yet was a bit worried by the choice for such modeling tools. ...Show All

  • SQL Server sql server mobile 05

    i am trying to get the @@identity in sql server mobile 05 once i have done an insert in query analyser. insert PHCR_Record (Patient_FName,Patient_SName) values('a','b') SELECT @@IDENTITY AS 'IDENTITY' can anyone advise me as it does not seem to work thanks adam No, you should be able to use @@identity just fine. This code: create table t ( i int identity , a nvarchar ( 100 ), b nvarchar ( 100 )) GO insert t ( a , b ) values ( 'a' , 'b' ); select @@IDENTITY works just fine. It is required that statements are separated with semicolon in SQL Mobile. Check "Executing SQL Statements o ...Show All

  • Visual Studio Team System Project creation problem

    OK I'm probably being dense here. Installation is a single server with reporting services, sharepoint, SQL all running. I can get to the relevant pages. The client can see the server and ping it over the network. Both are in a W2K3 domain and the DC is running SP1 as is the VSTF Server. tfssetup and tfsservice are both local admins and domain admins so should have all the necessary permissions. I'm logged in using the tfssetup account (tried also with tfsservice) and get the same error. Here is the output from the error file: 04/27/2005 02:31:02.560 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://vstsb2:8080/ ...Show All

  • SQL Server SQL_Server_Notification_Services at WikiPedia

    I've started a site at wikipedia http://en.wikipedia.org/wiki/SQL_Server_Notification_Services Maybe some of the pros out there can help to get the most important info on the site ...Show All

  • Smart Device Development Can't find GPSDev.h

    Hi! I'm trying to implement a wrapper class for the new GPS Intermediate Driver (part of Windows Mobile 5.0 SDK), and I'm searching for IOCTL values (I generate them by CTL_CODE macro), but I can't fing the GPSDev.h, which contaions IOCTL_GPS_xxx IOCTL values according to the MSDN Library. I can't find plaform builder 5.01 :( I will try it again tomorrot again. ...Show All

  • Windows Forms Make form centered...

    How do I make my windows forms to display in the center of my screen Also how do I make my MessageBox to display in the center of my windows forms Thanks :) One of my students asked the following question last night: Having created a simple project (VB 2005) with a single form that is to be displayed, f you set the form designer StartPosition property to CenterScreen, the form will show correctly in the center of the screen. If you attempt to set the property in the Form Load event handler, the form will NOT be centered. He asked why, and I couldn't answer. Hopefully someone here can explain why. ...Show All

  • Visual C# Math

    Ok. I know this isnt a math class, but I have some questions about the Math Classes in C#. For example, lets say I have 3 numbers. Each can be 0-10. How would I be able to LIST all the combiniations of that. Can someone please help me out There's nothin inherent to the Math namespace to do what you want. do you want all combinations of the 3 specific numbers, or all the combinations of 3 numbers in the range 0-10 ...Show All

  • Visual C++ How to run vc++ appl in win32 release mode??

    Dear all, Can any one to help in giving me the solution, to run the application in win32 Release mode Thanks, ...Show All

  • Visual Studio Express Editions The resource editor

    I have downloaded Visual C++ 2005 Express Edition and it generally appears good but one feature I am missing is the resource editor. Which version of Visual Studio would I need to buy to get the resource editor. Mog0 resources are just text files somewhere i had a help file for RC.EXE you can still edit them manuanly (or useing a recource editer) but there is no gui for it. ...Show All

©2008 Software Development Network