Finishing The Rest Of The Line?
Jun 25, 2010
When I start typing a variable (or whatever), VB pops up a little box with all possible variables starting with the letters I already typed. It's really smart!
However this option has somehow been disabled. How do I enable it again?
View 7 Replies
ADVERTISEMENT
Jan 24, 2010
I have a line shape which I am using as a straight 'finishing line'. As the program runs an identically shaped line shape appears. I am a little confused from where and how it is appearing, as I only have the one line shape. Also, on some runs of the program 'trails' of the cars that are racing across the screen remain.Are these issues something simple I can fix?
View 5 Replies
Mar 6, 2012
[Code]...
i cant figure out how to tie it all together, just trying to find a way to include all of the numbers rather than the ones i listed without writing them all out..
View 1 Replies
Jan 2, 2009
I've been applying some recursive techniques to the second version of my app. This recursive procedure simply iterates through all nodes in a tree view and tests whether the text in the "department text box" matches the text name of a particular node. If there is a match, then the user's name, stored in the "name" variable, is added as a node to the node that has the same name as the department text box text.
[Code]...
View 5 Replies
Nov 17, 2011
I'm trying to finish an assignment for my Introduction to Visual Basic class. I have to program an application that will determine if a word entered has consecutive letters in the alphabet as a substring of itself. Three examples are T"HI""RST"Y, AF"GH"ANI"ST"AN, and "STU""DE"NT.This is what I have so far:[code]....
However, it doesn't run properly. It says I'm trying to refer to a location that is out of bounds, although I don't see why.
View 12 Replies
Jan 30, 2010
In the process of finnishing up the application. Some NOT all beta testers have had the same problem.
An error box that states: Unhandled exceptions has occurred in your application. If you click Continue, the application will ignor this error and attempt to continue. If you click Quit, the applicatiob will close immediatly.
An error occurred creating the form. See Exception.InnerException for detailes. The error is: Could not load file or assembly "Microsoft VisualBasic PowerPacks vs, Version = 9.0.0.0, Culture=neutral, PublicKeyToken=b03f50a3a' or one of its dependencies. The system cannot find the file specified.
The details displays this: See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box.
Exception Text
CODE:
JIT Debugging
To enable just-in-time (JIT) debugging, the .config file for this application or computer (machine.config) must have the jitDebugging value set in the system.windows.forms section. The application must also be compiled with debugging enabled.
For example:
CODE:
When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box.
This does not happen on all the forms within the app, just some. This happens on some systems running XP and the app runs fine on others running XP. So foar it has run on all systems running Vista. It happens some of the time on Windows 7
View 3 Replies
Jun 2, 2011
when i try to add new data source aftre selecting the table & befor finishing i got the message..An error occured while creating the new data source
An error occured while generating the data source and in error window following error does come Custom tool error: Failed to generate code. Failed to generate code. Invalid access to memory location. [code]
View 1 Replies
Aug 13, 2011
How do I post this HTTP REST request using HttpWebRequest and System.Xml.XmlDocument in vb.net
<tns:request command="hello" xmlns:tns="http://www.xxyyzz.com/xx/yy/zz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />
The server responds with
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><response xmlns="http://www.xxyyzz.com/xx/yy/zz"><operation location="/mm/10d9c79e-5876-4fd0-9093-ff7bdee5ebd4/uploadInfo" command="uploadInfo"/></response>
how do i capture this response?
View 1 Replies
May 26, 2011
I am currently developing an application using VB.NET in which I am using the REST WebServices. I have been able to do the basics with REST, however, I have not been able to add an attachment (more specifically upload a file, using REST which gets attached). I have done extensive research online, but so far I have not been able to find any working examples in VB.NET. To actually upload the data I use System.Net.WebClient. The following VB.NET code does the important work:[code]As you can see, the postString is converted to bytes and then uploaded to the server. However, I do not know where or how I should be posting the raw attachment itself. The documentation for the service we are specifically using states to use a variable "attachment_ 1," which I added to the postString variable, but I am not sure what the next step should be. Should the file be converted into bytes and appended to the postBytes variable?
View 1 Replies
Sep 2, 2009
i am getting an input from the user and i m checking in try catch statement. what i want to do is when the exception is caught i want to stop executing the rest of the code. my code is as below
Public Class AddForm
Private Sub Add_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Add.Click
Dim inc As Integer[code]......
View 4 Replies
Jan 2, 2011
I am working on a .NET 3.5 Windows Forms application that will interact with a REST Web Service which outputs an XML file such as the following:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<Response Status="OK">
<Item Name="NumberZones">2</Item>
[code].....
View 2 Replies
Dec 18, 2009
I need to send over data to a REST API.I have a dataset with a datatable with the nececessary data. The data has to be in a specific format. I have a .xsd file with the format needed and a .xml file with an example.
View 26 Replies
May 11, 2012
I have located some sample source code in visual basic to call a REST API. However, I need to modify the code by adding two request headers.
' Create the web request
request = DirectCast(WebRequest.Create(sURI), HttpWebRequest)
'Update request headers with request pairs Header1/"header1 value" and header2/"header2 value"
??? HttpWebRequest.headers.Add ????
[code]....
View 2 Replies
Jun 23, 2009
I have this code within a button: If TextBox1.TextLength = 3 Then MsgBox("Please enter 3 numbers followed by a letter. For Example 001A")TextBox1.Text = "" Me.Refresh() End If Although if the user enters 3 numbers only, I want the rest of the code in the button to be ignored so that it doesn't proceed.
[Code]...
View 3 Replies
Jan 30, 2010
For this program im using http method post to recieve messages from the server, when its waiting for a new message to be sent it locks the program up. No biggie, ill just thread the sub... Bad idea... I also have functions "send", "Connect", "disconnect". All on threads... i looked at task manager it started getting up to 100+ threads. I dont know much about threads but that just seems way to much. they will die off and the count will return to 20 but id like to find a different way of keeping the program from locking up but not having 100+ threads.. Little off topic: i used a user control. The only problem now is on the tab, its not anchored with the rest of the form... how do i accomplish this?
View 4 Replies
Nov 5, 2010
I cannot figure out how to build a VB.NET REST web service. I can't find any tutorials on the internet and the Microsoft templates only come in C#.
View 2 Replies
Feb 16, 2012
I've just created my first web application project.Now I want to add a RESTFul service.It can be pretty simple, all I need is to pass 1 string (userid) and 1 integer (objecttype) and return a json result.
View 1 Replies
Jan 11, 2012
I'm just curious that how a month is calculated in the rest of the world because Differences in Months between two dates are calculated differently. In our Insurance Company, we calculate a month as below:
[Code]...
View 1 Replies
Jun 24, 2011
say you have something like:
int num = 0
then you do
if(num > 5 || num < 4)
[code]....
View 3 Replies
Jan 18, 2012
private String[] createid(String id,HttpServletRequest req) throws Exception {
try {
final Client client = Client.create(); [code]....
View 1 Replies
Feb 17, 2011
I'm trying to write a program which allows a user to determine how many 'I's will go into a text box. (i.e if they select 10 then the text box will look like I I I I I I I I I I ). I'm writing a program where if I click on one of three buttons then a number of 'I's will disappear out of the text box. Button one will subtract one 'I', button two will subtract two 'I's, and button three will subract 3 'I's. I don't know how to get the information from the button into the program to subtract the correct number of 'I's. If I press button one, and I have:
Dim OneI as Integer = 1
How do I get the 1 in the OneI variable into a calculation outside of the btn sub, like into a function or a different sub?
View 3 Replies
May 22, 2009
Public Class frmMain
Private p_dlgAdd As frmAdd = Nothing
Public ReadOnly Property _dlgAdd As frmAdd
[code].....
View 4 Replies
Feb 18, 2010
I found this code on here while doing a search and would like to be able to use it but it was written in C and I dont know much about that (don't know that much about VB.NET either but trying to learn)[code]What I do have is a text box where a user enteres a desired number of US dollars to convert to three types of currency.I know how to convert the string entered to an integer so the calculation can take place. What I don't know how to do is modify the above code so that the results will show up in the correct text boxes after each calculation (yes I know I have to convert the integer back to text).If someone could show me how to do the first Select Case I can figure the rest out.
View 12 Replies
Jun 21, 2011
I have the following controller actions:
<HttpGet()>
Function News() As ActionResult
End Function
<HttpGet()>
Function News(ByVal id As Integer) As ActionResult
End Function
I want it to be smart, and go to the first if I have no ID in the url, and the second if there is. I got the following error:
The current request for action 'News' on controller type 'MarketsController' is ambiguous >between the following action methods:
System.Web.Mvc.ActionResult News() on type TradeChaseMVC.MarketsController
System.Web.Mvc.ActionResult News(Int32) on type TradeChaseMVC.MarketsController
So, I thought if i explicitly created routes without the id parameter optional, like this:
routes.MapRoute( _
"Default2", _
"{controller}/{action}/{id}",
New With {.controller = "Home", .action = "Index"},
New With {.action = "^[a-zA-Z_]+$", .id = "d{1,8}|"}
[Code] .....
It would work, but it doesn't same error. Now I know the simple solution is to call my methods different things, but i don't want to do this. I was also thinking of creating an attribute to prefix the ID method, to check for ID being there, and if it isn't dont allow that method, but I can't get this to work either.
View 2 Replies
May 10, 2010
This is what I am trying but it doesn't work. The idea is to rest the caret position at the beginning after I hit enter and the conents od Textbox1 are deleted
Private Sub TextBox1_Keydown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown
If e.KeyCode = Keys.Enter Then
[Code].....
View 9 Replies
May 21, 2012
I'm trying to send an image to Rest Interface but having an issue with the Transfer Encoding and Chunked properties.
The specification for the INterface is as follows:
PUT/api/upload/filename.ext
Authorization:<http Digest auth header>
Accept: text/xml
[Code].....
View 2 Replies
Aug 21, 2009
I've searched for a solution with no luck, can you help? I've a DataViewGrid with a DataGridViewComboBoxColumn, bound to a dataTable which all works fine but I need to undo the user selection in some cases.
When the user selects one of options I validate that the chosen option is appropriate for the rest of the row. I can do this in the CellValueChanged Event and easily determine if its good or bad - is this the correct event to do the check?
The problem I have is that I want to roll back to the default value in the DataGridViewComboBoxColumn if an invalid selection is made:
[Code]...
View 1 Replies
Jun 10, 2009
My project is like this. When I select from "TypeComboBox" and "BeanComboBox", the "PriceTextBox" will display the appropriate amount of the "Private PriceDecimal". But when I added the "Private SnackPrice", it will display only the 1st array, (0, 0) for both array. I try using "Select Case" but doesn't work. I don't know what the problem is. Or maybe it can't be done like this? One structure can have one array?
Private TransactionCoffeeSale(30) As CoffeeSale
Private NumberTransactionsInteger As Integer
Private SnackPrice(,) As Decimal = {{1D, 2D}, {3D, 4D}}
[code].....
View 1 Replies
Sep 10, 2010
What is the best way to access a Rails 3 REST-ful web service, developed using standard Active Resource techniques including HTTP authentication over SSL, from a VB.NET consumer?Consumer can be .NET 4.0 if that is necessary.Are there any .NET libraries yet that can bridge the gap?
I have already come across links like this [URL]..web-services/), which use Linq.XML or XML.XPath to parse responses and generate post data for REST-ful web services. I have in fact coded a system similar to the one at that link, except for a different geo-coding provider and using XPath instead of Linq.
View 2 Replies
Aug 17, 2011
I am trying to write some code to serialize the XML returned by the Bing Maps REST location query. So far my code parses down to the "ResourceSet" level and then screws up. am trying to have the "ResourceSet" element parsed into an object of "LocationResourceSet", since this is a location query and the "ResourceSets" vary depending on the type of REST call
Imports System.Xml
Imports System.Xml.Schema
Imports System.Xml.Serialization
[code].....
View 5 Replies