Answer Fax Call - Start Receiving?

Jun 3, 2011

I have installed the fax service in windows. I want to write a code in vb.net program that start receiving from a fax call.

View 2 Replies


ADVERTISEMENT

Start Receiving Faxes At Computer

May 26, 2010

i want to start receiving faxes at my computer using vb.net also doing that by modem

View 11 Replies

Possible To Call .exe Files With Shell() Or Process.Start()?

Aug 8, 2011

I have an issue in my project I am programming in both Matlab (Matlab2011a) and Visual Basic (VS2008).I've created a .exe file from my matlab code. It works well when I click on it with my mouse.But I need to run it within Visual Basic. I know it's possible to call .exe files with Shell() or Process.Start(), and it works well for files such as firefox.exe or notepad.exe. However, it doesn't work when I call my own .exe file ...It's weird because when I look to the Task Manager while trying to call it (within VB), I can see the process starting and ending, but its output doesn't appear.

View 5 Replies

C# - What Happens If Call Start() Two Times On Class System.Windows.Forms.Timer

Dec 28, 2010

Imagine that I have a System.Windows.Forms.Timer with 1000 ms interval. If I call Timer.Start() method and after 500 ms I call again Timer.Start() what happens? The second Start call will reset the interval or not? Are there any side effects?

View 3 Replies

