Write A Simple Windows Form That Will Make It Easy To Record A Voice Message Before Uploading It To A Remote Web Server?
Oct 2, 2011
I'd like to write a simple Windows form that will make it easy to record a voice message before uploading it to a remote web server and sending the URL to the recipient(s):
[URL]
Currently, the user has to use Sound Record to record the message, use an FTP client to upload it to a web server, and finally, use an e-mail client to send the URL. I'd like to combine those three features into one.
View 14 Replies
ADVERTISEMENT
Aug 2, 2010
I have a file uploading and viewing page in ASP.Net 1.1 using VB. Now the page will be visible in intranet as well internet. Here in my case the intranet and internet servers are different. How can i save the uploaded file in the intranet server and view from there subsequently when the activity is done using the internet server?
View 1 Replies
May 3, 2012
I am having trouble in creating a login form in my windows application.If i create a login form with its database local to the system ,it works fine .But my requirement is that the database is placed on a remote server so that the login is secured.When the user tries to use the application he first needs to login.When he puts the username and password in the login form it should send the data to a remote server for authentication.
View 12 Replies
Mar 11, 2010
The goal -- use VB.Net to write a windows forms application that responds to a limited set of voice commands after the user says a keyword, (such as "Wake Up"). I have the following code I am using from another site but I am getting an error I do not understand (nor do several others who posted comments at the same site.)
Imports System
Imports System.Data
Imports System.Deployment
[Code].....
If I had any understanding of how to create a grammer file I MIGHT be able to avoid this error completely, since I am only interested in a few voice commands (maybe 30), not the whole 60,000 word dictionary.
View 2 Replies
Aug 23, 2009
I want to make a pretty easy program which repeat some easy things for me
STEP 1: on the first picture I want it will wrote a URL in the form + example [url].....
STEP2: thenI want then the program press on the link Get video
STEP3: and after that will the program "Right click here to download the video"and copy link location
STEP4: finally I want the program will paste paste URL into a new form? is this hard to made?
STEP5: if its possible I want also have a button example name "generate" which add a number of the URL from [url]...10000 to [url]....10001 and the repeat the things and paste into the form>is this hard to wrote a program which made this steps?
View 2 Replies
Jun 29, 2010
i want to make some simple program for encrypt / decrypting message using VB, my problem was when i want to decrypt the message, the result was incorrect,
Code:
Dim decryptor As Integer = TextBoxhasilencrypt.Text
Dim privatekey As Integer = Labelprivatekey.Text
Dim modulus As Integer = LabelModulus.Text
[code]....
the logic error on the program was when the "power of" are odd
View 2 Replies
Aug 19, 2009
Im wanting to display a Login message after my user Logs in. The Database has a column called AName where the users display name is stored. I have:
[code]to let them login. At this point I want to grab the value in AName and display Welcome 'AName'
View 2 Replies
Feb 13, 2012
I was about to make an error message when there is no record both pat_brgyno and pat_famno in the database. I don't know how to make it. What my logic says is something like this:
mtb=maskedtextbox
if mtbbrgyno.text<>pat_brgy and mtbfamno.text<>pat_famno then
msgbox("No Record"
[Code].....
View 8 Replies
Nov 1, 2009
I need to create a application that will allow me to connect to remote computers and find out the os like w2k or xp so i can run the right scripts for that os.be able to input add an ip or computer name and pass it all scripts like bat, vba and psexec.
I would like to be able to put all util files and scripts in a single dir and have the selected from 2 or 3 differant dropboxs ie... bat's in one droplist and vba's in an other dropbox ect...
have preselected buttons to perform basic function:
1. who is logged on
2. what OS and service pack info
3. connect with netmeeting or remote desk top
4. run a remote command on remote desktop IE.. open with my user account a CMD, Control Panel, Explorer, Explore Network Connections.
have the app ping the pc first to verify connectivity, then execute the script or bat.
View 1 Replies
Sep 3, 2009
While a fairly simple form it has had its problems. The latest is an error message (see below) that I do not understand and hence cannot correct. I have looked at the other postings, but did not see one that would apply.
CODE:
View 5 Replies
Mar 2, 2009
how can I get the path of Windows on a remote server. I know that for the pc that is running the application I can do System.Runtime.Interop Services.RuntimeEnvironment.GetRuntimeDirectory but on a remote server, how can I do?
View 5 Replies
Feb 22, 2012
for the any of the button in vb the c# code which is written is not working at all after running a form example: exit, message box even these also not working give me solution
View 1 Replies
Aug 24, 2009
I need to develop a simple radio message logging app for use on a small military exercise.Now, the app is quite simple in itself, it needs to let me easily submit a new message report simply containing "from", "to", "message", "category" (and timedate, etc). Now the problem is that I have no experience with programming anything up against a database. I know basic SQL but I just dont know how to work with databases programatically. What kind of local SQL database solution works best with vb.net and Visual studio? Maybe I should use an Access database instead?When I click submit (on a new message report) how can I make an entry in a local SQL database of some sort? How can I load up a list of the message log entries already made in a listview or something?
View 3 Replies
Feb 20, 2009
need remote system viewing and voice chating sdk in vb6,any body know pl tell me,i will pay money, i will buy.already i am using 30days invitation and voice tapi3,but thats working lan only,
View 2 Replies
Dec 21, 2011
how can i access remote sql server 2005 work on windows 7 ? and in the seem time i donot like turn off firewall .
and how i can make sql server listen to it port 1433
View 6 Replies
Dec 15, 2010
I am trying to build a windows app that uses a remote SQL server to login to the system. I have setup the SQL server on a vmware machine all the conections work fine I have created a form Login with TextBoxUser and TextBoxPass and a submit button.I have added the database conection and created a query called Login
SELECT COUNT(*) AS Expr1
FROM Users
WHERE[code]....
View 2 Replies
Jan 31, 2012
I am looking to make a SMTP (Port 25) listener to listen in and accept incoming mail, look at the message source, make changes if needed, and retransmit the message out another port. This iwll make it act like a sort-of intermediary service.how one would write a port listener in VB.net, that could listen in on the port, and display the message in a text box (the whole source, headers and all, since that's what the mail comes in as anyway).
View 3 Replies
Sep 27, 2010
I was wanting to make a simple client-server program.I saw some code for it and it was easy to understand but it was with winsock.
The program is:
Client: Clicks button.
Server: Recieves Text written in clients textbox.
Is there a reasonably easy way to do this?Maybe Net.Sockets or something similar?
View 3 Replies
Jul 31, 2010
How can i record voice directly from mic
so i want to have a record button when the user clicks it the system will start recording from the mic. and once the user finish recording then save it in a mp3 format file
View 1 Replies
Feb 19, 2010
I have an application where in tcp/ip voice communication will takes place. When voice call is going on, I need to record that voice call in my application. How can I do that? I need to record that call in any better audio format and save into the pc.
View 1 Replies
Mar 9, 2012
I want to ask you a question. Can you tell me how can i record a call from my phone to my PC? What method should i adopt? Should my telephone is is connected to my PC through a wire?All is Well
View 4 Replies
Mar 8, 2012
I want to ask you a question.Can you tell me how can i record a call from my phone to my PC?What method should i adopt? Should my telephone is is connected to my PC through a wire?
View 4 Replies
Aug 20, 2011
I'm trying to make a simple appbar on the right side of the screen. I have accomplished this many times before.. but I can't seem to get it working in Windows 7. The placement seems right, and as far as I can tell the messages seem to be in the right order. I have tried both Windows.Forms.FormBorderStyle .None as well as Windows.Forms.FormBorderStyle.FixedToolWindow. What am I doing wrong?
[code]...
View 3 Replies
Apr 14, 2009
I have a project that up until recently has been working fine. It sends an email message to a user once a file has been successfully uploaded, registered and/or approved to use the website. It is written in VB.NET framework 1.1, running ASP.NET on a Windows 2003 server SE sp2.
First the code
Public Sub EmailAfterRegister(ByVal sEmail As String, ByVal sUser As String)
Try
[code]....
This has worked for over one or two years. Today I realized upon testing I get the following error:The procedure entry point IstrcmpiI could not be located in the dynamic link library MSDART.DLL.Upon some research I found that maybe I needed to install MDAC 2.8, which i downloaded and installed today, however i still get the same error. I have had my communications and network admins check traffic and connectivity to the smtp server and all is working fine. Yet I still get the error.
View 2 Replies
Aug 7, 2009
Can anyone tell me how to add a Excel like form to a Windows form so I can add and remove rows/colloms and do simple calculation. It would be nice to have tabs along the top.
View 4 Replies
May 6, 2009
New to Visual Studio 8 running on Vista with Office 2007.Attempting to create first simple form with data grid using Nwind.mdb Customers table. Data source is created and using Preview data actually shows the data contained in the table.After dragging the DataGridView onto the new Form1 no data appears in the grid when the form is run.
View 4 Replies
Mar 18, 2010
[Code]...
How would I send that to a remote server as if I had just filled out a form on a webpage? Specifically... I'm looking to have a program automatically log me in to a web site like Facebook, get important details/updates, then log out.
View 2 Replies
Jul 20, 2010
I'm trying to write a windows app that will download files from a server. It is working fine for small files, but not the larger ones (50Mb+)- I get the error "An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full."This is the code I am using:
Private Function DownloadFile(ByVal fileSource As String, _
ByVal fileDestination As String, _
ByVal WebRequestType As String) As Boolean
[code]....
View 1 Replies
Nov 26, 2011
I am missing something simple. I know how to bind asp.net datagrids and webforms, but this is my first time trying to bind to an object list of T in a windows form. (I am use to using datasets with datatables and im trying to get away from doing that).I have a simple object list that gets populated on the form load. However if I click a button to add a dummy record the datagridview does not display the new record added. The bindingNavigator (if clicked nextrecord) and "debug stops" all show that the new record I just added to the object list is there.
Even adding the datasource object in the watch list shows the new records are there. They are just not displaying.
I cannot seem to figure out as to why the new record is not being displayed in the datagridview when I can see the record got clearly added to the datasource.
[Code]...
View 4 Replies
Jun 7, 2009
Inserting remote image onto windows form in vb.net?
View 1 Replies