C# - .NET Based Desktop Open Source Booking Application?

Feb 11, 2011

Anybody know of an existing open-source booking systems in Sports Clubs or Leisure Facilities based on .NET?

View 2 Replies


ADVERTISEMENT

Open Excel On Local Desktop Using Remote Desktop Application ?

Jun 11, 2012

We have a Windows Forms VB.NET application running on Windows Server 2008. Users access this app using Remote desktop.The app displays information in Excel, but Excel opens on the server.Is there a way for the .NET app to launch Excel on the users local desktop?

View 1 Replies

Trigger And Add A Button In Datagridview For Desktop Based Application?

Sep 4, 2009

I'm not sure how I can trigger the button in the datagridview ?? it is quite different from the gridview in web development application.

View 2 Replies

Hotel Booking System Programme - When Booking Button Is Clicked It Can Search A Database And Find The Best Suited Room

Jun 22, 2010

I have created a hotel booking system programme. However, I am puzzled as to how when the booking button is clicked it can search a database and find the best suited room (RoomType) and make sure that it is available (Date of Departure < system.date).

This data is held in two tables (Access):
Booking:
BookingID (Primary Key)
CustomerID (Foreign Key, Table:Customer)
Date of Arrival (Date)
Date of Departure (Date)
RoomID (Foreign Key,Table:Room) Room:
RoomID (Primary Key)
RoomType (Text)
RoomPrice (Currency)
Floor (Number)

This has all got to be done within a single button click. Any ideas as to how I can place this into my vb code?

I have a rough query for picking a room that is best suited:

Code:
SELECT roomID
FROM Room INNER JOIN Booking ON Room.RoomID = Booking.RoomID
WHERE Room.[Room Type] LIKE '" & Room_TypeTextbox.Text & "'"
AND Booking.[Date of Departure] < Now()

I have been trying for a while to get it to select a single matching record as there is a high chance that this query will return multiple records but im unsure on how to deal with that.

View 16 Replies

Send A Pure Oop Based Desktop Application Developed In .net 2008 And Sql Server 2005?

Dec 23, 2010

would like to send me a pure oop based desktop application developed in vb.net 2008 and sql server 2005?

View 3 Replies

.net - Example Open Source WPF Touch Application?

Oct 12, 2011

I'm looking for some WPF applications specifically designed for touch. Preferably they'd be open source. I don't really care about the apps function, I just want to get some design ideas for a Win7 WPF touch app I'll be writing. I'd like to see what can be done with WPF touch.

View 2 Replies

Develop Open Source C# Application?

Jul 5, 2010

Is it possible to develop open source VB.Net/C# application, I have developed many application using .Net, but first time want to develop open source application.

View 7 Replies

Open An Image In Application To Be A Source?

Nov 26, 2009

my resources :
VB Express 2008
and its free packages :
SQL Server Express Edition
SQL Server Compact 3.5
OS: Vista Home Prem 64-bit
Unit: Qosmio X305-Q705 (Laptop)

First of all is it possible to achieve my project with these limited resources i have?

I'm planning to create a program like a database for reporting system (using database) where i can open an image and save that image as a source and bind to a certain record in my table then be displayed later on to my report.

View 1 Replies

Forms :: .NET PC Booking Application?

Oct 11, 2011

I am making a vb.net client application that works with a php based website where users can reserve a pc for themselves at a certain day and a certain time. I have made the application in such a way that upon logon, it queries the database and finds the person who booked pc at this time and compares the username to the person logged on. If it matches a welcome screen is showed with additional options. Else a window is shown which says "This PC is already booked. You will be logged of in 10 seconds".

The problem i am facing is, i have coded the close button to logoff since i dont want user to bypass this part, but yesterday i saw that if i close the app directly from taskbar (processes) it just closes.without logging him off.How can we code or is there anything we can do that, even if he closes the application through task bar there is still an instant log off?

View 6 Replies

