C# - Include External File In XBAP Application?
Nov 4, 2011
How can i include an external file in a XBAP application? For example a .dat file where i need to extract some data from? I want everything to happen inside the .xbap file, is that possible?
View 1 Replies
ADVERTISEMENT
Aug 22, 2011
I know how to use the <include> keyword from my code to refer to a member in an external comments file. Something like: <include file="Comments.xml" path="Docs/ClassName/Members[@name='DoIt']/*" /> However, I have members in the Comments.xml file which are repeated that I would like to split out and refer to within the Comments.xml file itself. As an example, it could be an argument definition that is used multiple time. I've tried the same format as above, but it doesn't work.
[Code]...
View 1 Replies
May 18, 2011
I have been investigating this for several hours. I have found numerous links, including several here on SO which claim to show how to find the startup path, or the application directory. All of the solutions suggested return a location:
C:Users<my user name>AppDataLocalApps2.0XO8PWL8B.5HH1GZX7M0H.N1J<temp location>
When my WPF xbap is run from a remote location. I need to determine the actual folder of the remote location. I am deploying this to an internal server ABCDEF, so in order to run this application I am entering:
\ABCDEFmyApp.xbap
I want to programmatically determine the server and folder. My reason for this is that each time you publish a WPF with "automatically increment revision with each publish" turned on. The folder where additional DLL's are located changes, additional programs that this program depends on. I want to be able to dynamically determine the correct folder to look at.
I have tried:
'Dim path As String = Reflection.Assembly.GetEntryAssembly().Location
'Dim Path As String = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location)
'System.IO.Path.GetDirectoryName(System.Reflection. Assembly.GetExecutingAssembly.Location)
'application.StartupPath
All of which did not work.These links suggested many of the methods I have tried:
Link1
Link2
Link3
Link4
Link5
View 1 Replies
Sep 30, 2009
Recently I created one windows form application and also created setup project using VS2008.My application works with external software, which needs to be available on the PC.I want to bundle this external application installer in my installer, so that I can check if it is already installed and if not then install it and then install my application.I figured out how to work with pre-requisites that Setup project identifies such as .net framework?
View 1 Replies
Apr 20, 2011
I was able to create an application in VB.net that talks to a SQL Server CE database.Now i want to deploy this application using the publish feature with clickonce.An issue im having tho is when I install the application on another computer it keeps looking for my sql server on my development pc.
Ive added the .sdf when i package my solution but its still an issue.How do I change my connection string to connect to the .sdf file that I included in the package? this is my current connection string which looks at the sql server: connectionString = " Data Source=CHRIS-PCSQLEXPRESS;Initial Catalog=ce_db;Integrated Security=True"
View 1 Replies
Dec 2, 2009
I am using Visual Basic 2008 Express Edition. Some of the programs I am writing make extensive use of External files (saved games, data, item lists, etc.) I could use an easy way to get these files to ride allong during deployment (cd mostly). adding them to the resources works for some static pictures, but custom structures into lists of info to read and write from are beond that features abilities, same with the settings feature. I have found in other help referance to "MageUI.exe" so is downloading a .net SDK my solution or is there a better trick I can use?
View 2 Replies
Nov 6, 2009
I'm creating window application with VB.NET and flatfiles.the problem is how do i store the connection string in the app.config file that include the application.startup path?
<add name="cn" connectionString="provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Application.StartupPath + "data;Extended Properties=text;" />
i got some error when writing to app.config.
"Missing attribute value on attribute 'Application.StartupPath'."
View 1 Replies
Sep 6, 2011
From a VB.NET program i want to drop a file (c:example.txt) in an external application (Firefox). I found an example that construct a "databject" linking a file name. I also found programs on the side on the application that receive the drop. But not one that send to an external application.
View 7 Replies
Mar 10, 2009
I have been searching and posting regarding this problem and have found nothing to aid me. Discussion is either on web.config files or deal only with external files for connection strings or earlier versions of vb.net not 2008.I have already successfully put connection strings into an external config file, but trying the same approach with application settings has failed.There are two sections of the app.config involved with application settings.
1. the configuration and config sections at the top of the config. file where the section group and the section name are described.
2. the actually data for the application settings by section group section name which appears in the body of the configuraton section of the app.config.[code]
View 5 Replies
Jul 22, 2009
I have this application that I need to read a text file.
I have designed a form which has a play button and when the play button is called it is supposed to read a text file which has being created using an external application..
I wrote a code that calls the application but I dont know how to pass the text file into the application.
I also dont want the application popping up.
line of code that calls the application ---- Process.Start("C:Program FilesDECtalkUSsay.exe")
View 3 Replies
Jul 8, 2009
I have been tasked to create an application, for which the requirements may change over time.This application will be a data entry Windows application,of which multiple copies will be running.All data will be written to text (.CSV) files for validation before being uploaded to a remote mainframe system (iSeries).My application needs to store certain variable information in an external text (or XML) file; for example, the file path to shared resources (which may change over time),as well as the specific data fields required by the mainframe system.
My questionsare these: what is considered the best practice for accomplishing such a task, and how would I accomplish it?I am completely new to XML, so I don't even know where to begin, although I am sure that XML is the path to follow for what I am trying to accomplish.
View 1 Replies
Mar 22, 2010
I have a pdf that I want to be able to open when a button is clicked within the application that I have built in Visual Studio 2008 in .Net.
View 2 Replies
Jun 8, 2012
I've a problem with an application i have to use at work. That application is in .net (created by my company). The application call some object that are .exe file. When i try to open it i received the following error:
cannot access a disposed object
I know that it's not really revelant but i've got that problem on my pc and my collegue that use the same application doesn't received that error.I've already check their configuration and i've the same than us. I supposed there are some problems of compatibilty with the framework or thing like that.
Stacktrace
************** Exception Text **************
System.ObjectDisposedException: Cannot access a disposed object named "Form".
Object name: "Form".
[code]....
View 1 Replies
Nov 23, 2010
i'm creating a simple wpf browser application in vb.net.. my current problem is i don't know how to redirect a page using a hyperlink, being a newbie in the language.[code]
View 2 Replies
Mar 18, 2012
I'm writing a small iframe-hosted XBAP that needs to inteact with the host page.I've first wrote a small POC to see that all I need is possible.Here's the code of the page constructor:
Public Sub New()
' This call is required by the designer.
InitializeComponent()
Try
[code]....
This happens in IE 64-bit, with IE 32-bit the whole XBAP fails to load (even before the alert line).
View 1 Replies
Dec 29, 2010
I need to include a calendar in my application
the best thing would be to include an outlook like calendar with its functionality
i have no idea how where to begin.
View 7 Replies
Aug 17, 2011
I Have one Windows Application in which i have one MDI Form (Say App1). And I too have another Windows Application in which I have a Child Form (Say App2). So now i want to Call App2 from App1 .. And want to Display App2 form As MDIChild in App1 MDI Form . I am Able to open the Form of App2 , But how to set It As App1' Child .
View 2 Replies
Jan 23, 2010
I use SetParent to make an external application a "child" of my Main .Net application. This works fine.What I need to know is why can't I use Me.MDIChildren(0)I thought that using SetParent would increase the number of children by 1, thus allowing me to reference it with the above code, but it shows there are no children in the array.I have been trying, without luck, for 2 days to try to maximize an external app being displayed in my app. I can get it to display, but I would love it if it could Dock to the same size as its container (a panel)
View 3 Replies
Mar 13, 2010
I wanted to include an Enum of fractions in an application.
Enum fractions
1/8
1/4
3/8
1/2
End Enum
This produces a 'Statement cannot appear within an Enum body" Error.
Is there a way to make this Enum work?
View 9 Replies
Aug 1, 2009
I hv developed a vb2005 based win form application. I would like to include application registration module.The planned i/p fields are usr name, productID. Based on this two filelds a unique registration key will be produced.
View 4 Replies
Jun 8, 2011
I would really like to know if there is anyway in which I can package two or more set up files together with my vb.net application; so that after installing the application, it automatically starts installing the other applications from the other set-up files.
In my case I want to include mysql server and client together with the application for a demo cd, that am making for a client.
View 4 Replies
Nov 4, 2009
I have a software package with a bunch of libraries and header files that I am trying to use in a VB.net application. The software help file states the following: The MIL DVD includes MIL libraries that support the Microsoft Visual C++ .NET 2003/2005/2008 (unmanaged) compiler under Windows Vista/XP. The DVD also includes ActiveMIL ActiveX controls for Microsoft Visual Basic .NET 2003/2005/2008, Microsoft Visual C# .NET 2003/2005/2008, and Microsoft Visual C++ .NET 2003/2005/2008 RAD tools.
To compile a MIL application program, you must include the mil.h header file, in addition to the required standard C include files. After you have compiled your application program, you will have to link it with the appropriate libraries or import libraries for your operating system, compiler, and target board.
[Code]...
View 4 Replies
Jan 31, 2010
making sure I have both AxInterop or whatever those 2 .dll files in the same area, i do.
View 1 Replies
Nov 5, 2008
the problem here happends every time i tried to change a record that's been allready saved.Private Sub PropuestasBindingNavigatorSaveItem_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PropuestasBindingNavigatorSaveItem.Click
[Code]...
View 8 Replies
Jul 22, 2010
I used BackGroundWorker control on a Windows desktop program. It worked great and I would like to use it with other languages. Which languages does it work with -- ASP.NET, Silverlight, WPF, Class libraries (dll), console applications, services,
WCF? I see that it is in the System.ComponentModel namespace. Is that used by more than Windows desktop programs? If it's not used everywhere, is there an equivalent class on other platforms?
View 6 Replies
Aug 2, 2010
how to create windows installer that will include my application and merge module? I'm using VB .net Visual Studio 2005. I can create a windows installer for merge module and public my application, but I can not have both of them in one setup file.
View 1 Replies
Feb 15, 2011
Anyways, i have coded a video downloaded and i want to include a converter as a separate exe file. But obviously people may have different file directories so a simple piece of code i have used won't work. This is what i have: Also where would i place the exe file?
View 3 Replies
Oct 3, 2009
I have a quick, yet simple (i think?) question. How can i use the address bar to send commands to a external application?
Example:
AOL Instant Messenger I havent used this application in a long time. But i remembered if you wanted to add a friend to AIM from their online profile it directed them to a link such as:
aim:addfriend=contactID and AIM would pick this up and add it the contactID to the application. The link i posted is more than likely not the correct link they use but it shows what im trying to accomplish.
Im looking to achieve something along the lines of: myApplication:command=commandValue
View 3 Replies
Jun 3, 2011
I'm trying to use the Shell to have my application call an external application but its not working...I don't understand why. I get the following error: 'System.windows.shell' is a namespace and cannot be used as an expression!
Heres my code....any ideas what I'm doing wrong. Its got to be a simple...stupid error.
Private Sub mnuUpgrade_Click(ByVal Ctrl As Microsoft.Expression.Web.Interop.Legacy.CommandBarButton, ByRef CancelDefault As Boolean) Handles mnuUpgrade.Click
[CODE].....................
View 2 Replies
Mar 23, 2012
how to center an external app on the screen, an example would be Adobe Reader, using either Process.Start or Shell. I've 'attempted' both but haven't found anything to control the position. I've also found some code using Api32 functions, FindWindow, MoveWindow, etc, but have not been successful at those either.
View 3 Replies