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

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

scptech

Member List

murugan g
BonnieB
srinivasintouch
Patrick Severijns
PSHK
ThiagoPadilha
sam1996
vavtnen
fatquack
nglow
Nico Vuyge
hr0nix
Esp_99
Ben Santiago
Danielha
NLebron
riemerg
Mauro_Net
GarethJ - MSFT
hye_heena
Only Title

scptech's Q&A profile

  • Visual Studio 2008 (Pre-release) Working with Soap Messages....

    I am new to .Net and development as a whole and I am stumped. I have been asked to create a web site that will generate Soap requests and send them to web services, receiving the response of course. I have looked through many different pages on the internet and I have found some pages, but I have not yet been able to figure out something that will do what I need. Is there anyone who can direct me to a resource that may help me figure out how to solve this issue Thanks in advance.... Take a look at this documentation: http://msdn2.microsoft.com/en-us/library/w3h45ebk.aspx Dave ...Show All

  • Visual C++ How do I work with Windows Forms(using C++) and Directx9?

    Hi, I need a help!!! I need a example what show me how to work with windows Forms (using C++) and Directx (9), step-by-step, since declarations until how I create a form and draw inside it a line or other picture, I need a example what make this, if someone can help me..... Tks......... ...Show All

  • Visual Studio Express Editions getting values in Excel

    Hi everyone, I need help manipulating Excel, I opened a existing excel file, using c# but I can't get the values of specific cells. (I dont wanna use ODBC or conections, just get the values using it properties) does anyone know how to get the value of cell[4,9] (for example) and put it in a String and how to get a column1 ou column2 and put it in a arraylist AFAIK, you cannot process/execute any operations on the spreadsheet without using ODBC, ODBC is a connection required to communicate and process commands to the spreadsheet/database. you can get any value you wish by using the methods I have described in my last post, even if you specify the specific row and column you need the value for, wh ...Show All

  • Visual Studio Enumeration values not appearing in Sandcastle output

    My Sandcastle-generated output does not list the member values of Enumerations. I've tried using both the "AddOverloads" transform and the "ApplyVSDocModel" transform. Is there something I need to change in the configuration to get them to appear Rob/Gael, Please see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1286579&SiteID=1 . We had to delay the February CTP as we foind a high priority bug. We have fixed this bug and I will be releasing it tomorrow as March CTP. The VS SDK 2007 release has December CTP. Please see http://blogs.msdn.com/sandcastle/archive/2007/03/02/sandcastle-december-ctp-shipped-with-vs-sdk-4-0-rtm-release.aspx . Anand.. ...Show All

  • Visual Basic Add text to textbox which already contains text

    Does anyone know how to wirte text to a textbox which already contains text. For example: I have a textbox on my form and i set the text to say "color" when the program runs the form displays buttons with names of colors and when i click on the button i want the name to appear in the textbox BUT i DO NOT want it to overwrite the text that is currently in the box. Any thoughts Thanks!! Hi, you could use TextBox's AppendText method: TextBox1.AppendText( "black" ) Andrej ...Show All

  • SQL Server Using data from a Dataset as an automatic parameter in a second Dataset

    Some more details. The report show the number of visitors fro a given theatre for a selected week. These weeks are not regular calendar weeks but can start depending on the selected theatre on another day. (Depending on the country where the theatre is). So, in the report i want the user first to select a theatre, then, with the code from this theatre i want to reselect another dataset containing my calendar weeks, so that i can display the weeks, but the label contains the day from and day to, so the labels can be different depending on the selected theatre. When these two selections are done i have enough info to start the real report .... How could i achieve this. In this example i'm having a chronical selection of 2 para ...Show All

  • SQL Server HideMemberIF: Parent vs. Only Child w/ Parent

    Even after reading the SQL BOL definitions, I'm unable to actually demonstrate a real-world difference between the "Never", "ParentName" and "Only Child w/ ParentName" settings for the HideMemberIF property with my multi-level hierarchy on it's ragged dimension. Specifically, my hierarchy simply will not hide a member named the same as it's parent, when viewed in VS's Dimension browser window, regardless of the HIdeMemberIF setting chosen. I've not yet loaded SQL 2K5's SP1, and here are my questions: (1) Could it be that VS's dimension browser and/or cube browser do not support the HideMemberIF property (2) If so, has that changed with SP1 Hi, this is a weekness ...Show All

  • SQL Server Problem uploading .rdl

    The report server cannot process the report. The data source connection information has been deleted I want to make a copy of a report. I go into report properties on the SSRS, click edit and download the .rdl to my computer. I then upload the report, using a different name. I then get the above error. If I copy the report to the same location as the shared data source, and the above error disappears. But now the report doesn't work - no parameters in the dropdown lists. My question is : Why does a copy of a report, uploaded to the SSRS, not work, when the original is sitting right next to it, with the same rdl definitin, in a working state I notice that the new report (copy) has two problems with the param ...Show All

  • .NET Development How can I make multiple regex check with string values?

    I am using VS 2003 and Regex. I wanted to spilt the text from richtextbox if it matches newlines or semicolon or "/" or "\n\x20*\n" etc few sequences. If any of these matches, I need a split For single sequences, I use this Regex* regxterm = __gc new Regex(S"\n\x20*\n"); // very good \20=space, \u0020=unicode space String* array[] = regxterm->Split( this ->richTextBox1->Text); for ( int i=0;i<array->Length;i++) {MessageBox::Show( this ,array ,S"Test"); } How can I make multiple regex check with string values Thanks, Yeah, I see. Actually, you can combine the multiple regex into one regex, something like this: Regex rx = new Regex(";|/"); ...Show All

  • Visual Studio Express Editions Friend can't execute my program on his Windows box

    Following the instructions on p. 84 of "Microsoft Visual Basic 2005 Express Edition Programming for the Absolute Beginner", I created a release version of one of my few programs, using the build menu. The exe created works perfectly on my Win XP box when put on my desktop. However, I emailed it to a friend asking him to try it on his Win 2000 box, and he tells me that it won't execute. Instead, it calls for him to install a DLL. The book says that a release version should work for anyone I send it a copy to. Is the book wrong, or is there something going on I don't understand Thanks Your friend does not need just the 'yourprogram.exe'. He/She will need the 'Setup.exe', the 'xxxxxx.applicati ...Show All

  • Windows Forms HTML Editor (WYSIWYG)

    I'm looking for a HTML (text) editor for a WinForm application. Do these exist Here are some... http://www.codeproject.com/csharp/HtmlEditor.asp http://www.windowsforms.net/Default.aspx tabindex=4&tabid=49#Controls http://www.actiprosoftware.com/Products/DotNet/SyntaxEditor/MultiLanguage.aspx http://windowsforms.net/articles/htmleditor.aspx Hope that will help to get you started. If you do go down the line of putting one together, you might want to look at codeproject for syntax highlighting controls and use them as your base. ...Show All

  • Visual Basic Converting type of color to type of long.

    Is there a way to convert a color type to a long type Dim l As Long = CLng ( Color . Black . ToArgb ) ...Show All

  • Visual Studio Express Editions c-mon guys..help me out

    I asked for help in my other thread.. button help needed... big problem.... I had a couple of replies...but I am still stuck....can you help please thaks for the replies guys.... but saving the urls is fine for me...as I can save the urls that I want......ie...google.com... but if someone else was to use my browser....I want them to be able to assign the buttons to their preferences... actually I messed up....because I have 10 menu items named site1 to site10......... the idea was to save your favorite sites to the menu items......but my favotite sites are not your favorite sites.... see the problem I need a way to save the menu items to the documents folder....so that the user can change them....... I ...Show All

  • Visual Studio Express Editions Select/Open Tree Node

    I have two ways of getting to data you can either click on it manually or use the tree of nodes to get to it. I'd like to be able to when I click on something I can have it open and select the correct tree node child. Any ideas The "key" is the node name: Me . TreeView1 . Nodes . Add ( Key , Text ) I set the key to an obscure string just as an example... You have the name, text and tag properties of the treenode ,,,the find method searches by node name (key) ...Show All

  • Visual Studio 2008 (Pre-release) How should I use LINQ?

    Since LINQ is a new project I don't think this question has been asnwered anywhere yet - what will be an appropriate use of it, especially in multi-tiered environmnet What applications or scenarios will be especially benefitical for LINQ I played with BLINQ - very impressive. It would have been much harder to do this kind of app by pulling the data from SQL system catalog... Are there any examples like that Any architecture guidance coming up Thanks, -Stan LINQ is simply Language Integrated Query. The SQL stuff is just one (rather noticeable) application of it. It's intended to be applicable toward the problems developers face querying any data store, such as AD/LDAP, WMI, Regis ...Show All

©2008 Software Development Network