Make An Application Online Written In VB?

Sep 26, 2011

I am a beginner in vb.net. I have made a project in this. Now I want to make it online.Also how to use asp.net with vb.net?

View 7 Replies


ADVERTISEMENT

Make VB Application Online?

Apr 15, 2012

How can I make vb.net application online. Is it possible? so it's can be access from anywhere..

View 3 Replies

How To Make A Online Exam Application

Oct 16, 2009

i want to know how to make online exam application using VB.NET & SQL SERVER,Suppose there is a question followed by 4 options, & USER have to select one of them,also there is a time restriction for example ,30 min for 25 question and time should be visible to user.then after time over he will be not able to do anything and redirected to result page.At last it will calculate the total no of marks scored and show in graph and report wise.

View 1 Replies

Source - Mu Online Game - Can't Make Right "Server Status" To Show Online Or Offline

Jul 28, 2009

I have working on 1 program that is for Mu Online game. Its Mu Launcher program,but i'm having trouble with it. I can't make right "Server Status" to show Online or Offline I can't make autoupdater people to have using this for theyr server.

I make one file launcher.txt to get info the program but i need a lil help to finish thise program. The program is not for 1 server only its freewere . So here is the problem with the Server Status and AutoUpdater to get info from what server..

View 4 Replies

WCF Server Application Unavailable - Run Application Written In .NET4.0 (IIS6+)?

Oct 27, 2010

I am trying to run simple application (e.g. generated from template by VS.NET 2010) on IIS6. I changed it to run with .NET 4.0 (its application pool) and checked with regiis (this pool has 4.0). I also changed all possible httpHandlers (svc etc), to run with NET4.0. All possible rights are checked (i think so). Almost every request results in "Server Application Unavailable" (sometimes it is empty page with -2146232576 (0x80131700) value) and "...Please review this log entry to discover what caused this error to occur." but EventViewer and IIS Log are empty.

View 2 Replies

Make A Plugin Written In .NET?

Jun 9, 2011

I've got a C#.NET background and due to circumstances I'm trying to make a plugin written in VB.NET. I've created a new class project which gives me a DLL. This class implements a C# interface which all works.My only question is this... In my C# code I've got an implemented DLL (which loads at runtime) with the following declaration before the class...

