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

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

Rtalan

Member List

anisk
technoTABLET
kcchesnut
Dottj
Niksta
Jeff Scott
giftgirls
IlCapo
CoverPpl
ccrockatt
elwood
Bennie9425
Fidence
moveit
Sinnix
Bandile
ramjamman
Strandberg
rchokler
Simon Dahlbacka
Only Title

Rtalan's Q&A profile

  • Visual C++ Interaction with an application running in CMD

    Hi all, I have written code for an appliation which needs to interact with another application which runs in CMD. I want to receive all the information produced by the application running in CMD so that I can manipulate them and at the same time I should be able to provide input to that application. Please suggest me somehting regarding this. Thanks, From application B's perspective, it is getting its input via stdin, as if the user were typing it via the command line. Application B still writes to stdout, and application A can read it from the other end of the pipe, also a file descriptor. I think I got this idea. And the way you have mentioned it, it's exactly the same thing I want to do. I will try this example for my purpose ...Show All

  • Visual C# differecse between AppendText and Text+=

    What is the difference between: 1) rishTextBox.AppendText("any text"); 2) rishTextBox.Text+="any text"; the second arise a problem but the first dont make the problem. There is no difference between them. They should work both. At least for me they do. If the second one gives you an error, what error message does it give then ...Show All

  • SQL Server Reporting Services - Other languages

    Hi, I’m trying to translate the RS enviroment to Portuguese but it’s only support English, Deutch, Spanish, French, Italian, Japanese, Korean. I found a DLL where the language values are stored. C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager\Bin\ko\reportingserviceswebuserinterface.resources.dll Is it possible to change it Anyone knows if Microsoft developed Portuguese support Sorry Rodrigo, Portugese is not currently supported. Also modifying the satellite DLLs maybe possible to create a new one, but this is not recommended. You are welcome to try though and the following information may help The satelitte DLL contain only the localized resources ...Show All

  • SharePoint Products and Technologies Customizing Masterpage Navigation Menu!

    Hi People! I am trying to customize the BlueTab.Masterpage by placing the aspMenu code from the Default.Masterpage into the masterpage and changing the StaticMenuItemStyle, StaticSelectedStyle and StaticHoverStyle styles to the original BlueTab CSSstyles. I set the StaticDisplayLevels and MaximumDynamicDisplayLevels properties as seen below to show the main sites as the Top Level menu items, then subsites as dynamic drop-down submenu items. Everything works fine except that for every submenu item that is available, a Left and Right tab image shows within the Top Level menu items! This makes everything look rather silly! like this:   http://www.supernetarcade.com/MenuIssue.JPG As you can see, next to "Document Center" and ...Show All

  • Visual Studio Team System Best Method of Adding An Existing Object

    I have imported a database schema from an SQL Server 2000 database but not all of the objects have been imported. They are not shown in either the Solution Explorer or the Schema View. Is there another way of getting the objects into the project I've done a Schema Compare between my project and the source database and the missing objects are reported as missing from the project. However, am I right in saying that there is no way of creating the missing objects through here The Write Updates button is greyed out. Thanks for your response and sorry for the delay in coming back on this one. Am I right in saying that writing updates to projects is still disabled in CTP5 as per other posts I have ...Show All

  • Visual Basic Application Configuration

    Hello. A question, please. I am working with VS 2005. I don't find how can I set the working enviroment. I mean DEBUG, RELEASE. I know that I must see a bouton called SOLUTION CONFIGURATION, but I dont have it. Can anyone help me Thanks... Thanks. If I go to Build menu, I don't have the Configuration Manager into. I have 7 options (Build, rebuild and clean for the solution) (build, rebuild and clean for the projet) and publish the projet. And If I do right-click on the toolbar and I add the "build" option, I have 3 options (build projet, build solution and cancel). Any idea, what's happens ...Show All

  • Visual Studio 2008 (Pre-release) july CTP and VS Ext

    Hi; I wanna know if june VS extension is compatibl with july CTP The official answer is no. There is no corresponding compatible release for the July CTP. The unofficial unsupported answer about how to make it work is described by Magnus here: http://blog.noop.se/2006/07/26/Forcing+Orcas+Into+VS+With+July+CTP+Of+NET+30.aspx Hope this helps. Andy. ...Show All

  • Visual Studio 2008 (Pre-release) Relative bindings for nested UserControls

    Hi all, Apologies if this is a stupid question, but I've trawled the forums and net for an answer, and just can't find what I'm looking for. I've created a XAML UserControl in another library that has binding defined for its element, however the DataContext for that control is specified in parent XAML form that is hosting the control. I'm using a XMLDataProvider as a test harness and I'm specifying the DataContext in the hosting XAML page (lets call this Form1) and then I'm creating an instance of the UserControl in Form1, then wanting to shift the DataContext to a contained element in the binding XPath. XML Data: < Items > < Item > < Number > 10001A </ Number > < BillTo > < Contac ...Show All

  • Visual Studio Tools for Office Downloading XML Data in Access

    I have an access application that needs to download a set of XML files on a weekly basis. I then load this data into my application. The developers of the site i'm downloading the files from have provided a URL to which you post an ilogin and ipassword variable. You are then supposed to get a reply of OK or failed. After authentication, session should be created with Session Key ("XMLSessID") passed as a cookie... I would then need to go and Load and Save each of the XML pages, using this authenticated session. Without embedding an IE browser into the MS Access application, how could i do this Thanks! -Ben Hi Ben this forum is specifically for questions concerning the VSTO technology, which ...Show All

  • Windows Forms How to pass ab object between forms

    Hi, how Can I pass an object between 2 forms. For example if I have an object created in a button click event Form1 frm1 = new Form1(); MyObject obj = new MyObject() obj.Id= someintvariable; obj.Name=somestringvariable; frm1.MdiParent = this.MdiParent; //this is an MDI app frm1.Show(); how Can I send obj to Form1 so I can use it there Thanks Hi, Sammy I dont know what you exactly want. But if you want to create mdi form, your syntax does not make sense. For example: Create a mdi form named form2 in form1 in Form1_load : this.IsMdiContainer = true; //and popup the form2: Form2 form2 = new Form2(); form2.MdiParent = this; form2.Show(); Otherwise, you dont need to ...Show All

  • Windows Forms Need Tree view help??

    Hi.. I wanted to create a tree view which gets populated from the database. I had used the code from the website: http://asp.dotnetheaven.com/util/srcview.aspx path=~/aspnet/samples/ctrlref/navigation/TreeView/TreeView11.src&file=App_Themes\Default\Default.skin&lang=C%23+Source As i dont use a stored procedure, i had used the query itself. But i am not getting the tree view in the browser. My changed code is: Code in default.aspx page **************************** using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; ...Show All

  • Visual Basic need to create an array of classes

    This is probably a fairly strange thing to want to do but it would sure simplify the code. I have many (10 so far and more coming) classes that all derive from the same base. The all process different types of files. The new operation currently is a little expensive and the objects are not small. What I was thinking about doing was creating a SHARED method in each derived object that can look at the input and decide if ir is a file it can process. That way New is only called after determining which of the derived objects will really process it. What I wanted to do was something like: dim processors() as filereader = {processor1, processor2, processor3) dim p as filereader dim realreader as filereader for each p in process ...Show All

  • Visual Studio VS Integration - adding items to project output groups

    Hi all, I've got a simple 'MSBuild project file in VS customization' mission: Two projects (a web project and a class library). Class library references a third-party library consisting of some dlls and some other files which has to be in the same directory as dll files for the library to work correctly. Web project references the class library. Third-party library files has been placed into lib folder of the class library VS project. Because "Copy to output directory" cannot be used on these files (finally they has to be in bin directory, not in bin\lib directory), I've created new ItemGroup called LibFile, put the library files into this ItemGroup and to copy these files to output directory I modified AfterBuild target like thi ...Show All

  • Visual C++ Upgradation to Visual Studio 2005

    Hi All, We are migrating our application from VS 6.0 to Visual Studio 2005. We are planning to change the APIs marked deprecated like strcpy etc to their security enhanced counterparts like strcpy_s etc. I would like to know whether .NET Framework 2.0 is needed to be installed on client machines to be able to use the security enhanced APIs or these APIs can be used without it also Looking forward to your responses. Thanks and Regards Zion I don't have such link. For your manager, you can add some string safe function to the program, and run it on computer without .NET Framework. Notice that computer must have VC++ 8.0 runtime libraries installed. You can open such program in the Depen ...Show All

  • Visual Studio Express Editions How to create a string from a field of the selected row

    Ok, I have a super simple form that works, but not how I want it to... My form has 1 combobox, 1 label, and 1 button. I have a datasource, tableadapter, and a bindingsource. The database has 3 fields in 1 table. ID, Name, URL ID is not displayed on the form, the combobox is binded to Name, and the label is binded to URL. on btn1 click call shell("internetexplorer path " & label1.text, 1) All works well and good. However, I dont want to have to show the URL... now, the ghetto work around is to make the label1 font color the same as the form back ground color, and that works... but, I'd like to know the 'right' way to do it. I need to know how to dim url as string = url colum of the selected row basicly. ...Show All

©2008 Software Development Network