.net - Normalizing URI To Make It Work Correctly With MakeRelativeUri?
Dec 9, 2009
[URL]
In here output is:
../../xxx/xxx.asp
Which looks correct almost all web servers will process the two of the following as same request:
[URL]
What's the best way to fix this behaviour is there any API to do this, or shall manually create a new URI and remove all // in the path?
View 2 Replies
ADVERTISEMENT
Feb 21, 2012
just had a walkthrough in class and the example code our teacher gave us does not return a value. I am having alot of trouble with my current assignment because I do not see whats wrong with it. It is supposed to take two numbers entered by the user and add them together for a total with a tax rate, but it continues to return all 0's heres what the code looks like:
Public Class Form1
Private Sub BtnCalc_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles BtnCalc.Click
[code]....
View 3 Replies
Dec 31, 2011
Consider the following:
class Bind
{
public string x { get; set; }
[code].....
View 4 Replies
Jun 15, 2011
I have a Form that I named "Taulukonvalinta". This has 2 buttons (Ok and Cancel) that are defined as OK and Cancel.However, when I call the actions from my main form, Form1, only the "OK"-action works.>[code]
View 4 Replies
Aug 30, 2011
I am trying to use impersonation when running an exe on a server. It appears to log in correctly but windows still doesn't recognize the Username.
View 2 Replies
Aug 5, 2010
I have written an MDI text editor, its almost complete, but I cant get the save as menu option to work correctly.
HTML
'This sub routine controls the save as menu option
Private Sub SaveAsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles[code].......
So whats happening is that it opens the dialog ok, saves the document to my chosen location correctly, but opens a new document and gives the new document my chosen file name and leaves my saved document with the file name New Document.But when I close all the open screens and then re-open my saved document its all as it should be.
View 1 Replies
Apr 6, 2011
On my software , i have a function for search in the list a member . The function have more fields : Girls , Boy , Old , etc ... but the software doesn't work correctly. I want him to search with several conditions, adding AND. Here is the code :
Vb
For Each MemberALister As MemberInfo In _Listemember
If Me.Girl.Checked Then
If MemberALister.Nom.Contains(Me.Genre.Text) Then
[Code]....
View 21 Replies
Feb 25, 2012
How do I get the SuspendLayout and ResumeLayout to work correctly in regards to a listview. I have added these lines of code before and after I have added the items, yet each item is still being displayed as I add each item.
My code:
Dim x As Integer
Dim startTick As Integer = Environment.TickCount
lstFiles.SuspendLayout()
For x = 0 To UBound(cacheListArray)
[code]....
I am adding 2000 items. This takes 7 seconds. I was told that it should be a lot shorter than that. Is that correct?
New code:
Dim ListViewItemArray(-1) As ListViewItem
ReDim Preserve ListViewItemArray(UBound(ListViewItemArray) + 1)
ListViewItemArray(UBound(ListViewItemArray)).Text = file.Name
[code]....
Nothing is being added. What have I done incorrectly?
View 1 Replies
Dec 14, 2010
After upgrading my solution with both c# and vb.net projects I have encountered some problems:
1. When for example writing Public Property MaxDate As Date and pressing enter it does not create the Get/Set values
2. Refactoring is not available
3. The properties window is blank when viewing classes (normally I would see Serializable and COM properties to the right)Intellisense works and the above problems work in new projects.
View 3 Replies
Jan 21, 2010
My debugger doesnt work correctly anymore and I want to let it work correctly cause i've done some changes in my project but when I click on debug then it just shows my old layout.
View 4 Replies
May 12, 2012
I've tried these two blocks but it returns the same value. I do not describe more, I simply just show the code:
Dim f As Nullable(Of Integer)
If f = 1 Then
Console.WriteLine("Equal")
[Code]....
It works in C# correctly...
View 1 Replies
Aug 5, 2009
Add a new report to a windows forms project. Now add the table data region from the tools. If you don't already have a strongly typed dataset displayed in the data sources view, get that ready. Now do the tried and true easy-to-use trick of dragging a field from data sources onto the table's details row.
[Code]...
View 3 Replies
Feb 2, 2011
I have an application that requires data be entered, and after entering, a button is clicked to process that data. Clicking the button works just as it should--the data is processed properly. In constructing a test module, I provide a set of data values, followed by:
btnWhatever.PerformClick()
Nothing happens. I have used this syntax for years, and it has always worked flawlessly. I have triple checked everything else and isolated the problem to the failure of the PerformClick(). The PerformClick() is in a test subroutine that does nothing but fill textboxes and labels with default data, then calls the PerformClick() on the button to begin processing. Again, the button works fine, the data is entered as it should be, but the PerformClick() does not fire the click event.
View 21 Replies
Nov 25, 2011
This is driving me round the bend. I'm a long time VB.NET forms developer, quite new to ASP.NET and completely new to MVC. I'm creating vbhtml pages that use the VB.NET razor syntax, and I seem to be constantly fighting against the UI which is trying to indent my code incorrectly. Take the following example, based on the template page for a new Razor view:
@Code
Layout = Nothing
End Code
[code].....
View 2 Replies
Feb 24, 2011
I have a login in system that i'm creating for a game. I have this code for checking to see if the username and password are correct in the text file.[code]I want to know how to make the for loop stop once the username and password have been found correctly.Also, where would I put a message box saying that the username or password are not correct if they don't match up or they're not in there at all?
View 3 Replies
Jun 8, 2011
How to make my counter work. I keep feeling like I'm putting it, or maybe just part of it, in the wrong place so I've been moving it all over the place but haven't found anything that works yet. I'll paste my code below and it will be the code that seems to not stop when it reaches the end of my counter. Other ways I've tried it make it stop after one or two, depending on what I did to the code at them time.
Here's what I have at the moment:
Public Class mainForm
Dim guessCounter As Integer
Dim correctAccumulator As Integer
Dim totalAccumulator As Integer
Dim answer As Integer
[Code] ......
View 1 Replies
Jan 1, 2011
VB.NET While 1 = 1
Dim localRecv As New StreamReader(localClient.GetStream)
Dim aString As String = localRecv.ReadLine
localRecv.Peek()
MsgBox(aString)
End While
Basically "aString" will keep updating if new data arrives to the server. This way does work, and keeps MsgBoxing every time I get new data, but I don't wanna use While, I need something else, because It won't run any other code, just keeps looping that. :/
View 9 Replies
Jan 24, 2012
I am using datagridw view control for input purpose but when the datagridviewcell in edit mode the it is no problem to move current column to next column but when it is not in edit mode then and pressing enter key then it is moving to next row and the same column. but how to take over this problem please give me dn idea.
View 2 Replies
Apr 18, 2011
How to make a 32 bit VB.Net com add-in work with 64 bit Office 2010?
View 10 Replies
Aug 9, 2009
I'm looking for some advice on how to make my app work with different resolutions as I have posted a demo game on the forum but the game was designed on my laptop which is set to 1280x800 but a few people who have tried the demo are having problems as they are using 1024x768.
Is this a case of getting the computers resolution when the app starts and alter the size and position of controls?
View 11 Replies
Mar 14, 2011
I am using the code below for paypal notifications. I checked the notification history and it comes back as payment_status is Complete BUT the VB code performs the code for the "INVALID" case...
'Post back to either sandbox or live
Dim strSandbox As String = "https://www.sandbox.paypal.com/cgi-bin/webscr"
Dim strLive As String = "https://www.paypal.com/cgi-bin/webscr"
Dim req As HttpWebRequest = CType(WebRequest.Create(strSandbox), HttpWebRequest)
[code]....
View 7 Replies
Mar 30, 2011
Below is a test program I am trying to get working with using SENDKEYS to send strings to a window.The appactivate never makes the notepad window become the current window in focus and the sendkeys doesn't work.
View 8 Replies
Aug 18, 2010
I made a custom button to input keypresses:
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class KeyInputButton
Inherits System.Windows.Forms.Button
[code].....
View 3 Replies
Aug 12, 2010
I'm trying to convert a function in C# to VB.Net 2008 and can't seem to make the Lamda expression work. The code is taken from a neat little C# SMTP server that saves emails to Azure blob storage
[Code]...
View 3 Replies
Feb 13, 2012
I am making a game that involves moving picture boxes automaticly i can get the boxes moving but I need them to be object orientated but when I try to make it a class i am not to sure how to declare the veriables to make it work. [code]
View 3 Replies
Aug 19, 2009
i have a timer and i want its calculation will be done on another thread, since the timer tick event start whenever its enable property is set to true i don't see how to force it to work in another thread.
View 6 Replies
Feb 3, 2011
I need to write a program that uses 'try' in it
the program can only accept a number if its bigger than 3 otherwise it would give a error message and return to the start of the [code]...
View 16 Replies
Nov 16, 2009
Im trying to make a counter/timer but cant get it to work,
i have a timer and a label
ive been trying to get it set to "00:00:00" Hours,Minutes,Seconds
It justs needs to keep counting up each time.
View 3 Replies
Jul 21, 2011
Do you know how to work backgroundworker with this code? The request would be as I pulled out of google with a background worker and if so it is possible to collect links from google pagination.
[Code]...
View 1 Replies
Jan 28, 2010
I'd like to use it to do some graphing. I'm trying to make MS Chart Control work, but all tutorials/code snippets that I've seen require ChartName.ChartData to populate the chart. When I enter this, I get the blue squiggly line of death:
Private Sub Form1_Load()
Dim array(1, 1) As Object
array(0, 0) =
[code]....
why this is happening? When I hold the mouse over Chart1.ChartData, I get the message "ChartData is not a member of System.Windows.Forms.DataVisualization.Charting.Chart".
View 5 Replies