.net - Using MS Access Database As A File Format For Desktop Application Needing Open / Save Type Functionality?

Oct 29, 2010

This is probably a pretty novice design question. I'm trying to work my way through a number of requirements and give the users the experience they're looking for.I've written a tool that does big calcluation-type things. It currently consists of a class library and command line tool (separate .NET projects.) We're using an Access database format as the file type because it can keep all the various tables together in one file. A few other items about the application: There are not many users. There are no concerns with scalability. There are not great concerns with updates. Desktop is desired. Not web.Using VB and .NET 3.5 SP1

I now need to develop a GUI front end that will allow typical File/Open and File/Save type operations.Users expect that they can open a file, edit it some, then either choose to save it or close it unsaved without any changes being written back to the file. Saving it would obviously save all changes affecting all tables back to the file.

Does it then make sense to use a temp file for something like a proxy then? To, when a user "opens" a file, copy the source Access file to a local temp file and then use that for the editing session? Then, if the user "saves", copy the local temp file back to the source path?

Update: [tagged with ms-access tag too] Also, I omitted the fact that users would expect typical File / Save As functionality too. I think the design I've put in question in this post is what is traditionally called the Proxy design pattern. Has anyone tried this (successfully!) with Access database files before? Words of caution or advice?

View 2 Replies

.net - Avoiding Overlapped Bookings In Booking System Application?

Aug 22, 2011

If a booking is present in database on 12/27/2011 at 5:00 pm for 2 hours and i try to make a new booking on 12/27/2011 between 5 to 7 pm then my code generates an error message. Even if i try to book at 4:00 pm for 2 hours it generates an error message as the 2nd hour will be overlapped here with already made booking from 5:00 to 7:00.

Now here comes the problem part. When day changes it doesn't generate error message i.e. IF a booking is there on 12/27/2011 at 11:00 pm for 3 hours then it should not allow new booking till 12/28/2011 2:00 am but when i try to book 12/28/2011 at 1:00 am it saves it in the database and doesn't generate an error message. I want an error message generated in such a case.

I am using two separate fields in database one for time and one for date. Both of them have DateTime datatype.

newtime refers to time on which i'm trying to make new booking addednewtime refers to time after adding the duration to time on which i'm trying to make new booking

[Code]...

View 1 Replies

Obtaining RDP Details - Launch Remote Desktop From And/or Source IP Address?

Jul 26, 2010

Our company uses Remote Desktop to allow our staff to access their computers remotely. Our staff first VPN's into the office and then from there, they can use Remote Desktop to access their computers.I would like to obtain details about where employees are logging in from. More specifically, the computer name they used to launch Remote Desktop from and/or source IP Address.Is this possible? If so, does anyone have any examples?

View 6 Replies

Winforms - Multi Branch Desktop Based Project?

Mar 21, 2010

I am currently working on a multi branch desktop based project using VB.NET 2008. My Admin want to see the list of currently working branches and not working branches. Additionally they want to know how long a branch is not working.

To display the offline branches I first take a ListBox control named lstListBranch and then upon that control I take another ListBox control named lstListTime to display the offline time.

I want to permanently hide the scrollbar for lstListTime control and want to scroll lstListTime when lstListBranch is scrolled.

View 2 Replies

Wpf - Change Mediaelement Source Based On Actions?

Apr 15, 2011

I have a WPF 4 and VB.net 2010 project. I am playing videos in a single mediaelement. This is what I need to do:When the window first opens, I have the first video play just fine. However, it is after this video plays that I run into trouble figuring out how to do the following.I need the video source to change immediately following a single play through of any video, and I need this video (henceforth referred to as an "ambient" video) to loop forever.When a certain event happens, I need to change the video source again, have it play once through, and then go back to looping ambient video in step 1.Here is the rub, however. Many of the video triggers are inside of If-Then or Select Case statements in code behind, so I'm not exclusively using simple WPF events such as "MouseUp" or "MouseEnter".Also, all videos must play in the same mediaelement, for performance reasons.

