Implement Multi-instance Database Application?
Jun 2, 2011
I want to learn the Database application programming. Especially, the multi-user environment. User can update the data at the same database. So, could you give me some advices ? Does it should use SQL server db ? How to connect with the the SQL server from other PC user ?
[Code]...
View 1 Replies
ADVERTISEMENT
Jan 28, 2011
i just want some opinnion or suggestions regarding database softwares. we are going to develop a system for 20 or less users, i am planning to use MYSQL community server as our database to lessen the budget for that system, i just want to know if it is ok to use that version.is there a big differece between mysql community server, enterprise server and MS SQL Server in terms of handling data i.e security, speed, etc...
View 2 Replies
Dec 7, 2009
how to make an application with a multiple user.
language: VB
resource: Visual Studio 2008 Pro(90-day trial)
Sql express (the packages when u download the VS 2008)
scenario: i will make database located in a server (LAN) and a multiple client that can access the server database to add,modify,delete records.Im not aware that building a multi-user application database is different from a normal one user application database. T_T.i read some guide and other walkthrough on building a database but it became confusing when it doesnt my requirements. coz when i try to open my database(.mdf) to connect from other client (in another station) it says its currently in use and connot connect to it. err. @_@..
View 3 Replies
Jul 10, 2009
I'm building a multi language application, but in the application, there will be some data that will be retrieved from the db. In the db I have two tables (Access Groups, Teams) the two tables are related, there are some groups, that have teams, example (sellers can belong to team 1, team 2, team 3...). The data that will change it's the names for the access groups and the names for the teams. The only way that I can think to do this, is to have the different values for all the languages in the code, or some auxiliar file, and when loading the application I'll truncate the two tables and fill them with the current language values. By the way those values never change...
View 5 Replies
May 24, 2012
I am currently working on a project for school in which I am trying to implement a multi user login on one of my forms. I have an internal database connected in which one of my tables contains the user-names and passwords. I have a For/each loop to search the table for a matching username/password before allowing access to next form. The problem is even if the username/password is correct, my message box still appears to notify of invalid credentials, but still allows access to other form. The problem only occurs when I implement two For/each loops. With one, code works fine. Can any one see what might be wrong?
[Code]...
View 5 Replies
May 28, 2011
I want to implement a fancy scroll bar for a multiline textbox like the picture below[url]....
View 2 Replies
Jul 15, 2011
I have a single instance VB 2010 application I know how to communicate with the next instances run through the StartupNextInstance application event. The usual way of working with this is parsing command line arguments of the new instance and continue execution of the old instance. What I would like to do is replace the running instance with the new one. Is there any way to do this other than disabling the single instance property ?
View 1 Replies
Feb 8, 2012
creating single instance form in MDI Application. How to check whether form's instance created or not?
View 6 Replies
Nov 18, 2011
I want to make a program that enables a game to have more than one instance running, where it would otherwise be unable to be done. How should I go about this? A sandbox? Hack?
View 3 Replies
Aug 26, 2009
I'm writing vb.net code with MS Visual Studio 2005.When running my application I get "foo.exe is already running on this machine".(Even though I'm running faa.exe instead
View 14 Replies
Mar 3, 2012
Is there a way I can have my VB application run Flash in my VB window and communicate with like the variables, objects, and other stuff in the Flash movie? Such as if I wanted to get a variable or set a variable in the Flash window.
View 2 Replies
Sep 29, 2010
I am Newbie in XMPP . I want to create chat application in VB.net using XMPP .i am having ejabberd serverin my pc.i dont know how to intract with ejabberd server via VB.net.
View 1 Replies
May 11, 2009
I want to add Ruler line to my application..how can i achieve this..
View 6 Replies
Apr 16, 2009
I am trying to build a class. I am having a difficult time conceptualizing how a class is built and how it works. I want to be able to build a USEFUL class and implement it in an application.
View 1 Replies
Aug 16, 2008
How can I implement Ajax in asp.net 2.0 application.
View 1 Replies
May 31, 2011
How to implement drag & drop for a WPF application? I could open 2 the same apps and drag an object from one to another. Here's what I want to drag:
<Grid Width="100" Height="50">
<Rectangle BackGround="Red"/>
<TextBlock>Hello World</TextBlock>
</Grid>
The Grid has to look the same in the other app where it is dragged as the one from it was dragged.
View 3 Replies
Mar 5, 2011
I'd like to implement DWebBrowserEvents2.DownloadComplete into my Application
My Code
Imports System
Imports System.Text
Imports System.Windows.Forms
[Code].....
View 4 Replies
May 12, 2010
I need help to implement multiple threads in application.Assume ds.table(0) has 5 and sometime 6 rows rows for i=0 to ds.tables(0).rows.count-1.I have to apply multiple threads, means all five/six rows should start at once using thead and "Process 1" .."Process 4" should also handled by threads.This is hierarchy that I have to apply with threads, how can I do it. It is requested to put piece of code so I can understand better.
View 13 Replies
Apr 5, 2009
how to implement undo/redo in an application? I've searched the web, and most I found don't work properly or just clear the textbox.
View 9 Replies
Feb 28, 2010
I have to implement OO scripting in VBS/JS, wondering what's the best way to do that.he scripting engine has to be able to create new methods for existing object in the application and allow calling the methods in other existing objects.
View 4 Replies
Feb 20, 2012
I was wondering how to implement a custom character set for use by an application, i.e. hex bytes that are read by the program then converted and displayed in the window. If this requires first converting the bytes in a file to an already implemented character set, I'm cool with it - I'll go with whatever works or works best. I'm writing with VB.NET 2010, and running Windows 7 Home Premium x64, by the way.
View 2 Replies
May 1, 2012
i have one problem to implement finger print scanner using we application.
how it possible,i have digital persona kit
View 1 Replies
Mar 20, 2012
I'm wondering if there is any scheduler control in Vb.Net -MS VS 2005- and if not I hope I can find a one - free - that I could use on my application...
how to implement scheduling tasks requirement in my application..
View 1 Replies
Sep 9, 2009
I know there are many cases when it's best to multi thread an application but when is it best to multi thread a .net web Application?
View 5 Replies
Aug 17, 2010
I am trying to implement image caching for a web application and I found some code on the Internet that implements an HttpHandler that does this. The code was in C# and since my web app is written in VB, I decided to convert the code to VB. I managed to convert everything except the following code (in bold):
public class FileExtensionCollection : ConfigurationElementCollection
{
public override ConfigurationElementCollectionType CollectionType
{
[CODE]...
From what I can understand, the two properties above provide a way to access the FileExtension collection either using an integer or a string index. My problem is that I do not know how to convert this in VB.
View 3 Replies
May 5, 2009
I'm trying to implement cut, copy and paste functionality in my application. My menu is on the main form of my MDI application and I would like to cut copy or paste from any textbox from any mdichild.
View 5 Replies
Aug 4, 2010
I have ran into a slight problem and I have not met this issue before today.If I create a Form at run-time with a Button on one Form using a LinearGradientBrushhow can I make the Form maintain the gradient when it is Maximized for every Form that is generated?urrently, if you create 2 Forms using the code below, select the 1st Form created and Maximize it, you will see the problem.This problem does not exst for the currently generated Form however. :-)Would I need to maintain parallel Lists Of Forms or / and LinearGradientBrushes or / and ClientRectangles?
Option Strict On
Imports System.Drawing.Drawing2D
Public Class Form1
[code].....
View 3 Replies
Apr 21, 2010
I am looking for ways to implement custom user-roles in windows application with vb.net. I got a database table called Roles with Administrator and User entries. User cannot see some of the form data. In ASP.NET MVC we can do like.
[Authorize(Roles = "Administrator")]
public function GetAccount() as Array
End Function
View 1 Replies
Apr 26, 2012
I have developed some programs for processing and issue-coding electronic documents. I am teaching myself how to work with SQL Server because I want these programs to work with electronic documents imported into SQL Server as opposed to messing around in a folder stuck on the desktop, for example. From there I want to expand on the program so that it is a network enabled program.
[Code]...
View 1 Replies
Oct 15, 2008
I'm trying to tie the AJAX autocomplete control to a textbox and pull the results from an sql database using VB. Anyone know how to do this? I found plenty of examples in c but I need to do it in VB. Here's code for C I guess but I can't figure out how to convert it to VB.
[WebMethod]
public string[] GetCountryInfo(string prefixText)
{
int count = 10;
[code]....
View 7 Replies