Show More Than One Result?
Dec 3, 2009
Using
Dim RXLIKEIT As New System.Text.RegularExpressions.Regex("(?<="">).+?(?=</a></td>s<td>)")
MsgBox("Did you mean't:" & (RXLIKEIT.Match(DL).Value))
How do i put it show more results than only one "RXLIKEIT"?
View 6 Replies
ADVERTISEMENT
Mar 23, 2010
I am using the Math.Exp function in a calculation, and the result essentially is Infinity / 1 + Infinity, which is 1 statistically, but it is showing as "NaN" (not a number). Is there a way to calculate/show the result of this as 1 (besides just testing for NaN and explicitly setting it as 1?) [code] X is a number larger than 709.782712893 in order to get the NaN result.
View 18 Replies
Nov 28, 2011
I'm working on some coding katas and managed to finish the algorithms and am now coding it?However, I can't seem to get Command Prompt to display the result.
Here's the code.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
[code]....
View 7 Replies
Mar 11, 2010
i have a division of 2 integer that give me a result as2,3944534 ...how i can give e result as
View 3 Replies
Jun 22, 2011
i've been working on a project that works with a MySQL DB, and every time the SQL executes and adds the listbox items it wont show the first result i have no idea what i am doing wrong here.
vb.net
Dim NwConn As MySqlConnection NwConn = New MySqlConnection NwConn.ConnectionString = "server=XX.XXX.XX.XX; user id=XXXXX; password=******; database=*****;" Try NwConn.Open()
[Code]...
hope someone can give me a solution or if someone can tell me what i have been doing wrong.
View 2 Replies
May 18, 2009
I have a situation to show response coming back from host in some control of a Form and want to print it.The response is coming from Host mainframe system in text based format. I want to show the response in a graphical format. I am looking for suitable control that help me to print and should look like word document. I looked PrintPreview and PrintDocument controls but my requirement is there should be some control on Form where my formatted output should be placed (like Rich Textbox). Which control I should use.
View 6 Replies
Oct 21, 2009
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]....
The end result is baffling me here are 2 examples when I debug
Mine: 640.1 * 49 = 31364.9
Debugger: 640.1 * 49 = 31360 ( not right needs to show the correct decimal )
Mine: .775 * 3 = 2.325
Debugger: .775 * 3 = 2.325 ( shows it perfectly???)
View 1 Replies
Aug 3, 2009
is there any way I can run dxdiag in the background and then show the result in a richtextbox?I know there are tools that can run dxdiag and show you the information.How can I do this so the information appears in a richtextbox?
View 6 Replies
Feb 10, 2010
How do i code so my program will give me a message box if there are no result of my database search?
there is the code for the search. [Code]
View 10 Replies
Nov 15, 2011
I have a question regarding LINQ 2 SQL and data integration with textbox:I have one textbox and button on my form, one stored procedure and LINQ 2 SQL class file in my project,I want that when I hit button, my store procedure run the SQL query and show me the result in textbox.I am using VB 2008 and Visual Basic for programing.
View 2 Replies
Sep 22, 2009
When logging into my system, I select the number of result that needs to appear on the report. In my stored procedure it selects count of all the data for a period. It returns all in the information, but I only want the number of records to appear on the report that I selected at the beginning.
View 1 Replies
Aug 3, 2010
I need to pupulate a Grid, but i like to do like Microsoft SQL Server Management Studio, when you make a Select to a table with bounch of rows, it start show the result but in the botton still retriving data.So you can start looking the data, not like you get the data and after you get the last row you can asing to the Grid.
View 6 Replies
Aug 10, 2009
Today I installed VB 2008 express and having some older experience with VB at school I tried to translate some algorithm functions to VB. I came across these lines which are very simple.I had one textbox and wanted to show The result is x when i click the button. so, here is the part of the program.
Dim x As Integer
Dim y As Integer
Dim w As Integer
[code]....
Because I write on paper in pseudo, "The result is", x would be correct and would show The result is x but instead, VB finds error. Does , indicate space here or does it recognise it as something else?
View 16 Replies
Dec 10, 2010
I am currently having a headache on how to solve this problem that i am facing. here is the situation: I have a combobox and a list box on the main form. The combobox will get the data from the ms access database. In the database, i have the details of a person's IC, Name and DOB say for eg on one entry I have D215311523C,SHAWN,13/04/1987 So now, my combobox on form load will show the list of dates in the database to allow the user to search base on the date itself by clicking on the selected date. So when the user clicks on the particular date say 13/04/1987, people in the database whose birthday is 13/04/1987 will be shown on the listbox.Meaning to say if i have 3 entries whose dates are the same 13/04/1987, 3 entries will appear. If there is only two entry, then two results will be shown. But now, when i do a single click on the date, one result will be shown. That is correct. But the problem is when i click on the same date again, three of the same results will be shown on the list box. that is it will display : 13/04/1987 13/04/1987 13/04/1987 which is not the case. Then it will show more duplicates of the same results if i click more times on the same date which should not be the case.
Dim n As Integer
Dim numbers() As Integer
Dim StartFrom As Integer
Dim EndAt As Integer
[code].....
View 3 Replies
Sep 25, 2010
I am using a datagrid in my where i am having four columns. In first column the parameter values are entered and in the second column measured value is entered and in third column the nominal value is entered.Inthe fourth column the result is displayed by subtracting the measured value and nominal values. I am doing this calculation in Datagrid cell validated event. What i want is,there will be many rows in the grid,when typing the value in the third column the corresponding result will be displayedin the rowof theresult column,save button will be displayed while the form loads,when the calculate part is completed that is there should not any cell of the resut column empty then i should enable the save butto.
View 2 Replies
Oct 14, 2009
I am encountering the following issue So i have a device that sends stuff at the serial port, i then parse it and put it into an array of bytes like that:
Dim HCI_Command_Rcvd_Byte() As Byte All good till here What i wanna do is make an array and put this result every time the serial port gives me a new result, for example:
[Code]...
Basically what i wanna do is let the port parse the messages, fill in the array with the result at an empty spot in this array and then i will have a separate thread that will look in into this array in each non empty space and after it looks into the non empty space it will use or discard the info and also mark this space as empty (after it checked)
View 7 Replies
Apr 16, 2010
I just read about DataSet in VB.NET, it uses disconnected concept. My question is: if my apps has "List All" button that query data from 1 table in the database, and that table has "very very very" many rows, so my DataSet will be filled with those data and eat up memory. Can I limit the data that being put to the DataSet from that query? But I want to be able to retrieve the next data from the same query if the user want to see it?
For example:
I have 1000 rows in my database, and i query all of them. But I just want 200 rows being inserted to my DataSet, but if the user want to see rows number 201 and so on, I want to be able to retrieve the next 200 rows, and so on. So it just like cutting those data into a group of 200 rows. Can I do this with the concept of "disconnected" of the DataSet?
View 5 Replies
Jun 21, 2011
I have set up a method in vb.net and in xcode for encrypting a string using as far as i can tell the same parameters for an AES encryption.I've looked all over the place but cannot find information on whether they use the same encryption algorithm and settings.
this is the vb.net code:
Dim encryptAES As New AesCryptoServiceProvider()
Dim encoding As New UTF8Encoding()
Dim encryptor As ICryptoTransform
encryptAES.Key = encoding.GetBytes("12345678901234567890123456789032")
encryptAES.IV = encoding.GetBytes("1234567890123416")
encryptAES.Mode = CipherMode.CBC
[Code]...
View 1 Replies
Feb 20, 2011
I have a textbox1 and button1 and panel1 (which is used as a popup control)i want if textbox1.text="show" then modalpopup control whose id is panel1 will be visible on buttonclick event other wise .... modal popup control panel1 will not be shown ...how to do this ? using vb.net ?
View 2 Replies
Jun 6, 2011
SQL statements:
SQL = "SHOW TABLES;"
Try
conn.Open()
The remarked area works fine when I'm accessing a specific table. I've successfully inserted the products_model field into the combobox too. The datagridview does show the table names in the db using the SHOW TABLES sql statment, but I'm not understanding how to get this info into the combobox instead.
View 1 Replies
Aug 14, 2009
Can anyone help me to make a program which include a Button shows the current Month and the year and when clicking the button it shows a DialogBox ith a MonthCalender (this one I have done - the Monthcalender shown on a Dialogbox).Further I want to change the month shown as a Text of the Button when I click other Buttons to make the calender to go backwards or forwards,
Another thing I want to know is how to make the TreeView which expand / reveal another line or something on clicking the "Plus".I am learning only VB 2005 / VB 2008, please give the codes etc for VB 2005 only.
BTW, Can you tell me how to paste a picture in this writing place? I tried to paste the picture to shoow what exactly I want to do, but I couldn't do it.
View 9 Replies
Mar 7, 2010
I'm writing a program for my algebra students to practice integers.Stuff like....
3-6
-4 + (-5)
3(-4)
-15 � 3
etc.
I want to show an explanation and for the addition and subtraction, I want to show it on a number line. For example, if the problem is 3 - 7, the number line should show and arrow to that goes right to 3, and then left 7 units (starting from 3). Then the student can see that the answer is -4.I could probably do this with some string manipulation, but what would be the easiest way to do it in a picture format? Maybe a bitmap.
View 1 Replies
Jun 8, 2011
how do you show information from a datagrid cell to show up in a text box in another form, this is for a college project.
View 1 Replies
Nov 7, 2010
How do you refresh a datagridview in code to show to show new data in the DB?
View 3 Replies
Sep 8, 2010
i allready have date values in a datagridview and datasource is Access table
dim endindex as integer
datagrid.currentcell = nothing
dim table =mydataset.tables("Booking")
[code].....
View 3 Replies
Nov 18, 2011
stock table
fkodsno
[code].....
View 1 Replies
Sep 14, 2011
I need to run TWO Threads in a web application, .NET. 3.5 Both methods MakeRedCars and MakeBlueCars need to run at the same time as both take 5 seconds. I have tried many example codes with very bad results. I dont need anymore than 2 threads. The main issue I am having is knowing how to wait till they are finished and also how to store the results from each.Each of the Methods do different things, one is a web request, one is a sql call.
Both methods return a list of(cars) for example do:
carList.addrange(MakeRedCars())
carList.addrange(MakeBlueCars())
for each car in carlist<br>
response.write(car.colour + "<r>")
next
I have implemented the answered below and with empty objects all works well, as soon as you hook in a database call that returns the data/objects studio does a JIT and crashes.
View 5 Replies
Dec 2, 2009
I need to check if my SQL statement returned any results from the Access db I'm using to store my data.
I have this code atm:
cn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=D:Computing Projectdatabase.mdb;")
cn.Open()
[Code]....
I would like to be able to check (maybe via a boolean value or something) that this result returned a query. I'm using VB.net.
View 3 Replies
Feb 29, 2012
As of right now I am getting no compile errors with my code, everything runs they way it is supposed to go except for one minor detail. I have a private function named MonthlyPayment() that does a calculation for a loan. The calculation runs as expected and I get the correct results by typing in Console.WriteLine(MonthlyPayment()) but it is not in currency format. To fix this I set FinPayment equal to MonthlyPayment [FinPayment = MonthlyPayment()] and typed in Console.WriteLine(FinPayment.ToString("C")), But this just gives me NaN as a result.
Here is my full code:
' The following code was created for McBride Financial Services to use to amoritize loans.
' This console code will calculate and display the monthly payment amount to fully amortize a loan.
' This console will prompt the user to input values for the loan amount, the term length, and the rate.
Module Module1
'Declares strings used for user input values
[Code] .....
View 6 Replies
Jun 5, 2010
I declared a variable which is the sum of two other variables. I simply want to display that result on the screen. I think a msgbox is what I need to use but I'm not sure.
View 2 Replies