View 2 Replies

Cannot Filter A Binding Source Based On A Linq Query

Feb 3, 2010

I've got a datacontext and created a binding source using LINQ to sql but cannot filter said bindingsource. The supportsfilter of the bindingsource is set to false ? why ? I can't find any info to say that I cannot filter a binding source based on a linq query.[code]

View 3 Replies

C# - Fetch Website Source Based On Client Computer Rather Than Server In ASP.NET?

Mar 21, 2012

I am using the following code to fetch html source website.

private string Extract_Source(string url)
{
string output = "";
System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url);

[code]....

It can fetch source properly but the problem is it fetch website source based on server from where script executed (i mean where website hosted), but i want to fetch content based on client information (ip etc)

View 1 Replies

Columns Appear In Alphabetical Order In Data Source Based On EF4 Model?

Jul 13, 2010

I use Visual Studio 2010 and SQL Server 2008 R2. I have created an Entity Model in a class library which I have referenced in a VB Winforms project. I created a data source in the project based on the entity model in the dll. However, all columns in the data source are listed in alphabetical order instead of the native order from the SQL Server database. I cannot locate the cause of this as much as I try.

This might not seem a huge problem, but it is costing me valuable time in rearranging controls dragged to forms and reindexing their tabstop indexes.

View 6 Replies

JavaScript - Change Image Source Based On DropdownList Selection

Nov 23, 2010

I want to be able to change an image depending on what is selected in the drop down box. I have this JS code to change the image. Simplified of course.

