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

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

masom1773

Member List

Smallmaj
Abhilash CR
Esqueleto
Venkata Prasad K
Leon Mayne
RHolt
kcornwell
billa1972
Jim Perry
Rabtok
silentC
longint
spainb
sugrhigh
bioan
Jassim Rahma
KRISTER
Michael Vanhoutte
AlexBB
MBrophy
Only Title

masom1773's Q&A profile

  • Visual Studio Team System Folder shortcuts?

    We are using TFS and have a rather large database with lots of deep folder structures. Constantly having to navigate the TFS folder tree can be quite tedious and time consuming. So I am looking for a "shortcut folder list" capability. I cannot find one in the UI but it sure would be a nice feature to have a shortcut dropdown next to that workspace dropdown. The idea is to be able to select a folder from the list and have TFS automatically navigate to the folder. I tried adding another workspace where I map my most frequently used source folders to their corresponding disk locations but that did not work. I get an error from TFS because the folders are already mapped in another workspace. I ...Show All

  • Windows Forms usercontrol with a dgv offering the dgv's properties.

    Hi i have a custom dgv that i want to place in another usercontrol. obviously i'll have the usercontrol dragged and dropped on  form or another usercontrol. I accessed the properties of the dgv by haveing a property returning dgv in the usercontrol. when i try access the columns of the dgv , i get error as below. What is the appropriate way of doing this task -------------------------------------------- Dgv's definition Public Class DGV Inherits DataGridView ----------------------------------------------------- code in my usercontrol where i dragged n  dropped a dgv. : Public ReadOnly Property myDgv() As DGV Get Return Me .Dgv1 End Get End Property - ...Show All

  • Windows Forms When leaving datagrid cell bu pressing enter

    Hi I'm currently using the below code when a user exits the cell, i then run what code i want. But i only want to catch the event when they leave the cell by clicking tab. Is there a way i can see when they press tab key on a datagrid cell private void dtgrdGLTransLines_CellEnter( object sender, DataGridViewCellEventArgs e) { if (dtgrdGLTransLines.Columns[e.ColumnIndex].Name == "Debit" ) { if (dtgrdGLTransLines[e.ColumnIndex, e.RowIndex].Value == null && dtgrdGLTransLines[e.ColumnIndex+1, e.RowIndex].Value != null ) { //my code } } } thanks in advance ...Show All

  • Visual C# Using DeviceIoControl and IOCTLs from C#

    Hello, I'm currently working in a C# project where I require the use of DeviceIoControl(). It seems that there is no implementation of this function under c#, is this correct If this is the case what would be the best way of including calls to this function within the project Would it be best to create a separate project within the solution, and if so is there a link out there that goes over this type of solution/project Thanks, Devan Thanks for the hint about P/Invoke Mattais. P/Invoke is a new concept to me (in fact, so is C#) but I found a great writeup on it here if anyone's looking: http://msdn.microsoft.com/msdnmag/issues/03/07/NET/ So my question now becomes, how do I access the data o ...Show All

  • Visual C# how the session management in asp.net?

    in java servlets,there is provision for session tracking and managament can any one explain me how the session management can be performed in asp.net Well, These links may helpful to you: http://www.codeproject.com/aspnet/ASPNETSessionInternals.asp Otherwise, you can deliver the question to asp.net forum and there you may find satisfactory answers. Thank you. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. help regarding a game

    hi all, i need a source code of putting a ball into a basket somewhat like basketball or some similar game in xna.. can you please let me know the source code or site where i can find it hehe, some of that content seriously needs to be updated. Check out this quote from Andre LaMothe's article, " Direct X-Tasy ". "However, in my opinion Direct3D will not last. We all know that John Carmack has denounced it, no one is really using it, and OpenGL is getting a lot of media play as the saving API to make 3D work." That being said, some of the articles are still really good: http://www.gamedev.net/reference/design/features/makegames/ I think they should link to some of Jeff Tunnel's articles a ...Show All

  • Visual Studio How to get reference to the TextBox control of FileUpload Control

    Hi all, Does anybody know how to get a reference to the TextBox control of the ASP.NET FileUpload Control Thanks in advance. A better place to ask this is on the asp.net forum: http://forums.asp.net/ Good luck! Michael Blome Visual C# Documentation Team ...Show All

  • Visual Studio Express Editions open new form

    i need the open new form code. it looks something like this: "Dim clone new form1" you are pretty much there. Now you have created the instance, show the form! Dim theForm as new Form1() theForm.Show() or if you only want the other form to always have focus meaning that the caller gets "blocked" and the only way to let it unblock would be to close the new opened form, then use ShowDialog() theForm.ShowDialog() is this what you are after ...Show All

  • Visual Studio Express Editions How not to start your day/programme Help!!!

    Private Sub M1( ByVal aa As Integer ) Dim gg, ll, ff As Integer Dim mm As New Random gg = aa + 1 ll = 0 While (ll < gg) If aa >= 1 Then ff = mm.Next(1, 9) End If TextBox1.Paste(ff) ll = ll + 1 End While End Sub Were did i go wrong http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=464111&SiteID=1 ...Show All

  • Visual Studio 2008 (Pre-release) Rich class object on Service and Client side?

    Hey! When setting up a WCF communictionen between a host and a client we generate the proxy classes for the client. All the classes that are used on the host and are known the the service are regenerated on the client side but in a special proxy version. I need to let the client know of the real classes, and not just the proxy clases, this could be manage by reference to a class library(dll(same as the one the service are using)). Now to the question, will i have to build my own Proxy object to orginal object converter my self(that fill the object fom the class librare with the data in the proxy object) or is there anyway to let the client use the real objects instead of the proxy objects like it does with the built in type(Dataset, Strin ...Show All

  • SQL Server How can I generate xsd files from existing tables?

    I would like to generate xml schema files for my data model for later use with testing tools such as ndbunit. I realize that Visual Studio datasets can be used to do this, however, Visual Studio does not automatically determine table realtionships. I do not want to manually specify these relationships. I also do not have the luxury of using TeamServer for DB professionals. The Database Diagrams feature of SQL Server Management Studio seems capable of determining the table relationships on its own. However, I don't see any way to simply export a databse diagram to an xml schema definition. I realize I could write code to do this myself using the nice APIs under the Microsoft.Sqlserver.management and System.xml namespace, but I'm trying to a ...Show All

  • Visual Basic New guy question, how do I do this???

    Ok, so I'm fairly new to programming, especially in .NET and VB. Everything before this was in MATLAB for me since I'm an aerospace engineer. I'm trying to build an sizing program for compressors, and I'm building a unit conversion class to take care of the obvious problem of inputs coming in as different units. I've taken care of the basics, ie: length, force, energy, pressure, volume, etc..., but now I want to do combinations thereof. The way my code works is it takes a ByRef value for either a conversion factor (for the combinations, since temperatures aren't always an absolute scale) which is initially zero or whatever, or a ByRef value for what you're trying to convert, and the input units, and the output units. The units were crea ...Show All

  • Windows Forms Using dataview to search through a datagrid

    Hi, I have a datagrid as follows: CaseID Name Date 1234 abc 12/23/41 5678 def 1/23/42 9876 ghi 2/24/42 Now what I want is a search functionality that takes the value of the caseID and returns the value within the same datagrid. So when I search for CaseID 1234, the datagrid is populated as follows CaseID Name Date 1234 abc 12/23/41 I was wondering if somebody can point out how to do the above. I want to populate the same datagrid with the value of the search. Thanks thanks a lot...but for some reason the grid isn't changing for me. It still stays the same after the updated data view is applied. Would you know a reason why that might be happening ...Show All

  • Visual Basic Net Programs & Dual Core

    My .Net program uses 80-100% CPU (memory operations - no disk activity). If I get a dual core, could I run two instances without performance issues ...that is running each app on a single CPU. Thanks So I think the on-the-fence answer would be that dual core can potentially provide you with some more horsepower but there is no guarantees - the .NET framework doesnt have anything specifically that is written for dual core such as a dualcore version of the framework or dualcore classes that will specifically make use of the features. The best way to improve performance is to find the bottlenecks of your code and remedy these first, then if you code is more efficient and quicker running, using les ...Show All

  • Visual C++ error LNK4006: _DllCanUnloadNow@ - /FORCE:MULTIPLE doesn't resolve issue

    I'm getting this linker error: LNK4006: _DllCanUnloadNow@0 already defined in dlldata.obj; second definition ignored Linking with flag /FORCE:MULTIPLE doesn't help. Does anyone know how to fix this thanks hello In this article in MSDN it mentioned that "If a module is compiled with /clr , /FORCE will not create an image.", I believe this is the reason that /FORCE:MULTIPLE doesn't help. Are you using /WX switch to the linker settings If so, remove this switch so that LNK4006 can be considered as a warning so that you can generate output file. This solution is an equivalent to the attempt of using /FORCE:MULTIPLE switch, but not solve LNK4006 directly. If you do want to get rid of LNK4 ...Show All

©2008 Software Development Network