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

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

Vasundhara

Member List

sweens319
LeandroT
Mirko1728
nielsvdc1
qureshi
jetter
ducati1212
Ning
huzzy
Benjamin Noyce
Crashin
trenskow01
oldorange1
loganX
benjamin pfeffer
MikeMcAllister
yossi t
Tom Sanfilippo
Perseid
seandop
Only Title

Vasundhara's Q&A profile

  • Visual Studio Express Editions Using Microsoft.visualbasic.collection type in settings

    I am working on a program where the user would want to save several sets of settings. For example, the settings would be used like variable a = a string, variable b = a font, variable c = a string. The user would want to use a different set depending on his choices for recurring type events. (i.e. A.M. use set 1, noon use set 2, evening use set 3, night use set 4) Each set would only contain it's own values for a,b, and c variables, nothing else. These would be user dependent choices, not my choices, so I cannot hard code in a simple select case type thing. I have played around with a separate program just to understand how to ...Show All

  • Visual C# StreamReader & Console Apps

    I am using System.Diagnostics.Process to execute an external process. When I set RedirectStandardOutput = true and attempt to read the entire stream either with ReadToEnd(); or looping with ReadLine(); the application freezes or waits continuously on the last read. What do I need to do to read the whole stream and continue with the application String data; Process proc = new Process(); proc.StartInfo.UseShellExecute = false; proc.StartInfo.CreateNoWindow = true; proc.StartInfo.FileName = "cmd.exe"; proc.StartInfo.RedirectStandardInput = true; proc.StartInfo.Redire ...Show All

  • Microsoft ISV Community Center Forums How do you test a user's input for alphabets?

    Hello programming gurus! Is there anyway to test if a user's input contains only alphabets Thank you! Hello. You can accomplish this by utilizing regular expressions. Here is a brief article one how this is accomplished in VBA. http://www.mvps.org/access/modules/mdl0063.htm Here is a site to test your regular expression (has some nice tutorials too) http://regexlib.com/RETester.aspx ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Creating a new texture fails with "first chance exception"

    I have an application in which I create a texture to later write directly into. It works fine on my development machine, but on the target machine it fails with A first chance exception of type "microsoft.directx.diretct3d.invalidcallexception" occured. The code looks like this texture = new Texture (renderer.Device, 720, 576, 0, Usage .None, Format .A8R8G8B8, Pool .Managed); The pixelformat is the same as the device. I have tried with sizes which are a power of two and other memory pools as well as other usage modes. Allways the same error pops up. I have enabled unmanaged debugging in vs2005 and am using debu ...Show All

  • Windows Forms FYI - Embedded & signed controls / EnableAutoDialup issue

    I thought I would let everyone know about an issue that I encountered that I don't believe is specific to my situation.  I have a web page that embeds a signed .Net assembly with a winform usercontrol (<OBJECT classid=...> tag).  Our corporate IEAK policy apparently set the EnableAutoDialup (Registry key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings ...Show All

  • Visual Basic Tool strip splitbutton help

    Im making a web browser and noticed that vb 2005 has split buttons, can anyone give me some exaple code on how to use these like in IE to view where you last were on the web thanks ...Show All

  • Visual Studio Express Editions C# and Sql Server Express Edition, Using Visual C# Express Edition

    Hello! Doing some C# and trying to access my db. Following a book from Wrox: 'Wrox's SQL Server 2005 Express Edition Starter Kit' - they use VB - there is my problem. How would I translate the following to C# Dim PKvalue As String = FilterInput.Text; // Filterinput ar en textbox DIM Rowlocated AS DataRow = Me.MyDBDataSet.Person.Rows.Find(CType(PKvalue,Integer)) If Not ( RowLocated Is Nothing) Then MessageBox.Show(CType(Rowlocated(1),String)) Else MessageBox.Show(PKvalue & " record not located" ) End if I tried out the Converter from VB to C# : http://www.developerfusion.co.uk/Utilities/convertvbtocsharp.aspx But that di ...Show All

  • Smart Device Development help please!

    hi everyone..i need some help..i can't figure out whats wrong with my program..im using vb2005 to create a program for wince..in design time the backcolor of my textboxes is black and the forecolor is white..when i run the program whether its in an emulator or in a pocketpc..the backcolor is gray and the forecolor is black..whats wrong is it a bug of wince i really need help..i've been trying to figure this out for almost 2 hours..but i still can't figure out what's wrong with it..help!!!!!!thanks in advance. Hello, You would like to move this post to SmartDevice VB and C# projects forum where it has got much better chances of being ...Show All

  • Visual Studio Express Editions index out of range error with StringCollection

    I have this error that only started occurring after I published the application.  It didn't happen when I was just debugging.  I've read that there is some bug with the StringCollection where you can't have a null string collection and then add a string to it later, so I came up with a way to handle that.  I'm getting an "index out of range" error with this though, and it has to be in my Form1_Load event, since it happens when the form first comes up.  I've looked through this and I don't know how to fix it.  Any help would be appreciated. Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As ...Show All

  • Windows Forms textbox mouse events

    i am writing an inherited control from textbox, trying to understand the mouse events. first of all, i override the click, doubleclick, mousedown, and mouseup like the following: #region override methods protected override void OnMouseDown(MouseEventArgs e) { this.Tag += Environment.NewLine + "OnMouseDown"; //base.OnMouseDown (e); } protected override void OnClick(EventArgs e) { this.Tag += Environment.NewLine + &qu ...Show All

  • SQL Server Can`t access Report Manager

    Hi to u all, I have installed RS 2005 B2 on Win Server 2000+Sp4, and the installation seems to be OK (I have checked both the Db and the IIS), BUT No matter what I do, I can`t access the Report Manager. When I type http://localhost/reports it opens a dialog box in which I have to enter a user+password+domain. It does not accept any user what so ever (including administrators). In addition, I tried to change the Security configs @ the iis, but it didn`t seem to help. Any Ides Tnx, Tamir RE: This edition of the Reporting Server Database is not supported on the edition of SQL Server 2000 you have chosen, Pleas ...Show All

  • Visual Studio Tools for Office Word 2003 - Insert XML data around a table row(s)

    I'm currently using word 2003 to markup word documents with xml from a custom schema. What I need to do is put one of my custom xml tags around a table row or rows but can't seem to figure out how to do this. Basically, when the document is saved as xml, It would need to look like this around selected table rows so they can be post processed. <ns0:my_tag><w:tr>...</w:tr></ns0:my_tag> I looked at placing an xml tag in the first table cell and programatically trying to find the parent <w:tr> node, but either you can not access word xml elements at design time or I am doing something wrong. The only th ...Show All

  • Visual Studio Express Editions VS 2005 Express Macro IDE

    I have just loaded VS 2005 Express and cannot find any of the Macro IDE elements on the menus. For this new version to be useful to me, I need to be able to import a bunch of macros from my VS 2002 setup. Does anyone know what I'm missing here Do I need to install something else. TIA guess what, a constant nagging that you're missing out on something great is a good way to entice you to buy the full product. I for one after seeing VC2005 Express in action am ever more inclined to purchase the complete package, in fact I'd downloaded it mainly to see for myself if it would be worth the money instead of in ...Show All

  • Visual Basic VB6

    Hi It's been a while since I've done any VB programming, and I need to get back in to it for work purposes. I've quite a bit of experience at VB 6 programming and have lots of code and examples that I need to use again. Is the latest VB development package backwards compatible with VB6 I'm sure all of these questions have already been answered so appologies for that. Thanks John VB.Net is NOT backwards compatible with VB6...there will be a small learning curve tranfering over to .NET....the curve is primarily learning the namespaces and classes...with the exception of a few new keywords and a few t ...Show All

  • Visual Studio Express Editions Unable to start debugging on the web server.

    I have been working with Visual Web Developer 2005 Express in file mod and have had no problems. I created a site in IIS which is running and working for aps code. I have asp.net 2.0 installed on my system and appears to be set up for the new site. When I try to run a file from VWD I get the following error message. Unable to start debugging on the web server. Unable to connect to the web server. Verify that the web server is running and that incoming Http requests are not blocked by a firewall.   Even if I turn off by firewall I get the same message.   Can anyone help     Hi! Thanks fo ...Show All

©2008 Software Development Network