<script type="text/javascript">
function changeImage() {
var oDDL = document.all("ddlNAME");
var NAME= oDDL.options[oDDL.selectedIndex].text;
switch(NAME) {
[Code] .....

When I call this function I do it in my DDL implementation.
<asp:DropDownList ID="ddlNAME" runat="server" OnTextChanged="changeImage()" >

But for some reason the changeImage() is not firing. It is giving me an error saying
'changeImage' is not a member of 'ASP.default_aspx'

View 7 Replies

Open Remote Desktop And Login Using VB?

Oct 17, 2009

I created an application that opens certain Microsoft Windows built in functions depending on what button you use. I have Text Fields setup for certain things like IP/URL, Username, Password, Port, Service. Depending on what function you want it pulls data from these fields.

When someone clicks on Remote Desktop I would like it to pull from the IP/URL, Username and Passwords fields. Right now it pulls only from the IP/URL field. How can I have it populate the Remote Desktop login, pulling the data from my Username and Password fields?

I have found a Login DLL that someone wrote and also found a Remote Desktop DLL but I do not know how to tie these into my program. I somewhat know the process of using a DLL in a VB project but I don't know how to tie these in.

FYI, I would like to be able to make my application a single executable instead of having multiple files that are installed by an Setup program.

Another feature of my program is being able to stop and start a service. I can use Taskkill and have it pull the username and password just because Taskkill has this built in with switches. This is ok for ending tasks but when I try to use SC to start the tasks, it only works locally because the remote server has a different username and password. SC does not have a switch for username and password.

Also another FYI, I do not want to use a 3rd party software that may not be on the remote computer/server. i.e. PSKill, PSExec, VNC or another program..... unless these can be imported into my single executable program and not have to be on the computer. As I mentioned, I do not like having to rely on 3rd party applications.

View 1 Replies

Open Specific File On Desktop?

Sep 30, 2010

What I need is to have a specific file on my desktop open when I click a cell in my datagrid. In one of the columns in my datagrid I have a list of file pathways. I have a code that will open my file, but it is not specific:

Partial Class Database1DataSet
Partial Class EMR_master_listDataTable
Private Sub EMR_master_listDataTable_ColumnChanging(ByVal sender As System.Object,

[Code].....

This works just fine, but would I would like it to do is have the file path be whatever is specified in the cell.

View 3 Replies

Remote Desktop Application? Safe To Use Winsock In Creating A Client/server Application?

Jul 18, 2012

Im planning to create a Remote Desktop Application and I'm having problem with viewing other computers monitor or screen.

Im not asking for the code on how to do it. and one more thing is it safe to use winsock in creating a client/server application?

View 3 Replies

Running Application Can Know Name Or Other Info Of Desktop-shortcut That Started Application?

Apr 9, 2011

Let's say 10 desktop shortcuts, all with different names/icons, point to and can start the same exe application from the same directory. Is there any means for the application to know the distinct name of the shortcut that was doubled_clicked. Also is there any means for a running application to know if it was started by command line, by a double_click on the exe, by a double_click on a shortcut that points to it, or by another process' call?

View 4 Replies

Shortcut On Desktop Takes To Application Folder Not Running The Application?

Oct 21, 2010

I am trying to use Setup project. Want my setup to create a desktop shortcut with my application.I donot understand how to do it. Clicked on User's desktop, I created Shortcut to User's desktop, changed the properties Target and Working Folder as 'Application Folder'But it does not connect with MyApplication.exe When I ran the setup and tested Desktop short cut, it took me to the folder where application was installed, instead of running the application.How to make the application run using this shortcut?

View 1 Replies

Determine What Visual Studio Version To Use Based On The Source Code Files?

Apr 17, 2012

I have an old system developed in Visual Basic. How can I determine what Visual Studio version to use based on the source code files? I've tried to upgrade the application using VS2005, VS2008 and VS2010. With VS2005 when I attempt to upgrade the source, it says the system was developed in a newer version. I currently have VS2005 version 8.0.50727.42 installed.

View 4 Replies

C# - Deploy An ASP.NET Application As Desktop Application (with Server Component)?

Jul 7, 2010

Question: I created an ASP.NET web application. Now it originally was meant for deployment on a webserver.That is working, so, so far so good.My question now is: Is it possible to deploy it as a desktop-application, too? That is to say the installer installs some kind of server, plus the web application, configures the server to run this application on a localhost URL, and then creates a link in the start menu/desktop, where it opens that url (website, the application) on localhost in a web browser?

I think it should be possible, though the server wouldn't be IIS, because this is a windows component which can't be separately installed. Is there anything like this already out there The nonplusultra would be that it only starts the server when you click on the shortcut.

View 4 Replies

Winforms - Convert A Desktop Application To A Mobile Web Application?

Mar 9, 2011

I have an application that is written in VB.NET, using the System.Windows.Forms.Form as the front-end GUI. It runs perfectly on my Windows machine however recently there is a business requirement to convert this application to run as a web application so that people could view them in their blackberries when they go to the URL. Is there any quick way to perform such a conversion or I will have to translate the code line-by-line for such cases?

View 1 Replies

PHP + SQL Server - Desktop Application Can't Be Replaced By A Web Application?

Jun 22, 2009

the system is going to have two front-ends - one web application and one desktop application.The desktop application is going to be coded using VB.NET, and the web application in PHP. There's really no reason why the desktop application can't be replaced by a web application as well - except that one of the programmers seem to really want to code it in VB...However none of us have experience working with either of these pairs .

P.S. hosting service will be gotten from some provider and not be on the client's own server.

View 3 Replies

Control The Starting Location Where On The Desktop Those Four Windows Will Appear When Load (Open) The Window?

Nov 22, 2010

I have a game that will open four windows on the desktop using VBE2008.How do I control the starting location where on the desktop those four windows will appear when I Load (Open) the Window?

View 2 Replies

Open Source Required ?

Sep 8, 2009

I know there is a lot of open source projects out there but I can't seem to find any VB stuff. I have to come up with an application that will keep track of eqiupment we sell, service and repair.

View 2 Replies

VB Open Source Defrag?

Mar 23, 2009

There is VB.NET Open Source Defrag? or C# Open Source Defrag

View 6 Replies







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