Preserved Application Setting For New Upgrade?

Jul 31, 2010

When upgrading my old app, how do I preserved those old Application Setting that had been set by previous app, so that the new app can use back the old app setting?

View 1 Replies


ADVERTISEMENT

Vb Versus Vba - Convert And Upgrade An Application

May 8, 2009

My company is in the process of analyzing how to convert and upgrade an application that was written in Microsoft Office Access 2003. Recently we purchased Microsoft Visual Studio 2005.

The first step we'll probably take will be to convert the Access data to Microsoft SQL. Is there a recommended way of doing that? What should be done with the VBA code?

The second step we're not sure about. We're wondering in we should develop all new software in VB or that we should still use VBA, if possible, after the data has been converted to SQL.

View 2 Replies

Asp.net Mvc - ViewModel Object Is Not Preserved

Jul 14, 2010

I am sort of new to MVC so pardon my ignorance. I am using IoC ( StructureMap ) and I have a need to pass in an instance of what I consider to be a set of Controls to each view, so I have created ViewModels in order to accomodate this. The view model is populated with an instance of the Controls and the View is then rendered. When a user performs a POST, the Controls are not being passed back to the Action.

[Code]...

View 1 Replies

Office Automation - Font Color Not Preserved

Jul 17, 2009

I'm automating Excel => Word table and then vice-versa. However, some of the text within a cell is red and needs to be kept red in the word table and also going the other direction, if some of the text is red then it need to be red in the worksheet cell. However it always comes out black after the automation. I see in WORD a search and replace for FORMAT, such that I can replace a word that is red with one that is blue. However, I do not see that capability within an Excel cell, I can change the entire cell, but not part of the cell text...

View 1 Replies

VS 2010 - The Transparency Is Not Preserved And It Is Converted To BLACK?

Apr 27, 2012

My application allows users to specify a logo. When they choose the logo I need to scale the image to accommodate my application's use. Everything works great except for transparent GIFs, the transparency is not preserved and it is converted to BLACK. Here is my

[code]...

How can a preserve an image's transparency if applicable?

View 1 Replies

Setting An Application's Icon?

Sep 29, 2009

I Want To Make An Application To Set Other Applications Icon (For Example : EXE ) But I Don't Know How To Set An Application's Icon

View 4 Replies

C# - Setting A Timeout In A .net Desktop Application?

Aug 27, 2009

I have created a little application to move some files around and put them into a database. This is working well except that the application needs a timeout. If my app has not completed the task within 2 hours it re opens and locks out everything. I need to say that if my application has been open for 2 hours close it. One thought was can you set a time out in an application.

View 3 Replies

C# - Setting External Application Focus?

Dec 17, 2009

In VB.NET, you can set focus to an external application using

AppActivate("Windows Name")

or

AppActivate(processID As Integer)

Now this works fine if you do for example:

Dim intNotePad As Integer = Shell("C:WINNTNotepad.exe",
AppWinStyle.MinimizedNoFocus)
AppActivate(intNotePad)

But when I do:

For Each theprocess As Process In processlist
If InStr(theprocess.ProcessName, "DWG") Then
strProcessList += String.Format("Process: {0} ID: {1}", theprocess.ProcessName, theprocess.Id) + vbCrLf
AppActivate(theprocess.ID)

[code]....

then it doesn't find the window, even if it's open and even if it finds the window using the window title.But I need it by process ID.How can I do that?I need it to set focus on a 3rd party installer in a windows installer setup project.

View 2 Replies

How To Make Persistent Application Setting

Dec 7, 2009

I have an application that has two states based on the value of a Boolean variable: a read_only=true state and read_only=false state. The value of this state is stored in an external settings file. My application has a feature called deploy that generates a copy of itself in the same folder with the read_only=true state. But, the read_only variable value is stored in an external file so now both files will be in the read_only=true state. What I want to do is make one of them(the original one) always be read_only = false and the other read_only=true

View 3 Replies

Setting An Application As An Active Window?

Apr 13, 2009

I've tried everything to set my window as active after I've been working on another external App... I have my system on auto and need to send some keystrokes to the program using sendkeys, so I need that app active. I've tried almost everything I can think of, bringtofront, setfocus, windowstate, setactivewindow, setforegroundwindow (For the last 2, hwnd doesnt work - I'm using VB 2008 Express) but none of them seem to be working.

View 4 Replies

