I am accepting input from a text box which I then parse into an array of numbers.
strIDs = txtControlNums.Text.Replace(" ", "").Trim()
strIDs = txtControlNums.Text.Repla...
I am going to have a string with is going to have many special characters in it .
I want to strip out all the non alpha characters
Ex:
So'Home
I want to go through this string, stip ou...
I am getting this error (BC30560: 'TreeView' is ambiguous in the namespace 'Microsoft.Web.UI.WebControls'.) and I have the control in the root path and applicaiton bin. It worked fine yesterda...
I have a dataset that is created by calling its ReadXML function which is passed a string of valid xml. Now because there isn't an XML schema defined, I am unable to call compute on one of its...
I want to remove the borders of a ListBox in ASP.NET. Merely changing the Border/BorderStyle properties do not work.
Is there a way to change the borderstyle of a ListBox in ASP.NET(C#)?...
Hi all,
I get the following error:
----------
A potentially dangerous Request.Form value was detected from the client (text="...opi fäsö,-<sdfjllk").
Description: Request Validation has d...
Hi,
A colleague of mine running Win XP migrated a program fomr VB 6 to VB.NET. Everything works on his PC and all his code is available to me. I have Win 2000, same VS.NET as him and same...
I'm working on a distributed VB.Net application and I need to know how to create a SQL Server (actually MSDE) alias on the client's computer via code.
Basic process in place right now:
1...
Hi everyone,
I'm about to make an intranet for my small business and I was wondering how easy/hard it is to have a word doc printed from an ASP.NET page? if so, a little bit of indication o...
Hi,
How to solve equations in VB.net. Is there any function in vb.net.. The equations may be like..
ax*2 + bx + c = 0
ax*3 + bx*2 + cx = 0
ax*4 + bx*3 + cx*2 = 0
...
This is kind of a long-winded question, but I don't think it's terribly complicated. Some of it should demonstrate my lack of understanding of how Web Services work behind the scenes.
I ...
Hi,
I'm currently experiencing a problem with the InvokeMember method. I have a client app accessing 3 different components. On 2 of the components, the InvokeMember works fine. On the thir...
I have a memo-field in a FoxPro-database. I read it with ADO.NET into VB.NET, using SQL, like this:
Dim conn As New ADODB.Connection()
Dim cmd As New ADODB.Command()
...
May be somebody know the way to disable __VIEWSTATE variable at all?
( I know about EnableViewState=False but it disables processing of this variable but still this tag is rendered and drawn ...
Hi,
I've got code that I only want to execute if a user is running the EXE and not if the developers are running in the IDE. Can anyone provide the VB.NET code for detecting this?
Thank...
ASP.net Experts -
I am using asp.net and vb.net for the codebehind. I have a datagrid that opens a "Details" page based on a unique ID passed in a javascript "Window.open()" statement. On ...
Private Sub SetToolTip()
Try
Dim i As Integer = cmbFunction.SelectedIndex
Dim dt As DataTable = CType(cmbFunction.DataSource, DataTable)
Dim dr As DataRow = CType(dt.Ro...
I have a .net web app that I built and would like to test it on the web server. My web app uses .net framework v1.1.4322
I tried running my deployment package and it told me that the neces...
Hi,
I have programatically created a csv file that contains the degree symbol, °.
The problem is when I open the file in Excel it is displayed improperly, °.
Example:
90° 00' 00''...
Hi experts
I want to know how to show the Devnagri font i.e. Hindi,french etc. I heard some cultureInfo is there but I am unable to use that.
So plz tell me how to show Devnagri font with so...
Hello
I have a webservice that accepts a class as a parameter:
Public Class LoginParams
Public UserName As String
Public Password As String
Public SecretKey As String
P...
I have a gridview that I am updating using a stored procedure. My stored procedure works I have ran test on the database directly to make sure. however when I click update in my grid view the ...
In vb.net I am trying to save the contents of a csv file into an array, i need to do this because at a later date i may need to manipulate the data in the array, can anyone help?
My code is producing the following:
<metaData protocolVersion="FIX.4.2" tag="56" position="1">
<sessionDefaultOnlyFieldComponent tag="56"/>
</metaData>
But, my user wants this in...
Hi Experts,
I'm writing a .Net 2005 application that allows for custom monitoring of my client's servers. I know that MOM works nicely for this but in this case I have to write these featu...