VS 2008 : Get Back Application 3.5 To 2.0?

Nov 12, 2010

how to get back application 3.5 to 2.0 i set my apps to 3.5 almost done... but i want dontnet 2.0 to use.

View 1 Replies


ADVERTISEMENT

VS 2008 Application.StartupPath(), Back/up A Level Into Another?

Jul 5, 2010

been banging my head on this, i need to get the applications path, then go up 1 folder then into another. As i have a main app and sub apps.

So were Application.StartupPath()is for example:"C: Main app folderSub app folder"How do i then go up a folder to"C: Main app folder"I Know it needs some string removal using on it but i can seem to get it right, after which i could then use Application.StartupPath() 'string removal here" & " ools"to navigate to another sub apps folder etc.

View 8 Replies

DB/Reporting :: Multi User - Windows Application With Back End As SQL Server 2008 Express

Mar 17, 2009

I'm working on a multi user VB.Net windows application with back end as SQL Server 2008 Express. The SQL Server is installed on the intranet network drive. This is the connection string I will be using. Is this correct?

Data Source=.SQLEXPRESS;AttachDbFilename=Q:DatabasePrintDB.mdf;Integrate d Security=True;Connect Timeout=30;User Instance=True

View 3 Replies

SQL - Take A Back Up Of The Database From My Application?

Dec 12, 2009

I have an mdf file in the vb.net 3.5 project I am working on. I wanted to write an stored procedure that will create a back up of the db in a selected location. How can I take a back up of the database from my application? I want the user to take a back up of the database manually.

View 4 Replies

Application To Go Back / Forward On Internet Browser

Sep 9, 2011

I want to make application which will go back and go forward on internet browser in program.
I want: When I will click button1 then internet browser go back and go forward and so on all time. Click(button1) --> GoBack Browser - here must be break - 15 seconds --> GoForward Browser --> do it all again and again.

I do only it:
Public Class Form1
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
[Code] .....

View 15 Replies

Create A Back Button For Windows Application?

Nov 10, 2011

I am trying to create a back button for a Windows Application to go from one form to it's previous form.

I know how to go to the next form, just can't figure out the other way.

View 5 Replies

Using TCP/IP - Application For Playing Back Recorded Clips From Dvr

Mar 2, 2010

I am developing and application for playing back recorded clips from dvr. There will be 10 persons reviewing the recorded clips all the time. When the person want to review a particular camera recorded clip, he will send a command through COM to my application. Then my application will read the data from COM and connect to dvr and send data to the dvr. If only 1 person is doing the operation my application works fine. If 10 persons continuously working, then my application is getting very slow and the response time back to the person is high which will make the person frustrated to use the software.

Now, when ever I receive data from COM I'm adding into arraylist and I'm processing one by one. I've 10 forms in my application and when ever I receive data from person1 I'll send that data to form1 and person2's data will be send to form2 and so on for processing. What could be the better way to write my application in order to make the response time to the user faster so that, they'll get the recorded clips faster?

View 21 Replies

Making Application Send Back Random Stuff

Feb 26, 2010

Iw ould like to know how to make it so every time you click on a button a different outcome can happen from the opens i gave the application.such as: when i click button 1.i will want it to either close the application or show a textbox but the outcome should be random out of the two.Like a dice if you get 1, 2, 3 the application will execute command "Me.close()" but if it rolls 4, 5, 6 it will execute the command "textbox1. show()"

View 1 Replies

Force A User To Log Back Into To An Application If No Activity Is Detected For X Minutes?

Apr 22, 2010

I would like to try and implement a feature wherby once you have logged into an application (straightforward winforms application) and had your credetials verified the application would then force you to log on again if no activity had been detected in the application for a certain number of minutes. In essence I want to provide some extra security for those occasions when users get up and wander away from their machines for prolonged periods.

I have all the logic for logging into the application, it's just the checking for no activity over a given period and then forcing the user to log back in again that I'm not having much luck with.

View 2 Replies

Implement Send To Back And Brig To Front In Windows Application?

May 11, 2009

I am Developing one designing tool..in this i have to implement Bring to front and sent to back properties.

View 3 Replies

Converter API For Doc, Docx, Rtf, Txt, Xls, Xslx, Pdf To HTML/HTM Format For Web Application Without Using MS Office In Back End?

Apr 27, 2012

