Vb6 App.Path Returns Only URI Now?
Mar 31, 2009
Recently (I have no idea when) App.Path in VB6 started to return a URI rather than an absolute path for the location. Instead of returning something like "C:program filesmyapplication it has begun returning "\sacoc$program filesmyapplication"Has anyone else noticed this?
It breaks a whole crap-load of my code.It seems like MS, in their infinite wisdom, have decided there is some security breach with the way it was returned before - just guessing.
View 2 Replies
ADVERTISEMENT
Mar 15, 2010
I need to open a *.py file in the shell (DOS) box, but it returns an error that no file was found at the specified path. But this path is completely correct. Unless Visual Basic are referencing to paths in another matter than C#? 'Cause I am developing in C# and referenced to VB to do this.
View 3 Replies
Sep 15, 2010
How to make DLL file that returns File Path which is selected in the Dll while creating, using openfiledialog, Button, Textbox.
View 1 Replies
Aug 22, 2006
I have a Access program and I'm using VBA code in the background to run Winunzip using shell command. Well, the path of the .zip file has spaces in it and it's not recongizing the path as a valid path. Is there a another way to tackle this problem besides the shell?I can't us pkzip either. Has you can see I had to use progra~1 instead of Program Files.[code]
View 2 Replies
Jun 24, 2010
I have some code which gets child items for a menu via the GetChildren function which takes a list of menuData: Dim builtMenu As New List(Of MenuData)(_rawData.FindAll(Function(item) item.GroupingID = 0))
For Each menuData As MenuData In builtMenu
If menuData.Children IsNot Nothing Then
menuData.Children.AddRange(GetChildren(menuData))
End If
Next
If I check if menudata.children isnot nothing, it always is nothing because the GetChildren function is yet to run (providing the child items, which do exist). If I remove this check and just have this code:
Dim builtMenu As New List(Of MenuData)(_rawData.FindAll(Function(item) item.GroupingID = 0))
For Each menuData As MenuData In builtMenu
menuData.Children.AddRange(GetChildren(menuData))
Next
Then I am presented with a Object reference not set to an instance of an object error on menuData.Children.AddRange(GetChildren(menuData))
View 1 Replies
Apr 13, 2012
Problem drawing dotted path lines, with even dots along the path line.I want to draw a path line that can be any shape (square, round, outline etc), and along this path line I want even dots to appear.
I also want to be able to resize the shape (as in the example attached)This is very easy to do using "DrawPath" and defining points for the path and using a pen defined as dots.The problem I have is I want the dots to be evenly placed along the path, on any shape or size I draw.In the example I have created, I create a square with 4 points and draw a dotted path.There are 2 buttons that allows me to resize the square (larger or smaller) this helps show the problem more clearly.
The path starts at the top left corner and finishes back at the top left corner, the dots are evenly placed along the path, except the final dots at the end of the path. (Sometimes the dots are even and other times they are not even).The shapes I want to draw can be any size and any shape, but I have used a square in this example to show the problem I have. point me in the direction I need to go that allows me to draw the dots and give the impression that they are even all along the path, for all shapes and sizes.
In the pictures below if you change the size of the shape, one will have even looking dots, the other will not.
[Code]...
View 2 Replies
Dec 7, 2010
i used the following codes:
private mediapath as string = "C:movie.avi"
private form1_loads blah blah blah
[code].....
View 7 Replies
Apr 7, 2009
I am trying to create a function to convert a mapped drive path to a UNC path. I did some googling and found several different pages on the matter. I am most interested in the first one, but I cannot seem to get the code to cooperate. Since the original post was in C#, here is my VB.NET conversion:
[Code]...
View 1 Replies
May 22, 2012
I am trying to read and display a file using MapPath as follows :
Response.ContentType = "Application/pdf"
Dim FilePath As String = MapPath("../Document/123.pdf")
Response.WriteFile(FilePath)
Response.End()
This procedure will work fine and display in the browser. However, if I save the file to C:Document123.pdf, how can I access this file using relative path in MapPath function. Is there an option to access the file which is saved out of IIS server? I am using vb.net 2003.
View 1 Replies
Jun 14, 2012
I'm using acrobat that returns unix paths instead of windows path's. So im wondering if there is a way in vb.net to convert the path to windows path.
i tried using:
docs(i) = javaScriptObj.path().ToString.Replace("/", "").Substring(1)
position = docs(i).IndexOf("")
docs(i) = docs(i).Substring(0, position) + ":" + docs(i).Substring(position + 1)
this only works on local files, but fails when im starting to use network drives.
View 1 Replies
Apr 12, 2012
I want to draw a path line that can be any shape (square, round, outline etc), and along this path line I want even dots to appear. I also want to be able to resize the shape (as in the example attached) This is very easy to do using "DrawPath" and defining points for the path and using a pen defined as dots. The problem I have is I want the dots to be evenly placed along the path, on any shape or size I draw.
In the example I have created, I create a square with 4 points and draw a dotted path. There are 2 buttons that allows me to resize the square (larger or smaller) this helps show the problem more clearly. The path starts at the top left corner and finishes back at the top left corner, the dots are evenly placed along the path, except the final dots at the end of the path. (Sometimes the dots are even and other times they are not even).
The shapes I want to draw can be any size and any shape, but I have used a square in this example to show the problem I have. I need to to draw the dots and give the impression that they are even all along the path, for all shapes and sizes. [Code]
View 2 Replies
Jul 16, 2011
i get this error "Illegal character in path" when checking for a folder to see if it exists.
the folder is D:PlanificatorPlanificatorPlanificatorServerinDebugData1 and it exists.
Function IDExists(ByVal User As String)
User = User.Trim
Scrie("Se verifica existenta ID-ului " & User)
[code]....
View 1 Replies
Nov 29, 2010
Well now i have an issue which is pointing in the use of "path's" physical and network.I have a SQL server on a Server machine and i have a desktop machine used as client.I'm runing from my client machine a stored procedure in order to add a streaming data base.But also before i run this procedure i run another one which prepare the desired "path", this procedure takes:
myPath="\ServerSharedFolderSQL
in order to run the first procedure i have to turn myPath in each physical name:
myPath="DriveLetter:PublicWorkFilesSQL"
Now my Issue is how i will have the physical path, which is build it on the server and which it's from very difficult (to imposible) to know it? Basically i need a function which will return me the physical path, which the implementation it's not knowing to me. My developing environment is vb.net 2010?
View 2 Replies
May 15, 2009
I am using this code below:
[Code]...
I thought the %AppData% should find the relative path. When I go 'Start|Run|%AppData% windows explorer takes me to that directory. I can not put the full path in, as the user is different on each client machine.
View 2 Replies
Dec 23, 2010
Private Function UploadPic() As String
Const bmpw As Integer = 300
Const bmph As Integer = 300
[code].....
View 14 Replies
Jun 1, 2010
I have an .exe application written in vb.net. When I make shortcuts to the application, say on desktop (or anywhere else) and then click on them I want to programatically get the path to that shortcut, ie. C:/Users/xxx/Desktop/shortcut.lnk.
I want this so I can store the pairs shortcuts : (program + different cmd args).
View 2 Replies
May 1, 2012
I'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 Replies
Mar 7, 2011
Say URL1: http:[url].....
RelativePath: ../../hello.htm
Hence absolute path is http:[url].....
Is there a function that do that?
View 3 Replies
Dec 3, 2010
can i know what code that enable me to list all currently running process and get their path and list all the path in listbox1.
View 2 Replies
Jul 25, 2008
when i try to write to a file I get the error:
Quote:
Access to the path "PATH HERE" is denied. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.UnauthorizedAccessException: Access to the path "PATH HERE" is denied.
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. To grant ASP.NET write access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.But when I add: <identity impersonate="true"/ to web.config I get the following error when my application trys to open a DB to read it:
Quote:
Unspecified error
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Unspecified errorLine 55: objConnection.Open()
View 1 Replies
Jun 11, 2011
i want save image in directory path and also save path in database...sqlserver 2005 and retrieve in in same folder and path?
View 1 Replies
Nov 25, 2009
I have one project and in this project I want to save picture to application path and save the path to database as string and retrieve the image from the application path.Can u give me some idea about it..i am using vb.net as frontend and ms access database
View 1 Replies
Nov 16, 2010
i have a datatable with column "prices" and i displeay the column values in a listbox and i sum all the values in this column and i display the sum in a label.text but when i delete one row in de listbox the sum returns a zero value.[code]
View 2 Replies
Oct 1, 2011
The code below reads an Icon from an .ico file, converts the Icon read to a Bitmap and saves the bitmap using:
Bitmap.Save(PathA)
Then does:
PanelShowWrittenIconA.BackgroundImage = New Bitmap(PathA)
[code].....
View 2 Replies
Sep 11, 2010
Could someone point me why the IndexOf returns always zero in the following text?
Dim Str as string = "<p><img class=floatLeft width="330"src="http://www.com"></p><p>"
Dim Idx as integer = Str.IndexOf("<p>")
Is there any other way, of getting the index?
View 1 Replies
May 17, 2011
[Code]...
I always get {} as answer. What's wrong?
View 1 Replies
May 9, 2011
I'm trying to create a function that would return a PDF document. Something like this:
Function GetPDF(ByVal DirectoryPath as String) as PDF
Return DirectoryPath
End Function
View 1 Replies
Apr 12, 2011
I am using Sql Server 2005 and Vb Studios 2010 on a .net Framework of 4.0. I am trying to get the exact number of rows from a database and populate a datatable then have a label show the number of rows.
Dim comm2 = db.selectcommand(db.conn, "*", "Tablename", " columnname = '" & Session(sessionvariable) & "' AND columnname = 'Unread '")
Dim sqlda2 As New SqlDataAdapter(comm2)
[Code]....
View 4 Replies
Oct 28, 2009
I've got my text files read into an array.Which was step 1 .My code so far is:
Note: textSKU is just a text box. No event handler associated.
Private Sub BtnSeacrch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnSeacrch.Click
Dim objCA As New System.IO.StreamReader(ofdCA.FileName)
System.IO.StreamReader(ofdWarehouse.FileName)[code]....
The message box is mostly just to test to see if it's finding the line. And the problem is it's returning -136.Which I'm pretty sure can't be a value in the array ( actually very sure, as I tested it just to be sure, and it says it's out of bounds).I know it's in the array, as when I change returnvalueCA to a...7 for example, it outputs the correct line from the .csv file.
Edit: Index was outside the bounds of the array. is what the debugger says, as it's trying to output the value of SKUSheet(-136)
View 5 Replies
Mar 25, 2011
I have to cut down the amount of code in my blackjack program so im trying to use a function however the function always returns a value of 0 I have tried putting in "return cardvalue" but it still comes out as 0 I dont know where I went wrong or if the code im using can even be used as a function.
Function Values(ByVal deal() As Integer, ByVal counter As Integer, ByVal cardvalue As Integer) As Integer
If deal(counter) = 1 Or deal(counter) = 2 Or deal(counter) = 3 Or deal(counter) = 4 Then
[Code]....
View 4 Replies