[Plugin(PluginType.Storage)]
public class XmlPlugin<T> : IStoragePlugin<T>
{

[code]....

How do I write [Plugin(PluginType.Storage)] in VB syntax?

View 2 Replies

Application Will Not Run On Same Machine It Was Written On

May 18, 2010

I have written a program and it seems to work fine when i am running it in the environment.When I create a program to distrubute to another computer it will not run.I thought it might be a problem with the other computer but I tried to install it on the same computer I designed it on and it will not run there either.When I run it a message box pops up saying "Application cannot be started. Contact to application vendor."[code]

View 5 Replies

.net - How To Call A Function Written In VB From C# Application

Feb 17, 2012

I have a function written in vb Public Function abc (ByVal x as Integer, ByVal y as String) As String

End Function

I want to call this function on click of a button in C# applcation.

View 2 Replies

Make A Website Builder Which Has The Html Code Already Written?

Jun 6, 2009

i want to make a website builder which has the html code already written so all you have to do is check which boxes you want and click next or back to go through the process of making a website with specific code implemented in it.

P.s. im using VB 2008 express edition?

View 13 Replies

How To Make A Online .net Project

Dec 7, 2011

my name is Bogdan and I am having a litte bit of a problem with vb.net.In my computer I have instaled Microsoft Visual Basic 2010 Express...so long everything it's ok.I told one of my friend about this cool program and now we want to make a program together in our free time but from each other computer...soo how do i make a online "vb.net project" (i am not sure if i have express myself correctly)that i can access from each other pc?I google this problem and i didn't find anything and now am starting to think this isn't even possible..

View 4 Replies

How To Make Bot For Online Game

Aug 27, 2009

i have zero programming knowledge and wanting to learn programming from seeing people making bots for online games, i always seek the knowledge if things and wonder how they do them, even though its pretty useless motive lol i just want to know what knowledge needed to making bot for online game am learning know VB.net 2008 got visual basic step by step book for 2008, i was searching for online game hackers forums and hear them type things like hooks, packets sniffers , etc , so what things do i need to learn beside visual basic 2008 to make bots for online game? i wonder how can i connect my program to other programs

View 1 Replies

How To Make Online Software In Vb

Nov 14, 2010

I am working on software that is Accounts Software there a database and some forms. There is a database which is made in sql server 2000 and there are many tables. My question is that I make that software for a Clint and database will be attached in my computer. Both are using DSL internet me and Clint too. I want to that when my Clint open that software and then he work in the software then he save record so it saved in my computer database. I saw software same as there is a bat format file I have to run first it then it successful then I can open software. [Code]

This is just use when software is running in my own computer but what will be connection when my Clint will use software and he is also using DSL internet connection so how can create connection between server and Clint.

View 1 Replies

Call A Windows Service Written In Net From Application?

Sep 8, 2006

I have written a windows service to do some operation (in .net), im calling the same in .net it works quite fine without any issues. Now my problem is i need to call the same service which is written in .net from an VB application.

View 4 Replies

Integrate The App.config File With An Application Written In .NET?

Dec 7, 2009

how to integrate the app.config file with an application written in VB.NET. Specifically I need to extract database connect strings from the app.config file.

View 2 Replies

Written A Few TCP Client/Server Classes For An Application?

Feb 20, 2009

I have recently written a few TCP Client/Server classes for an application. The main thing I am worried about is if the server class is built efficient enough; I don't have any previous experience with tcp networking so I need someone to give constructive criticism and feedback on the design. I'll explain the server design below.At the very bottom of my framework is a ServerClient class, which is pretty much a TCP client with some extra methods, properties, and events. Each ServerClient continiously read for packets, once one in received, they raise a packet received event... this will come in later on.

The actual server class is simple, it uses another thread to endlessly loop waiting for connections. When a connection is found, it converts the TCP Client into one of the above ServerClients then adds event handlers for the packet received and disconnected events. Finally, it stores the newly created ServerClient into a hashtable with all of the other people who are connected to the server.

When a packet is received by one of the ServerClients it is forwarded to the server(because the event handler was set when the connection was established) and then in turn forwarded onto the application with the sender's ID.Just a brief overview, I'm not attaching any code because I don't like doing that. If you want to see it then send me a PM. I'm just looking for constructive feedback on the design; will this system work, will it scale with a lot of users, and how do large servers handle so many clients at one time?

View 6 Replies

Return Key Event Make WriteFile For Com Port 0 Bytes Written?

Jan 22, 2010

I have textbox with vbscript, user could type integers, then hit return key, KeyUp event for return would trigge theWriteFile()being called for com port to write string to the device, if Ihit return key slow, I would get 0bytewritten for WriteFile(), timeout happening basically,if I hit return keyquick,

View 1 Replies

Make An Online Transaction Program?

May 6, 2009

I want to make an online transaction program for which I need help. The problem is that, if a branch enters an entry that entry should hit three system�s databases. These three systems are connected to network but the application is not connected. For example, there is two branches namely branch1 and branch2 and a head office namely HO1. If a user at branch1 enters a record that record not only hit that branch database, but also hit branch2 and HO1 databases as well. Can I use Virtual Private Network (VPN) to do this?

View 5 Replies

Make Software Can Use Online And Put Ads On Bottom?

Sep 14, 2010

i have create some sort of software now i want to know how can i make the software only can be used when there is internet connection also i want put ads banner at the bottom...last one i need to make sure when i update the software all user that use the software will be updated automatic when they open the software?

View 14 Replies

Start MS Word From Inside VB Windows Application Written In VB 9.0

Aug 2, 2009

I need to start MS Word 2003 from Inside VB Windows Application and Load a specific Word Document.

View 4 Replies

Written A Winforms Application In Visual Studio 2010?

Sep 24, 2011

I have to run a thread create in the code.In the form1 i have a button that run the new separate thread for elaborate some data, so i need it for not freeze the form.I have inizialized thread:

dim th as thread = new thread (addressof elaborate)

And at the button.click event:

th.isbackground= true
th.start()

Now, at the form load i have iconized my program, but when i start new thread the tray icon is duplicated from it. I want to resolve that when start new thread it's not show new notifyicon.

(i don't have found anything online, only Multiple notification icons appear when using multithreading)

View 1 Replies

.net - Application Online Security?

Jan 29, 2011

I am developing and application in vb.net winxp+ (windows xp upwards). The application has to receive backup data from clients software located at different pc over the Internet. but am concerned about security of this application on the Internet. what would be the best way to implement security in vb.net 2008 to make sure that the data is not sniffed or interfere with?

am thinking of encrypting the data before sending, saving it that way until it need to be viewed before decrypting. what type of encryption would you suggest? Is there any other way you would suggest this data be sent?

View 2 Replies

Knowing Who Is Online In ASP.NET Application?

Oct 16, 2009

how to display the list of all my application users who are currently online on a gridview and every user of my application sees who's online. How do I go about this if and if I am not using the built-in ASP.NET membership controls?

View 4 Replies

Make Your Form Connect To An Online Database?

Dec 20, 2009

I was wondering how I could, for example, make a prompt, with the text in that prompt match with the text on a secure web-page.[code]...

View 4 Replies

VS 2008 - Make An Online Multiplayer Game?

Jul 17, 2011

I was looking at this example: Basic TCP Communication I was really amazed by this piece of code however it only works in WLAN. I was thinking if its possible to make the same program over internet not the same router but which can be connected to two different countries or any other place except the same network?

Actually I have created a very simple game called whack a mole. In which buttons appear and the user has to click it before it disappears. however I am trying to make it multiplayer over the internet even if i have to create a server from my PC. I dont know if its even possible. The other player should also get the same screen as the user who hosted the game just like real time.

View 4 Replies

Windows And Web Application - Code Written In VB 2005 Supports In VB 2008 ?

Mar 29, 2009

I have been developing windows and web application using Visual Basic 2005 for a long time. Now i want to change from Visual Basic 2005 to Visual Basic 2008. I would like to know what ever projects i have done in visual basic 2005 will works in Visual Basic 2008. Will the existing code in visual basic 2005 supports Visual Basic 2008 or do i need lot of modification. I haven't used VB 2008 but i hear that most of the code which written in visual basic 2005 supports visual basic 2008. What are the things i need to take care when working the existing projects in visual basic 2008.

View 3 Replies

Creating An Online For The User Of Application?

Feb 25, 2010

How to do this? creating an online for the user of application

View 14 Replies

Get An Application To Run Scripts From An Online Source?

Mar 8, 2009

Would it be possible to get an application to run scripts from an online scource? and if there is no internet connection to run scripts already written in the program? By scripts i mean standard VB code?

View 7 Replies

VS 2008 Make A Keybinder For GTA SanAndreas Multyplayer Online(Sa-mp)

Feb 24, 2010

im trying to make a Keybinder for GTA SanAndreas Multyplayer Online(Sa-mp) and i need help with the Hotkeys... Why this doesn't work? HTML

[Code]...

View 4 Replies

Connection Between Desktop Application And Online SQL Server?

May 19, 2011

I made a desktop application and I Have a server on the internet and I need to make a connection between them

Can some one advise me about this problem?

View 3 Replies

Connection To An Online Access Database From Application?

Jun 8, 2012

I am developing an application on VB.NET 2010, I am planning to make an online activation system, the idea behind is that Whenever someone installs my application, the application presents user an activation form, user will be entering product key, name and email address, and then system will establish a connection to a database which contains all the keys on WEB. So how should I make an efficient program to get rid of that.

View 2 Replies







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