Esrar Chowdhury's Q&A profile
Visual Basic Does the System.Web.UI.Design namespace exist in VS2005?
Hi, I am using VS2005 and want to use the System.Web.UI.Design namespace to provide a user interface to edit list items. However, VB 2005 doesnt recognise the name space. It underlines the namespace with a blue line and the message is : "Namespace or type specified in 'System.Web.Ui.Design' doesnt contain any public member or cannot be found. Make sure the namespace or type is defined and contains at least 1 public member. Make sur ...Show All
Visual Studio Express Editions Just downloaded VBExpress Edition and have a question.
I downloaded VBExpress Edition last night, registered it and this morning I recieved an email thanking me and giving me a link to download FREE photos, icons and stuff. email - " Registration Benefits We are pleased to provide the following registration benefits for registered customers: Stock photography — Download 250 royalty-free images from Corbis for inclusion in your applications Icons — Download a collection of professio ...Show All
Visual FoxPro object is not defined but uncatchable
It is a very strange situation and I have tried various combinations to beat it for a few days--to no avail. The code kept getting more complicated so bear with me please. The issue here is that there is a treeView and an outside button that is supposed to trigger some action. This action (search) needs TreeView.SelectedItem.Text and Tag properties. If I forget to make a selection beforehand the Type (" SelectedItem") is Undefined (&qu ...Show All
Visual C# How can I start or stop system service like MSSQLSERVER?
How can I start or stop system service like MSSQLSERVER Normally I start system service in command line 'net start MSSQLSERVER' How can I start or stop a service with C# Certainly before you start a service we should detect if the service have been started, how to detect in C# Ops sorry. ServiceController is there! eg System.ServiceProcess. ServiceController sc = new System.ServiceProcess. ServiceController ( "Service name" ); sc.Sta ...Show All
Visual Basic Extracting Variables from Strings and Event for a Tabchange in a TabControl
I have a program that is meant to take a user defined string (ex. x2 + 2x + 1) and divide it, and then store those values (the coefficents of x); there is a practically indefinite number of numbers in the coefficient. I've looked at the String.Split Method, but I don't understand it very well nor do I believe it's very practical when you have to keep splitting each variable to get the coefficient. Is there an easier way to the the opposite of ...Show All
Visual Studio Tools for Office How can I map the fields of infopath form to a webservice?
Hello Friends, I have created a form in Microsoft office Infopath . I want to attach a webservice with this form. So how can I map the fields of Infopath form to the webservice Input fields and how can I see the response of webservice Pls tell me what could be the soloution for this Thanks and regards. Ram Krishna Tripathi ramkrishnatripathi@gmail.com Hi Ram Krishna Tripathi, It is helpful to remember that ...Show All
Visual Basic Problem with Combobox and SelectedValue
Hi again from Spain. I'm working with the beta2 (VB.NET) and i have a problem with a ComboBox and the SelectedValue propertie. I fill a Combo from a database and i use the AutoComplete feature to make easy select a value. But... if i use TAB to enter the Combo... i type the value or select it with the keyboard... and ... then use the TAB to go to the next control (or click with the mouse in other field, button, etc)... the SELECTEDVALUE of th ...Show All
SQL Server Customizing Reporting Services Error
We are using URL access to display reports. the problem is the errors returned show "Error from reporting services". We want to customize the error messages. is there a way we can do it ...Show All
Visual C# Having difficulty running TCP remote client from other computer
Hi Support, I have getting error when i run my TCP remote client from different computer. NativeErrorCode : 10049 System.Net.Sockets.SocketException: The requested address is not valid in its co ntext at System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.StartListening(Objec t data) at System.Runtime.Remoting.Channels.Tcp.TcpServerChannel.SetupChannel() at System.Runtime.Remoting.Chan ...Show All
Visual Studio Express Editions Easy Database Question
I'm finding it difficult as a newbie to even grasp the core basics of database programming in VBEE. I have created a database in my project and done all the necessary table and column creations, but when I create a simple form that contains a textbox with an OK button, I can't for the life of me find what code I need to write when the OK button is clicked to insert the textbox data into the database! I thought it would be a simple. ...Show All
SQL Server FlatFile connection and security
My DTS package, deployed and run from the file system, works just fine for me, but fails when someone else runs it. The only explicit error from the dtexec command is: Error: 2005-06-24 12:35:03.33 Code: 0xC0016016 Source: Description: Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state.". You may not be authorized to access this informa ...Show All
Visual C++ linking to both msvcr80.dll and msvcr80d.dll
I have a managed c++ project, that produces an assembly that's linked to both msvcr80.dll and msvcr80d.dll (in release mode). According to the intermediate manifest below, the release version of the runtime should be used. Dependency walker show that it finds msvcr80.dll in %windir%\WinSxs\something (as expected). It also shows a missing msvcr80d.dll, which is the problem. Any hints on how to further investigate what causes this, or solutions a ...Show All
Visual C# C# - Maximum Project Name Length
I just installed C# Express Version 8.0.50727.42 and I have difficulty debuging applications with a project name length of 11 characters - if they are less than that I don't experience this problem: Example: I created a new windows application project named: abcdefghijk and then immediately pressed F5. The following error is in the output window: The program '[688] abcdefghijk.vshost.exe: Managed' has exited with code -1073741819 (0xc0000005). ...Show All
Windows Forms bug in VS2005beta2
I installed VS2005Beta2 a couple of days ago, and it has seemed OK so far. Today I tried to make a very simple Windows application just to try out a few things. I made one form with just one button and another form which should open when the button was pressed. So far so good, this worked. However after running it in debug mode and returning to the studio, strange things happen. It seems that every time the following message appears in the ToolB ...Show All
Visual FoxPro Packing a table
I am posting a piece of code that works quite well for me in interactive mode but not after an .exe file was created. When the execution comes to the PACK command I get an error message: "The file must be opened exclusively." I do not understand why it is so. If I click "ignore" I actually see a double (or any multiple) of my record set since the next step for me is to fill the table with some records. SELECT &cAlia ...Show All
