Makign Program Function On Httpwebrequest?
Mar 15, 2012any way to do this as the program not responds when trying to httpwebrequest.
View 3 Repliesany way to do this as the program not responds when trying to httpwebrequest.
View 3 RepliesWhat I would like to know is how to obtain form input elements during an httpwebrequest?
[Code]...
Is it possible to obtain these input elements during an httpwebrequest without having to view the html code?
I am having a problem with the BackOrdered Function of my program. I can`t get it to say anything but 0 when I run the program. Another problem I am having is the input box pops up like 6 times and it`s only suppose to once. [Code]
View 9 RepliesI have a vb6 program which shells and runs a Vb 2005 program, I would like to be able from that VB 2005 program run a function back in the original VB6 program which called it. Callback?
View 1 Repliesfunction in a GCD Program?
View 5 RepliesI need a backspace function for my program .. Basically I have a textbox where I can put numbers .. what I want is when I press a button it deletes the last character of the textbox
View 3 RepliesHow do I use this Function example in the application of Program
PHP
Public Function nichlist(ByVal message As String, ByVal keys11 As String) As String
nichlist = Nothing
Try
Dim keys() As String = Split(keys11, " ")
[Code]...
I'd like for debugging purposes to be able to log what functions are called and in what order. So I've been just putting Debug.WriteLine("myFunctionName(args)") all over my functions, logging it in the end to a file. Isn't there a better approach to do this?
View 4 RepliesI am struggling with this program which uses emgucv(an opencv wrapper for .net) for about 2 weeks. The problem is unfortunately not programming, but setting up emgucv in such a way that it works. I didn't manage to do so for vb.net so I tried doing it for ironpython(because I know python too). Emgucv seems to work perfectly when using ironpython, so I created a function that takes an image as an argument and analyses it in the way I want, returning another image with the results in it. The problem is I want to call this function, giving it the image argument(it could be a string containing the path) from within VB.net and become another string containing the result image as return. I later plan to package that project in a setup so I can redistribute it.
View 1 RepliesI have a problem with my vb.net program. Some parts of the code dissapeard but i still can run the program normaly. Even if i add a new button it doesnt appear.I have a button that uploads some files to mysql database but then i double click that button a new sub appears with nothing in it..
View 5 RepliesAny VB/Javascript guru out there that can convert this for me?[code]...
View 1 RepliesIs there a way to emulate the following HTML function in VB.net[code]...
View 2 RepliesI have a function to pull data from a XML, and to report a specific number based on a value in one of the elements in the XML. Unfortuntately, I can't get any break points to work, so I've been debugging with a trace.he strange this is that when i take out the function itself it works like it should, otherwise the Service freezes when it gets to the function and never uses it. I'm calling the function in while loop which is also within a Try Statement, here's example of the code.
Public
Shared Function GetXNumber(ByVal
audit As Audit.API)
[code].....
I'm looking to implement a sort function in my program however I am new to VB and don't know how to. Basically I have 6 objects in my program racing across the screen and what I would like is a leaderboard showing the current top 3.
View 13 Repliesi got bored earlier so instead of doing my Maths homework i thought what the hell why dont i make a program to do it for me. The problem is im getting an error with my NCR function.For those of you who dont know NCR is used in calculating Statistics generally it goes like this
[Code]...
I'm trying to pass a callback function from a C++ dll to a VB.NET application.Here is my current C++ code :
void DLL_EXPORT registerEvent( void (*callBackFunction)(string str),string str)
{
callBackFunction(str);
}
void test(string str)
[Code]...
I get a compile error Type "ctltype" is not defined with this code.
This is .NET 1.1 legacy code so not good I know.[code]...
Back when VBStudio 2005 was the latest in .net programming, I created a program that, among other things, sets the user's system clock after obtaining certain code from time.gov and adjusting it according to a set of numbers. Due to a change in one of the websites with which the program works, it stopped working. I downloaded VB2005 Express (since I reinstalled WinXP since then and didn't feel like looking for MSVB Studio 2005), opened the source code, and made the correction. The program now works in what appears to be its entirety in WinXP. However, when it attempts to perform the function I mentioned earlier on a Vista machine, an error (a built-in error I included in the program) appears. Note that even on a Vista machine, the program does have some functionality. All requests that the program makes to access other websites is done using HTTP web requests.
View 2 RepliesSince it's possible using the IsNumeric() and others VB.NET functions from IronPython by importing Microsoft.VisualBasic and using it as an object method, is it possible somehow to use the Year() VB.NET function from IronPython?
View 1 RepliesMy boss has just asked me to make an "Update Program Function" for our program.My program is being used by someone in my company. The database is put on server computer.At the present, my program run by some dll file, and when I fix or update the source code, i will compile to dll and put it on the server disk. After that, the users will go to this server disk and copy the new dll and overwrite the old dll in their client computer.
Now my boss asked me to make an "Update Program Function" : before the user login, the program will check the version (or the creation date) of the dll in the server disk, if it newer than the current dll, the program will update the new dll, else the program login normally How can i do that?
I have a function designed to detect if the program is being run on Win7. However, when it is run on a Win7 machine, it says it is NOT a Win7 machine. [Code]
View 3 RepliesI want to call a function in asp.net with vb.net when browser is closed. But I want only browser close, not tag close and other.
View 1 RepliesIs there any command in Visual basic that can execute a function every time I choose just like setInterval in Javascript
View 1 RepliesI'm developing a web application that displays items from a work queue to a user. When an item is selected I have the app lock that item out so no other user can select it. By hitting the back button in the app it unlocks the item.
I want to be able to unlock the item if the user hits the backspace key. I know what code I need to unlock it. I just need to know how to make the code execute on backspace key stroke.
What I am trying to do is go to a website using a webbrowser, and then simulate a click. I can do this easy enough when the click is on a regular button, not handling javascript. But it seems that the website has a javascript function handling the click that I want to simulate[code]...
View 1 RepliesI need drop one item from one panel to another using a drag and drop feature. These items move from different cycles so need to drag and drop it into new cycle/column.
View 2 RepliesI got the start function, but know i wanna resize the program i am gonna make it start
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
System.Diagnostics.Process.Start("C:GAMENAMEgamename.exe")
End Sub
How to add to that code and make it so it makes C:GAMENAMEgamename.exe start as windows size?
im looking for a way to have my program wait a certain amount of seconds before it goes on to the next command, ive tried the sleep command but that freezes up my program and i cannot let that happen, ive heard of using timers as a delay but i don't really know how to do that.
View 4 RepliesI am trying to write a simple program but am unable to get it to function.
Module Module1
Private Property sum As Object
Private Property number2 As Integer
[CODE]...
I'm doing a baseball program for a class project. And I almost have it complete, but it's giving me a syntax error. I can't figure out what i'm doing wrong. I'm using two functions to return a value for different type of baseball tickets to the button that calculates them. Here are the instructions 1.)User selects whether to purchase season tickets or single-game tickets 2.) User enters the number of tickets needed and the type of seats based on whether they selected season single-game tickets.3.) User clicks the Compute Ticket Cost Button to display final cost4.) User clicks the Clear Form button to clear the responseI just can't figure out what I did wrong. I know it's something stupid that i'm doing.the errors are happening inside the btnCompute sub routine. with syntax erros on SingleGameCost() and SeasonalCost() line 114 and 118
Public Class Form1
'Global Variables
Dim intTicketChoice As Integer
[code]...