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

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

MarySil

Member List

Colin_Foster
Biju S Melayil
Kamen
Stigern
Programmer Chang
LouisVanAlphen
Mark A. Richman
Jeff Walsh
Rafael Mores
Marc Archuleta
Turfnsurf4me
guy87
Charles Tam
Rattlerr
michot
Logic Rules
GoDaddy
cfaulk
WineMan
Alek Davis
Only Title

MarySil's Q&A profile

  • Visual Studio Team System Install both Team Dev and Team Arch

    Is it possible to install VS Team Dev and then VS Team Arch over top to get the features of both Will doing so screw up any other apps e.g. Visio for Arch, or disable ability to profile (from Team Dev) cmk Ahh, good to know, thanks. Ummm, why did you install the service pack 3 times Couldn't you just install the multiple versions on top of each other then just install the service pack once I haven't installed the service pack yet, are you saying there is one for each version ...Show All

  • .NET Development HttpPostedFile has no constructor

    I'm working on unit testing some code that handles an uploaded file, the method I need to test takes a HttpPostedFile as a parameter but I don't seem to be able to construct one in order to call it. Anyone Thanks in advance ...Show All

  • Windows Forms ToolStripTextBox does not displays as multi-line.

    Hello, I cannot set a ToolStripTextBox to display a multi-line text, whether programmatically or by drawing it by mouse. Whenever i try to change its Size to a bigger size, it still displays only one line, whereas a TextBox can display multiple lines. Also, there is no .Dock properties to do what I expect. At last resort I could use ToolStripControlHost but it would be be pretty useless because the only thing I want to do is to display a multi-line text, I don't need to expose any methods or properties. Do you have any ideas   Thanks a lot Sorry but that doesn't work, at least in VB. The "\r" and "\n" are not recognized, whether in Designer or Code. Squa ...Show All

  • Visual Basic vb6.0 help

    how to create a imagebox using vb6.0 code T hese forums are for VB.NET and there are better places to find answers for older versions of VB. Maybe the VB6 newgroups - http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.vb.general.discussion&lang=en&cr=US Or perhaps the VB6 resource center http://msdn.microsoft.com/vbrun/ or perhaps www.vbcity.com may be useful places to search for answers on VB6 related questions. Hopefully this helps. ...Show All

  • Smart Device Development How to access Windows Mobile 5 Calendar application

    Hi, I'm a newbie in PDA development and struggling to get into this mobile ground with my first ongoing project. I have a problem to link my application to the default Windows Mobile calendar function. What I want to achieve is very simple but I'm just not sure how to get this done. With a click of a button in my app, I want to link to Calendar main page, just like when you click Start -> Calendar and you can see all your appoinments for today. Idea / suggestion are well appreciated. Fyi, I'm using VS2005 for development. Regards. Hi Alex, Diagnostics.Process.Start(Application name) is the way to open external app. New problem now is I can't find where this Contacts application. I h ...Show All

  • Visual C# Please Help!!

    Hi All, I am new to C# and have been assigned to build a small application in C#. What I have to do is make a database connection and gather the list of available server-databases and then populate a checkedlist box with this list. Then I have to take a user input for a data object(which can be a stored proc or a view) and search for this user input in the list of stored procedures for the selected checkedlist box items (eg: if there is a server-db like datadev - base and the user input is sp_orders then I have to check for sp_orders in all the stored procs listed under datadev-base). when I am able to find the stored procs tht call the user input data object then I have to display them in a list box. So far I have been able to make a D ...Show All

  • Visual Studio Team System Project Creation Wizard - error uploading documents to SharePoint

    Background: I am getting the below error when creating a new Team Project. I have upgraded from RC to RTM. My user account and tfssetup are members of the local administrators group (and therefore are members of the SharePoint Administrators Group according to the doco and should have enough permissions). A search on the web and msdn forums didn’t yield any useful results. I did find the other thread with same error but that fix didn't work for me. Problem: When creating a new team project I get the following error: TF30177: Team Project Creation Failed. Error The Project Creation Wizard encountered an error while uploading documents to the Windows SharePoint Services server ...Show All

  • Visual C# C# Question

    Hello, From a C# program, how do I display a form that was previously created in Access Thanks. private void CloseBtn_Click( object sender, EventArgs e) { string database = "Test.mdb" ; string connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + database; // Prepare the connection System.Data.OleDb. OleDbConnection conn = new System.Data.OleDb. OleDbConnection (connectionString); try { conn.Open(); // Insert code to process data. //frmMainMenu.Show(); // Opens the Access Main Menu form } catch ( Exception ex) { MessageBox .Show( "Failed to connect to data source" ); } finally { conn.Close(); } ...Show All

  • Visual C# Executing sql command in C# problem string literals

    hi! I need an extra qoute in sql command to execute correctly but how do we execute through c#. This is what i do>>>>> string scriptTaskConnectST = @"Data Source=SE413695\AASQL2005;Initial Catalog=TestDB;Integrated Security=SSPI;"; executing this through c# code jobCommand = new SqlCommand("xp_cmdshell 'dtexec /f \"" + path + "\" /Set \\package.Variables[User::ArchivePackageName].Properties[Value];\"" + name + "\" /Set \\package.Variables[User::ScriptTaskConnectST].Properties[Value];\"" + scriptTaskConnectST + "\" When i check i resulting vaue i get this for scriptTaskConnectST as /"......\" \" Data Source=S ...Show All

  • Visual Basic VB.net 2003 - DataBound ComboBox

    Hi. This is either very easy or a stupid thing to do. I have a table called Project. I have a Lookup table called ProjectStatus (1=Active, 2=Suspended, 3=Closed etc) . They are linked via foreisgn key StatusCode. Users can select the current status from a ComboBox on a windows form. I have no problems populating the combobox from the ProjectStatus Table. I have no problem binding the combo to the Project table. All works hunky-dory. What I'd LIKE to do is give each ProjectStatus row a status of its own e.g. Active (True/False). The users would only be allowed to select Status values in the combobox if the Active value was True. This works fine too using a simple WHERE clause on the SQL that populates the dataset (via data adaptor). W ...Show All

  • Visual C# problem with making query wich contains parameter

    I'm trying to make a program to manage my moviedatabase a little more user friendly. Now i'm trying to add a new query to the adapter with the paramater. But every time i do this i get this error saying error in WHERE clause near '@'. Cannot parse query text. This is my query: SELECT ID, MapPos, Naam, Soort, Kwaliteit, Genre FROM Films where Naam = @naam It adds the method but without the parameter. Can anyone please help me, or say what i must do exactly :/ Thanx in advance thank you for the really fast response. Well i think i have to do some more reading. I was actually following this book with the example and everything. But they forgot to tell me anything about this. I just went to desing dataset, rig ...Show All

  • Visual C# Is Form Loaded

    How do I know when a windows Form is loaded.. For example.. If i wanted to run a function one the form loads.. how would I do this P.S: Sorry If Im not clear.. but If Im not please let me know. Unfortunately there is no event to detect if form is Loaded or not but i think there is not condition where you really need it strictly and your work cannot be done elsewhere. I would suggest using Load event instead becuase its really close to what you need and Load also occurs after Initialization of all the controls and fields on the form so there is negligible difference between Load event and what you desire to get (Form Loaded). I hope you understand! Best Regards, Rizwan ...Show All

  • Visual Studio Express Editions tab help

    hey everyone, I have a program that works fine. Now, I am trying to add tabs to the program so that I can add extra features accesible by clicking on the tabs. 1) How do I change the label of the tabs (TabPage1,etc.) 2) Can I basically do a cut and paste of existing code to now put it onto a TabPage (I want the 'form' to now exist inside the tab page). Thanks I have changed the tab text, but am having trouble putting the existing program into the tab page. When I add the tabs, I get the following: Private Sub TabPage1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabPage1.Click End Sub Now, when I want to add other 'Private Sub' ...Show All

  • Windows Live Developer Forums disabling the disaapearing of the ero popup when mouse moves away from it

    Does anyone know how to disable the vanishing of the ero popup when the mouse pointer moves AWAY from the ero popup Does anyone know how to OVERRIDE the popup over e pin in such a manner that when the mouse moves out it still DOES NOT HIDE. I think the implementation does ero.hide() on it. I need to make sure that once the baloon pops up it NEVER HIDEa again until the pushpin is destroyed. I have window.ero.setContent( "<div id='" + DivID + "'>" +tempTitle+popupEdit+ "</div>" ); window.ero.dockToElement(e); Now I already tried: VEPushpin.OnMouseOut=f; where f is a function also I tried window.ero.attachEvent("onmouseout",f); but all to n ...Show All

  • Visual Studio 2008 (Pre-release) WCF and SSL

    Hi, I was just reading the following blog. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=309166&SiteID=1 I was just trying to send username and password and get it validated but obvisously, you have to either create certificate or send it over https. I do not have much knowledge on https nor SSL. In the thread above, it talked about configuring SSL, how can I do this Do I configure in the program or is it more like windows system configuration My service runs as https but I can't access it using web browser nor svcutil. So if you can direct me a page on how to configure SSL, that would be fantastic, thank you. we have lot of SDK samples on this topic (Please check Transport security/Message security s ...Show All

©2008 Software Development Network