I need a third party API to convert *doc, docx, rtf, txt, xls, xslx, pdf into HTML/HTM * format without using MS Office component(MSWORD/EXCEL) in backend. This API must support RELATIVE path for images as I will use it in ASP.NET Web based application

View 2 Replies

Back To The Previous Page On Click Of Custom Back Button?

Aug 25, 2010

I am using an image button and on click of it i want to go to visited page.Now i am using - Response.Redirect(Request.UrlReferrer.ToString()),It is going to previous page, but when i am in a page of some user details where the link is looks like - users.aspx?userid=25 and i visit some other page and click back(image button) i want to see the same userdetail page. How to track that.

View 2 Replies

Passing Back Lisbox Values When Going Back To Previous Page?

Jul 23, 2009

I have a search page with a couple of pulldowns. Dependig on the values of them I show a grid matching the searched criteria, basically a table with links the user can navigate to. My problem comes when the user wants to navigate back. At the moment I have a "Back" button which simply redirects the user to the initial search page. I think it would be a good improvement to have the values of the pulldowns filled in with the values the user selected, this way when he presses the "Back" button he would not have to restart the whole search process again.

View 5 Replies

Forms :: Chart (Series Colors, Graph Refresh On Timer, Etc) Application That Ties Into A SQL Database On The Back End

Dec 29, 2011

I am working on an application that ties into a SQL database on the back end. Currently the main form contains a series of combo boxes (Graph type, data format, location, and customer), two date pickers, and a button to launch the selections in a new form. Everything works just fine except there are a couple of things I can't seem to accomplish.

Example Data:

[CODE]...........

Case Select (with commented out lines for variations attempted):

[CODE]..........

1) I would like to be able to use some sort of case statement to color the bars in my chart based on value. I have tried approaching this in a couple of different ways but neither of the options seem to work. First, I tried this (the If Not is used because depending on what values are passed to the stored procedure in SQL, different columns will be returned):

[CODE]..........

Only one series is created with this method, so I can see how/why a Select Case would set all bars the same color. I have also tried creating a series for each row in the returned dataset but it results in 22 bars of different colors, for each of the rows (484 bars):

[CODE]..........

So is there any way to modify the second set of code there to only select the value from the "Percent TMHB" cell that corresponds with Row(i), rather than ALL values from the "Percent TMHB" column for EACH Row(i)?

2) Since I am drawing/creating these graphs in a new window, is there any way to also create a new timer on the "newFrm" and have the tick refresh the data? I've struggled with this but I feel like it should be easy. Say someone chooses a "TMHB", "Percentage", "Chicago", "All" (Graph type, data format, location, customer) and launches the graph, which opens in a new window, then they want to do "TMHB", "Percentage", "LA", "All" and have both windows up, refreshing automatically throughout the day. Can I somehow store the SelectCommand.Parameters values in the new form/timer so that it will query the database again every 5 minutes?

Example code for the StoredProcedure and creating the new form:

If combo_GraphType.SelectedItem = "TMHB" Then
Dim newFrm As New Form
Dim newChart As New Chart

[CODE]..................

View 1 Replies

Get My Toolbox Back To Normal - Can Put It Back On Auto Hide And Such

May 31, 2009

I'm not sure what I did, But I would like to get my toolbox back to normal where I can put it back on auto hide and such.

View 3 Replies

Delay In Back To Back Messages Through Socket

May 10, 2012

We have a server application and a client application that communicates with each other using socket.

When the server application sends 2 messages about 16-31 ms apart, the 1st message is received by the client application with little delay (like 16-32 ms after it was sent). But the 2nd message is received by the client application a lot later (like 200 ms later) than when it was sent.

We already disabled Nagle algorithm (set NoDelay = True) in the socket in both the server and client application.

View 1 Replies

Smtp :: Sending Back To Back Emails?

Jun 17, 2011

We are having problems with sending back to back emails on one of our web sites. The site is built with .net framework 2.0.We can send the first email without any problems on every try. But to send a second email you need to wait about 20-30 minutes.the problem.One thing we tried was changing the smtp email server. We tried a third party smtp server but the same problem persisted. So I think the problem is not with the smtp server but with our .net code.

Imports Microsoft.VisualBasic
Imports System.Net
Imports System.Net.Mail

[code].....

View 1 Replies

VS 2008 How To Back Up Registry

Mar 19, 2009

VS 2008 How to back up registry?

View 3 Replies

VS 2008 Next & Back Buttons

Aug 31, 2010

