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

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

lucasjam

Member List

Scoper
Gabe J
sunny39
leemhenson
Antistar
GhostElite
Rainki
RotcivL
mfacen
davherb
mta37
Andre Phillip
adange
just*Do*It
Steven Don
venkatraj
HKS
Peter Evans
stujol
Mehdi_Becario
Only Title

lucasjam's Q&A profile

  • Visual Studio Team System Default Team Foundation Security Groups appear to be Inadequate

    I may be missing something but I only see 2 security groups.  - Team Foundation Administrators  - Team Foundation Valid Users Why is the Team Foundation Valid Users group not configurable Is there a document that discusses the recommended set of groups I expected to see 4 default security groups as follows:  - Project Managers  - Architects  - Developers  - Testers I created a "Team Foundation Developers Group" and mapped the users from an AD domain. I set the permissions of the Developers group as follows:  - Access the source control system  - Administer shelved changes &nb ...Show All

  • Windows Forms Getting parameter info from a Delegate type

    I'd like to declare define some delegate types and then use those for making up corresponding MethodBuilders but I don't see any good way to get the necessary information from the type.  Please note that I'm talking about the delegate's *type* here, not an actual delegate.  Ultimately, these delegates will represent PInvoked methods so I don't have a f ...Show All

  • SQL Server Instert found records into DB

    here, this query produces 21 days for @TotalPostingDays  ...the days left after pulling out weekend days (sat and sun) and holidays. What I want to do is instead of pulling the total amount for @TotalPostingDays I want to insert the actual dates that are contained within the @TotalPostingDays into a table DECLARE @TotalDaysInMonth int ,             @today datetime ,             @TotalWeekendDays int ,             @TotalHolidaysThisMonth int , ...Show All

  • Visual C# How can I use C# codes and programs on web?

    I have a html web page and I want to do sometinghs in it with c#. What should I do I know java scrip . But I need some more codes(Like c#) because they are not in javascript. I need more Help please. ...Show All

  • Visual Basic Shell Method

    How can I load a folder up in the windows explorer Your first line, should be... Dim sFile As String = Me .TextBox.Text.ToString() Don't forget to add the .Text  before the .ToString(). If that doesn't help, debug the code, and check the value of sFile at the If statement. ...Show All

  • Software Development for Windows Vista Ifelse activity in workflow

    How can I set the condition for the ifelse activity . how do I invoke the branching based on the condition. Raskal, I ended up writing an IfElseActivity of my own, due to an additional requirement I had. My requirement was to select multiple conditions for the branch, and I also wanted to pass parameters to the conditions. So I implemented an ifelse activity that takes conditions in the form of activities that implement an interface called IConditionActivity. You can go have a look and download the solution at: http://dotnet.org.za/hendrik/archive/2006/07/04/53953.aspx ...Show All

  • Visual C++ Radio Button Problem

    I have 3 radio buttons in my Dialog and it's in a group, i have on click event(OnRadio1) for first radio button( ON_BN_CLICKED(IDC_RADIO_ONE, OnRadio1) ), problem is that when dialog box pop's up OnRadio1 is called many times and then dialog will appear. Please help me. Pramod Please check if the ID value that is assigned to IDC_RADIO_ONE is used more than once. Look it up in your resource.h file. If so you get WM_COMMAND message from another control. ...Show All

  • .NET Development How to create a GUI for fileloader in VB.NET

    Hi all,   I am trying to create an user interface which allow user to open file like most applications (ie, MS word, etc..). The problem is I don't know where to start and don't know the how to create a fileloader.  Any help is greately appreciated. Sincerely, Brigitte. Here's a quick way to get started: 1. Open a New Windows project 2. Add a TextBox to the form 3. Set Multline=True, and make the control large 4. Add a ToolStrip control to the form 5. Choose "Insert Standard Items" from the smart task (or from the properties window) 6. Dbl-Click on the Open icon in the toolstrip to goto the OpenToolStri ...Show All

  • Visual Basic opening files

    hi i installed visual basic 2005 express edition beta, but for some reason i can't open my files from school on it. another thing when i make programs how am i supposed to save them because they save but when i open them they won't run Hi, Wow, this is weird indeed. I suggest you try re-installing your VS copy. I'll also consider reformatting if re-installing doesn't work... cheers, Paul June A. Domag ...Show All

  • Visual C# Accessing .AVI As Embedded Resource

    I've got a project in VS2003 where I've added a number of images and a video clip as an embedded resource on 'Build Action'. I can access the images easy enough by using the following code: System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(GetType(), "sampleImage.jpg"); this .pictureBox1.Image = bitmap; The problem is accessing the embedded .AVI; both the ActiveX Windows Media Player and the DirectX AudioVideoPlayback require a string pointing to a file Accessing Video File Thru ActiveX Windows Media Player Control: private AxWMPLib.AxWindowsMediaPlayer axWindowsMediaPlayer1; this .axWindowsMediaPlayer ...Show All

  • Visual Studio Team System automate build with beta 3

    this is what i wrote and it complaint team foundation can't start the build when i try to run it. localhost.BuildContoller bc = new localhost.BuildContoller(); bc.URL = @ http://localhost:8080/Build/v1.0/BuildController.asmx ; bc.Credentials = System.Net.CredentialCache.DefaultCredentials; localhost.BuildParameters bp = new localhost.BuildParameters(); bp.TeamFoundationServer = "VSTSBETA3"; bp.TeamProject = "myteamprojectname"; bp.BuildType = "myteambuildtype"; bp.BuildMachine = "VSTSBETA3"; bp.BuildUri = @" http://localhost:8080 "; bp.BuildDirectory = @"c:\build"; regarding 2. after you updated the config f ...Show All

  • Windows Forms Trapping Form Closing

    Hi, I am trying to ask my program users a Y/N question when they click the close button on any of my Windows Forms. How do I go about this Hi, I used an access database and i datagridview to insert, edit a particular table. how to prompt the user to save any unsaved data when closing the mdi form. thanks to help rd ...Show All

  • Windows Forms two projects

     i have two projects in my solution. how can i use a form form my 2a project They are two windows form project. I try to add reference from de 2a project to de 1a but a receive a msg , only dll or another thing , not exe files.   thank you for your reply. I try to use another project with windows form's in my current project. I add a 2o project to my current project and try to use a form , but i dont find it in my 1o project ("Reference"). My projects is in VB .net 2003.(Visual Studio) I try to add a reference of 2o project to my 1o project and i receive de msg "A re ...Show All

  • Visual C# How I can detect hardware?

    How I can detect a cd-rw or dvd-rw,etc. using Visual C# in .NET 2.0 you can use the System.IO namespace. In this, you can use the DriveInfo class and you can then go through the collection of drives returned and get its information you require.   Example:   System.IO.DriveInfo[] theDrives = System.IO.DriveInfo.GetDrives(); foreach (DriveInfo currentDrive in theDrives) {    MessageBox.Show("DriveName: " + currentDrive.Name + Environment.NewLine + "Drive Type: " + currentDrive.DriveType.ToString() + Environment.NewLine + "Drive Format: " + currentDrive.DriveFormat); } ...Show All

  • .NET Development System.Math.Round(Double, Integer) bug?

    I'm not sure if I'm missing something here but there seems to be a bug in the System.Math.Round function from the .NET 2.0 For example, this code: Math.Round(4175 /1000, 1) Returns: 4.1999998092651367 The exact same code compiled in VB2003 (.NET 1.1) returns: 4.2 Does anyone knows why is this xfxon, I'm unable to reproduce the problem you are seeing.  I'm using Visual Studio 2005 the release version.  When I run the code you reference, .NET 2.0 properly returns a 4.2.  Are you running one of the Beta/RC versions Thanks, Bill ...Show All

©2008 Software Development Network