Setting Focus On An External Application?

Jun 12, 2009

I have an application which calls an external process. I would like this process to be open as soon as it is called. i.e. with no user interaction.This is because I would like to send Keys to it to interact.I know how crude this is but this is a thrid party application that my boss has promised will open is a specific way. Dim procSungard As System.Diagnostics.Process = _

[Code]...

View 3 Replies

Setting The Application Automatically When It Is Run On Different Computers?

Jul 1, 2011

I have written an application. It works fine on some resolutions but most of the controls are over lapped when it is run on some other computers.Is there any way of setting the application automatically when it is run on different computers?

View 1 Replies

Setting Up A VB.net BitCoin Transfer Application?

May 26, 2011

I need to create an application that can accept BitCoin donations. I will have clients sending the data and a server to collect the results. Now, I have my own BitCoin account (on http://ww.MyBitCoin.com) but how would I transfer coins automatically from the client to my server where it will then be added to my account?

View 1 Replies

Setting Up A Way To Connect To The Application From A Web Link?

Oct 9, 2009

im currently improving my mp3 player (some info can be found here http:www.dreaminco...h...7&t=113445) application and would llike some help in setting up a way to connect to the application from a web link (such as the way itunes does it)i click a link in a website for opening a web stream in cisco(the application name)it opens the application then tells the media player(np_player) to connect to the stream

View 1 Replies

Setting Up Voice Commands In Application?

Jan 2, 2012

I wanted to put voice command options into my application.I read stuff online about grammers and SAPI but I can't seem to figure out how to actually use it in my VB.net applications.

View 1 Replies

Application Setting Change By Software Version?

Feb 25, 2012

I am developing a software and give to user sevaral time. When i give them i change Assembly version of my software. But problem is that when they update new version they lost all application setting. Application setting save with new root with version. Is they any way application version not to change with version. save only one root by application name or something.

View 9 Replies

Application Setting In Web.config Not Appearing In Email?

Jan 9, 2011

I am receiving an email from the forgot password page. The email contains the information however there is a link which cannot work because the concotanation isn't working for some strange reason.

[Code]....

View 1 Replies

C# - Setting Expriy Date. For Windows Application?

Jul 3, 2010

Created one windows applcation.now i would like to give licence for it by keeping expiry date.am planning to keep expiry date in registries.how can i get the actaul date. ie; when user changes the system date also- this should not change.(i meran expiry date.) Am looking for logics to acheive this..!!date will be encrypted with the encryption algorithm- defined by our team.

View 1 Replies

Change Application Screen Size Setting

Jul 27, 2010

I am working on an application using vb 2008 express. I have built test programs over the past few weeks and shared them for feed back. Today when I finished some work, I built another test application, but when I install it the start-up screen maximizes but is set between one and two desktop icons from the top of the screen.

In debug mode it looks fine. In the past it looks fine. Each time I start the program the screen is in a slightly different location. It is set to start maximized and to the best of my knowledge, I did not change any settings in the property area. I have tried loading on three computers and the results are the same. Any ideas on what I could have done to produce this strange result?

View 4 Replies

IDE :: Setting The Same Properties For All Forms In A Single Application

May 15, 2012

Most of the apps I write have a base / home form and a few other forms (three of four typically) which pop up in response to controls clicked by the user. I'd like to be able to set some properties to be the same for all the forms in an app; particularly properties like BackColor and FormBorderStyle. Yes, I can manually set the individual properties for each form in the VB IDE, but I'd prefer to be able to have one line of code in the base / home form for each property along with one line for each dependent form which says something to the effect of "use the same property value as the base / home form has". Overall, my objective would be to have one single line of code in the app which, when changed, would apply the changed property to all the forms. For example, a single line which I can change to take the BackColor from Apple to Orange for all the forms ...

[Code]....

View 11 Replies

My.Setting Value Is Wrong Aftar Application.Restart

Apr 14, 2012

I'm using my.settings to save the load time of the solution. When my.settings.load_time value is changed and use my.settings.load_time.save() to save them. When I quit the application and manually start it again, the newly saved settings are used.When I use either application.restart. The application will use the old values for my.settings.Is there a way to restart the application using either application.restart which will use the newly saved my.settings values?

View 6 Replies

Setting File Attributes After Deploying An Application?

Nov 20, 2009

I have an application that uses a text file for its settings. This file is placed in the application folder but deployment sets its file attributes as "Read Only". I have to manually change this attribute every time I deploy the application or an upgrade. I tried (successfully) to place the text file in the "Documents and settings|All users|Application Data" folder, creating a specific folder for my application in which to place my file. The folder and file were created by the setup process but then, users who did not have admin rights still did not see the file, let alone open it.

I have gone back to placing my text file in the [Programs files]|[Manufacturer]|[Application name] folder but am saddled with manually changing the attributes. Is there a way I can do this programatically during deployment (e.g. by some post-deployment process)?

View 4 Replies

VS 2008 Binding NumericUpDown With Application Setting?

Jul 21, 2011

PROJECT TYPE: Windows Forms Application
LANGUAGE: Visual Basic
.NET VERSION: 3.5
IDE: Visual Studio 2008
OPTION STRICT: on
OPTION EXPLICIT: ON

I am attempting to get 7 NumericUpDowns to display the value of the application setting they are bound to. Each UpDown has its own setting binding. The setting is a decimal datatype with a value of either 4 or 6 as default. I need the UpDowns to display the setting value when the form loads. At the same time, I need any change made to the UpDowns to be saved to the same setting so that the application can both display and use the new value the next time it runs. Unfortunately, the only way I can get them to display anything other than "1" is to hardcode a constant value, and I don't want it to be constant. I think this is the last bug in my application and would love to get it figured out, but I've spent over 8 hours on it with no luck. Here is the applicable code.

[Code]...

View 14 Replies

VS 2010 - Setting Position Of External Application?

Sep 7, 2010

I'm trying to set hotkeys for all my favorite websites. When one of these hotkeys are pressed, I want it to load the assigned website in internet explorer, but I want internet explorer to load on my SECONDARY monitor. I've already set out the hotkeys to load internet explorer, but it loads on the wrong screen. How to check if an instance of IE is already running. To be a bit more specific: the secondary monitor is set to the LEFT of the primary one. And the resolution is at 1440 x 900. So basically, I want to programmatically set IE's position to (-1440, 0) from within my application itself.

View 5 Replies

C# - Update And Save An App.config Application Setting Programatically?

Jan 16, 2012

I am currently working on a WPF/.Net project, In this project the user has the choice to change the the skinning of the app entirely, I am trying to write those settings after submission using configurations management, but I don't seem to be able to add the new values to the app.config file, here is my method underneath

[Code]...

View 2 Replies

Deployment :: Application Icon Setting In Project Properties

Jun 5, 2009

I have a icon for my application that I set in the project properties window there is a little drop down box to browse to the icon location. While debugging everything is good. Once I build the app and place it on a PC and manually start the app all is good. My app starts with windows and now every time the program goes to start I get an error that the icon cannot be found in the DocumentandSettingUSERNAME folder. So the question is do I have to place my app icon in this folder? In design I have the icon in the binDebug folder and that is were I point to in the Project properties page.
I am using VS 2008 VB.net.

View 1 Replies

VS 2008 Setting The Installation Location Of A Published Application?

Jan 11, 2011

I have published a vb.net application and installed it on my PC. When I try to locate the installed application, I dont find the location where its been installed.

How to install a publish application on a specified location in C:Program FilesProject?

View 8 Replies

VS 2008 The My.Setting Value Is Wrong Aftar Application.Restart

Apr 14, 2012

I'm using my.settings to save the load time of the solution. When my.settings.load_time value is changed and use my.settings.load_time.save() to save them. When I quit the application and manually start it again, the newly saved settings are used.

When I use either application.restart. The application will use the old values for my.settings.

My question is.. Is there a way to restart the application using either application.restart which will use the newly saved my.settings values?

View 7 Replies

VS 2010 Calling An External Application And Setting Focus On The Same?

Oct 8, 2010

I am wondering if it is possible to call an application, say "notepad.exe" (among other application's that are already open) and setting focus on the same, so the user can readily start working on it.

View 6 Replies

Setting Application As Default Notepad Will Not Load The Text Files?

Jul 10, 2009

i have always seemed to have found the default windows notepad useful. no matter what type of app i create that saves, edits, and does everything notepad does plus tons more, i always seem to end up using notepad one way or another.. until recently..

i finally designed my own custom notepad. pretty much all the features, minus a few, and plus a few.. i like the new features. ;o)

[Code]..

View 11 Replies







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