[2008] Pocket PC Path To Base Folder
Feb 2, 2009Is there a way to get the base folder of the executable? I tried some other things that I found on google, but I can't use them (not in the library or something like that).
View 4 RepliesIs there a way to get the base folder of the executable? I tried some other things that I found on google, but I can't use them (not in the library or something like that).
View 4 RepliesMy application is designed to open a desired folder. Now, I want my application to be able to capture the path & name of the current open folder in Explorer so that the user can easily save it as favorit without writing the path and stuff.
View 6 RepliesI have ListView box with a file path for example
C: est.txt
So how can i open the C: So i just want to open the folder were the file is located and not the file its self.
how to change the install folder path in a setup and deployment project/Installer class from program files to C:usersPublic in windows 7 and allusers folder in xp.Want to add MVP with my name.
View 3 RepliesI want to retrieve a folder path when I right click on a folder with the mouse. If I use
Code:
FileIO.FileSystem.CurrentDirectory
then i only get the current folder and not including the folder I right click on...
Is it possible to retrive this path?
I'm developing a aplication to run in Windows Mobile 5 I was design the first form, but when I try run them in the VB emulator, only appear the PPC with the Operating System. In the emulator, how can I try the sotware????
View 2 RepliesI'm developing a aplication to run in Windows Mobile 5I was design the first form, but when I try run them in the VB emulator, only appear the PPC with the Operating System.
View 1 RepliesI'm just trying to move my folder from one path to another path.The coding seems like it has moved it but the folder is not appearing in my destination path?
View 7 RepliesRun VB 2008 Express Edition program on PDA / Pocket PC
View 1 RepliesI'm building an application for run in PPC. Is my first for this kind of equipment. At a time, I nedd to fill a datagrid, by one manual select. In VB forms it works perfectly, but I can't convert this for PPC forms. I use this
[Code]...
How to get the folder name from the full path of folder?This is file path,
"c:projects
oottwsdlprojdevlopeta2 ext"
Here text is the folder name.But i want to get the folder containing text, that is beta2
I have the following windows service file:
Imports System.ServiceProcess
Imports System.IO
Public Class fswService
[Code].....
2 problems: first, intellisense error saying: 'fswService' is a type and cannot be used as an expression. second, I can not figure out a way to pass on to the service the path of the folder to watch (which is stored at My.Settings.userPath).
I'm having trouble figuring how to code the calculations for a Pocket PC application that calculates the cost of a cell phone bill. From a Pocket PC the user should enter the number of minutes used during the past month, in order to calculate the cost of the cell phone bill. The plan allows 300 minutes for $29.95 per month. For each minute over 300 the cost is $0.17 cents per minute. Tax and Fees are $4.85 a month.
1. User enters the number of minutes used during the past month.
2. Based on plan rate of 300 minutes for $29.95 and 17 cents for each minute over 300 calculate the cost of the bill including the fixed cost of $4.85.
3. The user must be able to initiate the calculation and display the individual charges and the total cost of the cell phone bill.
4. The user should be able to clear the number of cell phone minutes, the individual charges and the bill total
If negative number is enterd for the cell phone minutes, the user should be advised and asked for a valid entry If non numeric value entered for the cell phone minutes, or if left blank the user should be advised and asked for a valid entry.Application is deployed on the Pocket PC emulator built in VS 2008
Enter # of Minutes ________ (user enters)
Regular Minutes Charge ___ (29.95)
[code]....
Has any one used BITs in VB.NET? If so, do you have code samples? I was looking at SharpBits but I have a VB project that I wanted to use BITS for. Is it possible to use it with my VB.NET program? (.NET 2.0) I was tempted to try to convert each class to VB.NET in the SharpBits.Base folder but figured I'd ask in case someone has headed down this route before.
In case you run across this question. What you can do is in the Sharpbits.Base folder (that you download from codeplex) there is a DLL you can reference in the Bin directory. You can add that into your references to access it. Marking Konrad as answer since he was kind enough to post.
I managed to get sharpbits working with some quick code which I pasted below for anyone who might stumble upon this question. Like I mentioned above add the DLL to your project.
Dim b As New SharpBits.Base.BitsManager
Dim mynewjob As SharpBits.Base.BitsJob = _
b.CreateJob("jobname", SharpBits.Base.JobType.Download)
mynewjob.AddFile("\servershareigfile.zip", "c:igfile.zip")
mynewjob.Resume()
You'll need to write some logic to check for the status of the job. Once it hits "Transferred" status you can then mark it as complete. This will write the file from a .bin to the file name you listed. Something that helped me was installing the Windows Support Tools (you can get it from a Windows 2003 Cd/DVD in the sup tools folder)and using Bitsadmin.exe to view the status of the job while debugging.
Is it possible to use microsoft access database for Windows mobile application and save this mdb file locally in the pocket pc?because im trying to make an application to connect to mdb database but this imports seems to be not working.
HTML
Imports System.Data.oledb
oledb is not a member of system.data. why?
If I have a file path like "C:My DocumentsImagesImage1.png", how can I get the parent folder name of the "Image1.png" file? In this case, "Images", but that's just a sample. I've looked through System.IO.Path and there doesn't seem to be anything there.
View 6 RepliesThis is a messy way of updating my application but I don't have much other way I can think of doing it. Here is the background information:
My app does not use ClickOnce or any deployment other than just copy/paste the files into a zip and uploading on the web My app has a "update check" form which checks for strings on my website to compare current version with a newer version
Now basically, it downloads correctly. Nothing about that is the problem. I use My.Computer.Network.DownloadFile to do so.
Currently, the user downloads and has to REPLACE the file. Its not an update, its just an "updated" application. I'm not fully sure how I will go about proceding this later, but currently I'm trying to do the first part of my pseudocode below. Which is to get the application's path so that I can "replace" it later programmatically so that it performs a "auto-update".
Pseudocode of what I am trying to accomplish (anything in bold is what I'm trying to accomplish that I haven't already done):
Get folder path of application Download the app update with My.Computer.Network.DownloadFile download Extract this updated folder and replace the contents with the current folder path of the application.
I have the download aspect complete. As far as this question goes, how do I get the folder and replace the contents? As far as extraction though, what are your thoughts on the best method to extract and then replace?
I need to get the path to a folder eg: "C:" . but when i use the below code i have to sellect a file (any type) to get the folder path
[Code]...
In VB.NET (2008 Pro) how would I be able to change the path of a folder to represent the recycle bin or printer folder, control panel etc.I have seen it before in VB6 (code below) where the user was able to select a windows path and it set the folder to that path, and also, changed the icon to that particular folder. [code]
View 4 RepliesI am going through all the files as follows: For Each FI As String In System.IO.Directory.GetFiles(FolderBrowserDialog.SelectedPath, "*.jpg", IO.SearchOption.AllDirectories)' here I need to get the select path's folder name, which is the folder name the current .jpg image is on Next.
View 6 Repliesi have been asked my a mate to make a mod launcher for a game now i have everything done apart from when loading the mods folder it gives me the full path aswell as the file name... so my question is how can i split the path so it just diplays the folder names and not the path to it... i have looked online for it but cant find alot the frustrating bit of this is i have done it before and cant think how i done it.
[Code]...
How can I get my app. to remember a path to an folder that has been enterd into a TextBox?
on Form1 there is a SettingsButton, clicking it opens a SettingsDialog, on the Dialog I have a TextBox.
Dubble bclicking on the Dialog opens a FolderBrowserDialog, in that Dialog I select D:My DocumentsTest Pics or enny other folder by clicking on OK that path is desplayed in the TextBox.
If the SettingsDialog is closed or the app. is closeed the contens of the TextBox is lost.
I need to replace a path's last folder. what's the best way to do this?
[Code]...
Is there a code checking that whether a shared folder is available?? Or check whether ftp path is available?
View 2 RepliesI was googling / searching the forums for this type of code.I want to be able create a folder within my application folder, mainly because I don't want people using my program to use a specified path to be able to use my program.
Example,If I would using a specified path It would be ("C:/Macbrutal/Foldername")And the user who would install my application surely, doesn't have macbrutal as username for windows so their path would be ("C:/User/Foldername") and that would bring my program an error, if you get me.
So to brake it down a little, Let's say my path for my program is ("C:/Macbrutal") I want my program to generate a folder where my application is located (not with specified path) which would be (C:/Macbrutal/newfolder")
I want to know the path of windows directory then create a folder within it automatically example : test1
so the vb.net application shoult detect the path to windows then create inside of windows folder a folder named test1[code]....
When im naming a variable for a directory should i end the variable name with path, folder or directory.
View 4 RepliesI like to search trough some folders to find files. My code to search trough folders and sub folders are:
Code:
For Each Dir As String In FileIO.FileSystem.GetDirectories(My.Application.Info.DirectoryPath, FileIO.SearchOption.SearchAllSubDirectories)
Next
How can I get the path of each folder and subfolder with this code??
How can i loop trough treeview and get path of directory of each folder in the treeview?I have this code for adding a color to a treeview item, but it seems like its not possible to retrive the folder path...
HTML Code:
'add color to folder in treeview
Private Sub RecurseNodes(ByVal
[code].....
i added a folder in my project by using the solution explorer. now i want to include a couple of images there that i can use as a default image for my app. in my app i have a picture box which will:show a 'default pic' if the person doesnt have a picture yet. show an 'error pic' if the picture is not found.show the persons image located in the server.
View 3 Replies