I have a next and back button to switch in between my tabs. There are 7 tabs on the form. My problem is that if I am on Tab 1(the first tab) and I keep clicking the back button that it keeps subtracting the the number (next_CurrentIndex) and I got to press the next button that many times in order for it to go to the next tab. Example: Lets say I'm on tab 1(first tab) and i click the back button 5 times. I then have to click the next button 6 times in order for it to proceed to the next tab which would be tab 2. This happens if im on tab 7 and continue to hit next also. [code]

View 2 Replies

VS 2008 Start Another App In Back?

Apr 5, 2010

Is it possible to open another app without losing focus of the current foreground app? I have a program that will open another app and test something on it then close it, and reopen it again and repeat. Can this be all done in the back while i am typing away on another app in the foreground without getting interrupted by the new app opening and changing focus?

i dont want the new app open minimized or anything, just quietly open in the background.

I tried using process startinfo.windowstyle and that doesnt help much.

View 8 Replies

Back Up SQL Server 2008 Using Program?

Jan 23, 2012

Back up my entire database using vb.net. I'm using SQL Server 2008 R2 for my DB.

View 39 Replies

VS 2008 - Get The Back Of A Label To Be Transparent ?

Apr 15, 2010

Question 1: i can't manage to get the back of a label to be transparent, so i can see an image underneath.

I have this

CODE:

And it isn't working...

Question 2: I have removed the border of the form, but want to have what is left (the main content) to be a particular shape. Is that possible or do i have to have it rectangular?

View 1 Replies

VS 2008 Automatically Back Up The Project?

Oct 6, 2011

visual studio 2008 express is it possible to create the backup of my entire project automatically is there any tool for that

View 5 Replies

VS 2008 Back Up What Is Stored In Memory

Sep 21, 2009

I'm writing a application that has to check live what's going on somewhere. The data is stored in a integer array.But this data comes from a PLC over a COM port. So imagine if someone pulled out the cable while my application is running. I have to find a way that the integer array will be stored somewhere when my application crashes. I thought maybe I could do something with a text file? But how do I get my application to store the data when it crashes? Do I have to surround my whole code with a try catch and then in the catch save everything to a text file? Well I like to know if some of you have better ideas or can point me in the right direction.

View 4 Replies

Have A Slew Of IF Statements Back To Back?

Mar 2, 2011

I am creating an application that will be faced with multiple decisions to make and I want to know if it is possible to create around 20 if statements to excute or decide between before excuting?

The application will encounter multiple websites but each website will have the same elements but not neccessary in the same order so I was going to tell the app to loop through the IF statement and if the condition is met to run that sub routine where it starts over and loops through the IF statements until next condition is met.

Is this possible in VB.NET or is 20 or so IF statements to many to use at once?[code]...

View 3 Replies

Records Back-to-back In A Msgbox?

Dec 19, 2010

I have a dBase file named PROBA, with two cells: "VNEV", "KNEV".I would like to see the records back-to-back in a Msgbox.

Imports System.Data
Imports System.Data.Odbc
Public Class FormCount1
Public Sub Recordszm() Handles MyBase.Load
'TODO: This line of code loads data into the 'DataSet1.PROBA' table. You can move, or remove it, as needed.

[Code]...

View 4 Replies

VS 2008 - How To Get Design Back When Editing Project

Oct 3, 2009

I reopened my project to edit it but it is only showing the code not the design I cant get it back how do I do it?

View 3 Replies

VS 2008 - WebBrowser Forward And Back Buttons?

Sep 13, 2009

How could I make it where I could accurately go forward and backward? Whenever you press back once, then back again, it takes you to the page you started with. So how do you make it where it can go back as many pages as there are and then tell if your a the highest or last page when going forward?

View 1 Replies

VS 2008 : Database Connection MS ACESS As Back End?

Oct 18, 2009

I've already finished the program and the last task was to add a password for my MS Access database. I've created the password in Ms Access and I've already modified the connection and saved the password but when I run the program all codes like this

Me.Table1TableAdapter.Fill(Me.Database1DataSet.Table1)got an error message says Not a valid password.

View 3 Replies

VS 2008 : Send Data Back To Webserver?

Dec 17, 2010

I need to send data back to my Apache web server so it can be updated in it's MySQL database, I've looked at NuSOAP as it's written in PHP but man that's hard. I'm lost, is there a more simply way to send it back? even to call a webpage and send data into it?

View 4 Replies







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