Launch A Java Executable (let's Call It MyApp.jar) From .Net Using System.Diagnostics.Process.Start?

Apr 20, 2009

I want to launch a java executable (let's call it MyApp.jar) from .Net using System.Diagnostics.Process.Start. What's the syntax in VB.Net? The command line syntax is this (if I recall it correctly - because i tried it a few days ago and it worked).

java.exe -jar MyApp.jar pathToSourceFile pathToDestFile

How do I run this command in VB.Net, using System.Diagnostics.Process.Start, assuming I have the following three string variables in VB.Net

pathToJavaExe
pathToSourceFile
pathToDestFile

View 6 Replies

C# - Detect If Application Start Using A Manual Handling (Pressing An Icon) Or Start When Windows Start?

Feb 28, 2011

I have made my application to start automaticly when windows start (registry ../currentversion/run/appname + path). In this mode the application start minimized and an little icon appear in the notification icon area. With this icon you can maximize the app or exit it.If you exit the app and start it again using the Menu (Start/programs etc) than the application start in minimized mode (and in this case I would like to have it in normal mode) because the setting autostart is still true.Is there a way you can detect when the application start when windows startup using the above registry or when people click on an icon in the programs menu (or desktop)?

View 2 Replies

Get Rid Of Zero Or Replace It With 'Answer'?

Jul 11, 2011

I wrote my first program today and it works like I want it to Except when the Message box pops up there is a zero there untell you press the OK button then the answer displayes. How do I get rid of the zero or replace it with "Answer"?the program consist of 2 buttons, a labes, and a text box, when you enter a number in the text box then press button 1 the answer displayes in the label. If you press button 2 the answer displayes in a message box.I am new to programing and this is the first program i wrote without following a tutorial or book.[code]

View 14 Replies

Can't Get A Clear Answer What To Use ToString For?

Feb 22, 2009

I've googled like crazy and tried MSDN but I can't get a clear answer what to use ToString for.

View 11 Replies

Get The Answer Of A String Formula?

Apr 27, 2011

In the user input of a textbox I would like that the user can input a formula to make it easier for him. So instead of inputing 400 I would like the user to have the possibility to input as 8*50. Is there a command for vb2008 to calculate the answer of this formula inputed by a string ?

View 2 Replies

Get The Loop To Stop When It Has The Same Answer Twice In A Row?

Jul 2, 2009

[Code]....

As this Loops round, the answer for formula will eventually become the same as what was input, X. How can I get the Loop to stop when it has the same answer twice in a row? The counter will count how many times it has had to Loop before finding the repeated answer.

View 3 Replies

Quadratic Calculator - Answer Comes Up As NaN

May 29, 2010

I'm new to the server and I'm making a quadratic calculator with my friend. I have my calculator coded, but whenever i click the calculate button the answer comes up as "NaN". Here is the code.
TextBox4.Text = (intVarB * (-1)) + (((intVarB ^ 2 - (4 * (intVarA * intVarC))) ^ 0.5) / (2 * intVarA))
The Variables "IntVarA", IntVarB, and IntVarC are defined as public variables in a code module.

View 4 Replies

Rotating Answer Came From Database?

Apr 8, 2010

i am going to create one system which is related to test skill and it is in VB.Net and access database it has a question and four answer. both are coming from database,my problem is how do i change answer sequence everytime.whenever user tried for the test, answer sequence should be different.

View 14 Replies

.net - Rectangle Width(probably Easy To Answer) VB?

May 2, 2012

Dim energybar As New Rectangle(9, 154, energy, 21)That is my new rectangle, now when I draw it e.Graphics.FillRectangle(Brushes.Blue, energybar)It says there is no width but the integer energy is = to 100...now, how do I fix this? It but be somewhat simple.

View 1 Replies

Asp.net - Creating A Message Box, If Dropdown Answer Is Yes?

Mar 3, 2011

I have a working dropdown box that gives the answers yes & no.When "yes" is selected I need to create a message box that displays a simple message and allows the user to click ok, to get back to the survey.I have been working with it, and tried several things but no luck. What would the code look like, and where exactly would I place it to fire at the right time.I am working in VB, with an aspx & aspx.vb page.

View 3 Replies

Auto-answer Dialog Boxes?

Apr 1, 2009

I am writing a program for FEMAP API interface in VB 2008 Express. Some API commands open user dialog boxes which requires yes or OKcancel inputs. So much for automation "Sendkeys" do not work, because code execution stalls at the line which opens the dialog boxes. I need stg that runs in parallel, watches for these dialog boxes, and sends the right keystroke at the right time.

View 7 Replies

Calculating Value And Showing Answer In Label?

Jan 24, 2012

I have several buttons in my form and they each need to add, subtract, divide and multiply certain values together but I seem to be having problems with this. I didn't expect anything to go wrong and its probably a rookie mistake, but take my first calculation for example; a user must enter a value in a textbox (txtDays) and and also when one of my various radio buttons are pressed a value shows in a label (lblDailyHireCharge). I now need a way of multiplying these values to give me my answer shown in a label. I have done this by adding a button when which pressed multiplies the txtDays value with the lblDailyHireCharge and then shows it in the label, however it keeps on showing "0" when i click it.

Below is my code, I am basically saying that the value of both of those figures is intDuration and that lblDuration is where I want it to go when the button is clicked.
Private Sub btnDuration_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDuration.Click
Dim intdays As Integer
Dim intDailyHireCharge As Integer
Dim intDuration As Integer
[Code] .....

View 10 Replies

Change Color Of Text According To Answer?

Oct 10, 2010

This might be a basic question but I am just starting in VB. How can you change the color of the text of a form if a person selects they are a boy or girl. I want the text to be blue if they select boy and pink if they select girl.

View 2 Replies

ComboBox Results Equaling A Answer?

Feb 4, 2011

I have 3 ComboBox, I need the selection of the combobox to equal a number, (for example, the first option would = 1, second option would =4 and so on).the numbers will then be added up to show the sum.

View 2 Replies

Concatenate A Equation And Answer To Text Box?

Mar 22, 2011

In our school theres a programming class and the teachers gone for the week and the sub is starting to get very frustrated, so I offered to help in any way i can. I have never programmed Visual Basic but I have programmed Ms-Dos, Javascript, HTML, *.vbs, *.ahk, *.gml, and a variety of other languages.

The class is going to build a program that calculate how many rabbits are born in a family. So when they click the button it shows in a text box the actual equation and then the answer after the equal sign that where i assume concatenation comes in.Here's the code I've thrown together for when the buttons pressed:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim RabitAmount As Integer
Dim ShowEquation As String

[code]....

I got the equation to answer it self and show in the text box but it won't show the equation?

View 7 Replies

Evaluating An Algebraic Equation And Getting The Answer?

Jun 19, 2009

I store a formula in the database such as the following:GrossIncome+(Overtime/0.5)-Deductions=BasicNetIncome

I am able to substitute the string representations with actually values entered, thus:1000+(150*0.5)-100=BasicNetIncome

Then I remove the '=BasicNetIncome', thus:
1000+(150*0.5)-100

How can evaluate the above equation to return a result:

[Code]...

View 1 Replies

Flowchart Drawn At The End Of Your Answer Document?

Apr 12, 2010

I am just starting to learn this programming. But of this is very challenging. The question is:Explain what the code in the GuessLetter procedure you added does.Add your answer as a flowchart drawn at the end of your answer document. You can use the Word Draw tools to draw the flowchart. HINT: Your flowchart should have four decision points. Here is the code for Hang Man.

[Code]...

View 3 Replies

Have TextBox On A Form In Separate Answer's

Feb 4, 2011

I Have a textBox on a form to give me my IP address (but I have 3 anwser's going into 1 textBox) When I use a button to revile The anwser's,all in one Textbox .How can I seperate Each anwser's with a space. Code Below: (TextBox5 is the TextBox I need to seperate the Answers) [code]

View 12 Replies

How To Do An If Statement Based On The Yes Or No Answer Of A Message Box

Sep 27, 2009

how I could do an if statement based on the yes or no answer of a message box...as follows

messagebox.show("do you wish to discard all information?" "Discard", MessageBoxButtons.YesNo)
if messagebox = yes then
...
else
...
end if

View 3 Replies

How To Squeeze Answer In Radio Button

Mar 17, 2009

I have a radio button. Four in fact. All connected to a database. The Radio buttons are the answers to the questions. Button A, B,C, and D. Now in the database some of the answers are very short, one or two words, but some can very lengthy. So, my answers seem to disappear if lengthy (argh), I cannot make them shorter. How do I squeeze the answer in the Radio button? Can I add what.I do not want to change from radio button to something due to the extreme low knowledge of VB08.

View 9 Replies

NumberDecimalSeparator Is Giving The Wrong Answer?

Oct 16, 2009

I've got this code to get the decimal and groupseparator settings on a computer:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim NumFormat As New System.Globalization.NumberFormatInfo

[Code]....

The problem is that on my computer NumberDecimalSeparator should return "," and NumberGroupSeparator should return ".", but it's just the other way around when I try to get both separators from my system. What could be going wrong, and even more important, how to get the right strings? I did check my locale setting to make sure I'm not crazy and I also didn't switch the textboxes.

View 2 Replies

Program Giving Wrong Answer

May 7, 2009

I'm currently creating a maths game for primary school children and have questions based on addition, subtraction, division and multiplication.I tried it out yesterday and if I type in the correct answer, I get told it's wrong, but if I type in the in the number I'm dividing by, as the answer it comes up as correct. How do I change this so that the correct answer is actually the correct answer?

View 2 Replies

Quiz Program - Asking Five Questions With Yes Or No Answer

Mar 19, 2009

I'm trying to make a quiz application with Visual Basic at the moment. I want to write a routine that asks five questions to which the answer must be either Yes or No. It must add up the number of Nos and if the number of Ns is less than two then print out "pessimist", otherwise print out "optimist". So far this is the design of what I've done. [URL]. However, I have no code which I've produced on my own.

Code:
Public Class Form1
Inherits System.Windows.Forms.Form
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
End Sub
End Class

I really don't know how I can kind of add up all the results from each individual question, seeing as radio buttons are used.

View 2 Replies

Sql :: There Are Fewer Columns In The INSERT Isn't The Answer?

Jun 30, 2010

I have an application that converts one database to another and one of the functions I use is insert_Note below. This application has multipule threads all inserting diffrent data into the new database. The code below works for a number of inserts ranging between 24 and 120 but then fails with the error:There are fewer columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.I you look at the code you will see that this cannot be the problem as the code works for some inserts but not all. What else can cause this error in a multithread applicationuld be welcome as I have spent three days on this and got no where!

*Public sub insert_Note
Dim sql As String
Dim cmd As New SqlClient.SqlCommand

[code].....

View 1 Replies

Use VB Express 9 To Get The Answer But To Show The Work?

Mar 11, 2010

I'm currently in Logic, Design, and Programming at college and we have homework over Arithmetic Operations.For example:100 ^ 2 - (((43 2) + 17) Mod 5 - 7.4) * 3 = 10,013.2

I need to solve it, we can use VB Express 9 to get the answer but we need to show the work. I've done fine up until the question. We have a test tomorrow and we are have 30/100 points just over math equations where we aren't allowed any use of the PC or calculator and I'm stuck on how to break this down.

[Code]...

View 16 Replies

.net - Why Cancelling 6 WebRequest Using Task.Start Takes Longer That Thread.Start

Jul 24, 2011

I have custom asynchronous WebRequest class that I am testing to find out how fast the request will be cancelled and found some odd results, that starting 6 WebRequests with TPL and cancelling them right away takes 25 sec, but when I used just regular background threads it took only 5 sec.

Update: Running them without cancelling takes with Task.Start 9 sec and Thread.Start 3 sec accordingly.
Imports System.Net
Imports System.Threading

[Code]....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved