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

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

masuar

Member List

Sam2
Gerald Beuchelt
Tamas Pocker
CherylForrest
audigger
mPaskov
CritterNZ
RobertPalmer
Mattias Svensson
WPX
JohnGreer
Nate Smith
olofz
savage1965
gdev
Bob_Dineen
kcongdon
agencycontractor
johnny1899
-Sam-
Only Title

masuar's Q&A profile

  • Windows Forms Set user limit on share

    How can I set the user limit of a share (on winxp/2k)  from .net using 1.1 framework   ...Show All

  • Smart Device Development Checking internet connectivity

    Hi, i was wondering if there's a way to check wether the devide is able to connect to the Internet or not. I'm developping an application that can be installed on both connected and not-connected PDAs (even if they tend to be very few) and should lock some functions if the PDA cannot connect. any suggestion Thanks! Hi Alexy, Thanks, that's what i've been thinking of... and did, but as it may take a few moments to check if the connectivity is available (waiting for the timeout) I was wondering if there were any way to check for any communication module inside the device instead of waiting for a response. ...Show All

  • Visual FoxPro Very nice!

    Hello anyone, it's very nice to see Microsoft enhancing their community activities. Go for it! Providing a forum platform is one of the best aspects a company might offer. Thanks. I hope that this one doesn't compete the ones at Compuserve or UniversalThread. Sincerely, JoKi i got a lots of help from here     thank you very one again Jet ...Show All

  • .NET Development Opening the file as a New Process

    I am trying to open a file, e.g. a text, .doc or .mpp file, when it runs on the localhost system opens a respective file, but when installed in the IIS 5.1 and IIS 6.0 as a virtual directory, and access the file, system doesn't opens................................................... Imports System.IO Imports System.Diagnostics Partial Class CR Inherits System.Web.UI.Page Dim projectPath As String Dim documentPath As String Protected Sub Page_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load documentPath = "Change Requests\" projectPath = Con ...Show All

  • Windows Forms short help...Sample/ Data enrty screen

    I hope some genious will provide me a Sample Form for data entry as a Master/ Details with following using VB.Net or C#.Net, UPDATE, INSERT, DELETE , CANCEL buttons on toolbar and a DATAGRIDVIEW for inserting/ viewing records with proper functionality Hope will get good reponse very soon...... t ahir275@hotmail.com Just do a search on this site for How to Display Master/Detail in Windows Forms it wil show you a step by step tutorial on how it works hope this helps. barryt ...Show All

  • .NET Development About CreatePopup?

    I want to create a Popup to input something. the code is following: function AddClick() { var myPop = window.createPopup(); var myPopBody = myPop.document.body; myPopBody.style.backgroundColor = "Green"; myPopBody.style.border = "solid black 1px"; myPopBody.innerHTML = " : "; myPopBody.innerHTML += " 密 : "; myPopBody.innerHTML += " 名 : "; myPop.show(480, 20, 255, 300, document.body); myPop.focus(); } but I can't input anything in the TextBox ,because it not on focous. How can I input something and submit Thanks! I know the question is a year o ...Show All

  • Visual Studio Team System Support for WSS Form Libraries in Team Explorer

    Hello - the Team Explorer seems to only list WSS "Document Libraries" under the "Documents" node. Is there a way to get TFS to display "Form Libraries" as well. I would like to use Infopath Forms in my TFS project documentation. TIA, Cheers, Adam. Hi Adam, The Team Explorer only only supports document libraries at this point. I don't know if there are plans to extend this in a later version, but it's something that we will look into. -Dennis ...Show All

  • .NET Development How to choose the version of .NET Framework?

    If I want to write a class library, which version of .NET Framework (1.0, 1.1, 2.0) should I choose Since this library is algorithm centric, it's a good idea to use .NET Generic in it. That means I should use .NET Framework 2.0. However, it seems most people is still using .NET Framework 1.x. If I use 2.0, a lot of people will not use my library. Where could I find the usage ratio (the amount of each version) of .NET Framework in commercial applications Maybe the statistical result is helpful to me. Thanks! Lei, I'd have to say that the ratios will change pretty frequently in the next couple of months. In the near futur ...Show All

  • Visual Basic Controls Flickering when drawed on the form

    Hello there :) This was a Problem in Visual Basic 2003 when having a Form with about 150 Controls the form simply consists of panels and those panels have Labels and controls beside hem the form itself has a background picture ,,, the Panels also have backimages the Problem is when the form is shown the controls are being drawn really slow ... (the form is 1024*768) that wasn't a Problem at all back in VB6 anyway I saw that Visual Basic 2005 has a New Future called DoubleBuffered but it isn't doing any difference at all ... what are your Suggestions :) Thank you very much in Advance ! tried it wihout luck (I' ...Show All

  • Smart Device Development How to handle Multiple forms?

    Hi, I am using two forms Form1 and Form2. I show Form2 from Form1 like               Dim frm As New Form2         frm.ShowDialog()         Me .Close()   and Form1 from Form2 like                Dim frm As New Form1         frm.ShowDialog()         Me .Close()   When i move multiple times from form1 to form2 the Running Program list gets added like Form1 ...Show All

  • Visual C# Generics - List of items that implement a generic interface?

    So I've got a parser interface: ------------------------------------ interface IParser <T> { T Parse( Type type, string val); } ------------------------------------ And classes that implement this interface like this: ------------------------------------ class StringParser : IParser < string > { public string Parse( Type type, string val) { return val; } } class Int16Parser : IParser < Int16 > { public Int16 Parse( Type type, string val) { return Int16 .Parse(val); } } ------------------------------------ And I need to maintain a list of all registered parsers.& ...Show All

  • Windows Forms Bug 1.0???

    Ok it appears I have a bug. Here is the simple example. New form drag drop tool bar dock top drag drop grid control dock fill drag drop context menu now click on the grid get focus out of context menu.  Now go back to context menu (no highlight showing) and notice you can't add any menu items or see any that you might have added right after y ...Show All

  • Visual Studio Adding code lines to a VS 2005 source code file

    I need to add some code lines to an existing source code file (.cs or .vb) in VS 2005. I'm writing a VSPackage that has to do this. Which is the better way to do this - I add code lines directly in the source file as text - I get the code dom graph and I add the code lines adding instruction statement to it and then serializing it again. - other... Any hints Thanks the code dom lets visual studio worry about language syntax and positioning, but doesn't do a good job of covering things that are different between languages or new in vs '05 (for example - i haven't found a way to use t ...Show All

  • Windows Forms Overriding OnPaint on ComboBox

    Hello, I'm newbie in C# and .NET and I need to use user control inherited from combobox. So, in constructor I set: SetStyle(ControlStyles.UserPaint | ControlStyles.DoubleBuffer | ControlStyles.AllPaintingInWmPaint, true); Now I can free paint over my combobox, but over everything I painted is uggly black box, which represents the place where the new typed text is placed. This text is draw by standard system font Black on White, and ignores font settings in control params. Can anyone say me, why the control behaves like this Thanx From the MSDN: ComboBox.Paint Even ...Show All

  • .NET Development Server Name missing from Add Connections in Visual Studio - clues anyone??

    I've got both SQL 2000 and SQL Excess, er, Express on my PC doing C# Pro development. If I try to Add Connection to get a data source, I can select an Express database MDF file, and operate on the data OK, but cannot select the Express server - it does NOT appear in the server list. I added the server SQLSERVER.EXE to the Windows firewall 'Exceptions' list, along with Vis Studio - no change. I CAN select the SQL 2000 server OK. I can get into and use the Express Management tool OK. Properties for the Express server are Network connection (versus Local Service and Local System, both of which don't work), network connections a ...Show All

©2008 Software Development Network