VS 2008 Remove Duplicate Legend And Secondary Axes In A Graph?
Nov 25, 2009
When I isolate the following code to create a chart, the result is normal. But when I call it from a control, duplicate legend and Y-axis scales and labels appear.
I did a line-by-line comparison and detected no code differences.
1) What is the likely culprit?
2) Is there a cleaner way to activate a graph?
Private Sub Button15_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button15.Click
Dim frm As New WindowsApplication1.Form8()
[Code].....
View 5 Replies
ADVERTISEMENT
Aug 24, 2006
I'm using vb.net code to open and populate a crystal report but having problems trying to rename the legend values on the graph. Has anyone figured out how to change these values in code.I'm using VB.NET 2003 and crystal Reports 11.I can change a fields settings by declaring...[code]
View 2 Replies
Mar 7, 2011
My requirement is to graph (scatter graph) data from 2 arrays. I can now connect the data from the array and use it on the chart. My question is, how do I set the graph's X- and Y- axes to show consistency in their intervals?
[Code]...
View 1 Replies
Jul 28, 2010
see this codes scrapes all href links and check if it contains "/file/" to save it but I get duplicate links saved so If i can change this code to work some how with Innertext("More") I will have no duplicatestried to configure it to work with innertext it just doesn't fit the way I think it should ;/and if anyone can add how can I remove duplicated urls on my txt file that would be really nice I might need it
Dim links As System.Windows.Forms.HtmlElementCollection
Dim b As String
links = WebBrowser1.Document.Links
[code]....
View 2 Replies
Sep 1, 2009
I was just wondering if someone could show a code sample that will remove any duplicate text from Textbox1.text (with multiplelines).
I need to remove the sentence "Send a private message to" and prevent it from entering Textbox1.text.
View 16 Replies
Mar 27, 2012
I have a List object and I want to remove the duplicated items but leaving at least one of the duplicated items in the list;I wrote something like this however I would optimize this code for better performance, is there something faster?
Const chars As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
Dim rnd As New Random()
Dim mylist As List(Of String) = Enumerable.Range(1, 100).Select(Function(i)
[code].....
View 3 Replies
Oct 27, 2009
How to remove duplicate resources...
I get this error
"there is already another resource with the name....."
View 1 Replies
Aug 16, 2009
2.0 28 Blue (2 14.00 63.0) [2 12.43 54.3] 42111 9275 55111 -1725
2.0 28 Blue (2 14.00 64.0) [2 13.50 55.3] 40611 9275 53611 5775
2.0 28 Blue (2 14.00 58.0) [2 12.21 54.3] 49611 9275 55111 -3225
5.5 28 Blue (2 20.00 17.0) [2 13.50 26.3] 111111 51275 97111 5775
[Code]...
View 1 Replies
Apr 11, 2010
I've come unstuck on a certain point. I am trying to find a way to compare two lists and output only lines which are unique. In other words, remove both occurrences of duplicate lines.I'm relatively inexperienced with VB.NET, but this is how far I have managed to come;
Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim LinksList1, LinksList2 As String
LinksList1 = Replace(RichTextBox1.Text, "#vch", "") : LinksList2 = Replace(RichTextBox2.Text, "#vch", "")
[code]....
1) search the array to find duplicates and add them to a second array, then have a second pass to remove anything which matches the second array.
2) search the array for one duplicate and store it, then search the array again to remove the duplicates, and run that process until there are no more duplicates.
Then again, I could be going about this completely the wrong way. If that's the case, feel free to knock some sense into me.
View 10 Replies
Jun 5, 2011
How to make an code to works in that way, if the word is on box1, remove ALL from box2. Theres 3 box and 1 button like that.
[Code]...
View 1 Replies
Apr 8, 2010
My browser application has an option to display all the "href" elements of a web page in a datagridview.
I use the code below to populate the datagridview.[code]...
View 10 Replies
May 28, 2012
i don't have any idea how to remove or prevent duplicate item in a listview when ever you update it or insert value to your data base.
View 5 Replies
Jun 5, 2009
when I load items in to a treeview, there's several items the same.Say it's like this:[code]How do I delete the duplicate items so it only shows subitem once?
View 7 Replies
Oct 26, 2010
I have to extract from a text, group letters (2-by-2 characters), for example : from this string : "THIS IS SOME" => THHIISS IIS
View 32 Replies
Jan 7, 2011
Having trouble removing Duplicate lines in a text file. (Exact Duplicate lines).
If I have a text file called animals.txt, how can I use the StreamWriter to loop through a text file, and erase and duplicate lines?
For example: If the text files says this...
cat
cat
cat
dog
[Code].....
View 4 Replies
Feb 23, 2010
I have a treeview that gets populated from a MySQL database
i want to find out how to go thru each item on the tree and delete any duplicates
View 4 Replies
Jan 13, 2012
I'm sorry if it's a duplicate of some question but this is specific on Vb.Net Regex function.
I need to remove any occurrence of 3 or more duplicate characters on a given string. For example:
Dim strTmp As String = "111111.......222222 and 33"
Dim output As String = Regex.Replace(strTmp, "????", "")
Debug.Print(output)
The "????" part I guess should be the Regex expression, which I must assume I know almost nothing about.
I don't know if that's the correct syntax. But I need the output to come as:
"1.2 and 33"
View 1 Replies
Nov 20, 2009
Compare textboxes and remove duplicate lines/text..
View 3 Replies
Nov 24, 2011
this is the code working 100% for (merge , remove duplicate lines and Store ) two text file using vb.net Imports System.IO Public Class Form1
[Code]....
View 4 Replies
Aug 9, 2009
I'm using VB .NET and I know that Union normally works ByRef but in VB, Strings are generally processed as if they were primitive datatypes.Consequently, here's the problem:
Sub Main()
Dim firstFile, secondFile As String(), resultingFile As New StringBuilder
firstFile = My.Computer.FileSystem.ReadAllText(My.Computer.FileSystem.SpecialDirectories.Desktop & "1.txt").Split(vbNewLine)
secondFile = My.Computer.FileSystem.ReadAllText(My.Computer.FileSystem.SpecialDirectories.Desktop & "2.txt").Split(vbNewLine)
[Code]...
View 2 Replies
Jun 29, 2010
I'm in VB.NET 2008 and I'm using the chart control. I want to fix the range for the y-axis, though.
View 2 Replies
Mar 28, 2012
I'm making a program for my courses pharmacology in which several pharmacokinetic charts are shown. According pharmacokinetic math functions and the input from the user, values are created and are shown in 4 series per chart. The Y and X values can differ very much. Manual chart areas are almost no option for me, because of the diverse outcome.- How to I create special gridlines or crossings at Y=0 and X = 0. My values also negative and positive. Is it possible to make the values and Yaxis/Xaxis appear in the middle of the chart at 0,0?
View 3 Replies
Apr 26, 2010
is it possible to make one application send a task to another application and recieve the result from that secondary app?i made a text editor program and i added a scan feature and i made another app that has ocr capabilities.The scanner ability is in my text editor program, the ocr program doesnt scan you have to input an image into it and it will give text result a few seconds later.the prob is alot of times the ocr code uses sooo much memory and crashes when its incorporated with my text editor, but individually each application works fine and doesnt take too much memory. Memory wont be even an issue if the ocr program is standalone so that when it is done decoding image the application can be made to exit. now here is the question, how do i make my text editor send the image to the ocr program and how do i make my ocr program send the text back to my text editor? is it possible? i mean the only way i know off is creating temp files in a certain folder and having a timer on each program that keeps waiting for temp files. That just seems like pretty lame coding to me i was wondering if there's a better way?
View 11 Replies
May 9, 2012
I am trying to display the label name and percentage in the legend of pie chart that I have in VB.NET. Below is the code. I cannot find any library reference or code samples to lead me in the right direction that works in VB.NET. The pie chart looks and works fine except for this.
PieTable.Columns.Add("Status")
PieTable.Columns.Add("Count")
PieTable.Rows.Add("Pass", LineCounter - FailCnt - WarningCnt)
[code]....
View 1 Replies
Jun 18, 2012
I created a tool that creates a kml file where several Scrambling codes ( SC are simply number) are shown on google earth and to each of SC is associated an automatic color:
For i = 0 To ListBox2.Items.Count - 1
Dim intR = oo.Next(0, 256)
Dim intG = oo.Next(0, 256)
[code].....
View 2 Replies
Oct 28, 2009
I am working on simple handover process from one mobile station to other. I got three proposed results service disruption time, network entry time, connection set up time. I also have the result of these three as by using some conventional way and got improved these three delay results by proposed way.
Results are store in textboxes. Now i want to show graphically. E.g. I want to show conventional service disruption time on x axis and proposed service disruption time on y axis or vice versa. Let suppose I want to have a scale on axes from 1 to 3000 milliseconds. Then I want to show how purposed scheme is better. I am using VB.Net 2008
[Code]...
View 2 Replies
Jun 17, 2012
i am doin a project where I make quadratic graphs from data but I can't the negative axes to be in the middle I am doing this project on visual basic 2010 express edition and here is my code.
[Code]...
View 5 Replies
Jun 9, 2011
I am using axMSChart objects to display charts in my VB .Net Windows Forms App.I am also trying to export them to a PowerPoint presentation which I automatically generate using Office Interop.However, when I use EditCopy to copy the Chart to the clipbord and paste it into PowerPoint, the color of the Edge of my Bar Chart is set to red for the firstSeriesCollection and green for the second one.
View 1 Replies
Sep 7, 2010
How to create HTML fieldset and legend in asp.net code behind? and add controls in that fieldset?
View 1 Replies
Jun 22, 2011
I have a list of 100,000 urls in list(Of string) which can contain urls in the form. [URL] i have tried using a combination of regex and the Uri class, but that didn't help, so i dumped the code. How do i filter these duplicates and keep just one of these url
View 8 Replies