Usefulness Of .def File In Vc++ Dll
Oct 29, 2010what was the role of .def files in vc++ dlls how .def files are useful when calling a vc++ dll from vb 2008 express edition
View 1 Replieswhat was the role of .def files in vc++ dlls how .def files are useful when calling a vc++ dll from vb 2008 express edition
View 1 RepliesI've been looking at the List(Of T).Find method and cannot figure out why it is useful?
Microsoft's example for using it is as follows:
CODE:
Reading a .txt file in VB.net. My file path is C:UsersMyLilMulePepeDocumentsVisual Studio 2008Projectscurtain_calls.txt.
This is my line of Dim LoanOptionsFile As String = "C:UsersMyLilMulePepeDocumentsVisual Studio 2008Projectscurtain_calls.txt"
I can read the file when I run the program, but how do I write the file path so that someone else can download my program and file and read the file on their system?
I do one project in visual basic 2010.In visual basic 6 project can be make Package and deployment (setup file or install file) file using Package and deployment wizard.But in visual basic 2010 express edition does not have Package and deployment wizard.how to make Package and deployment (setup file or install file) file in visual basic 2010 project?
View 4 Repliesi need to read binary file and in this file found the string and replace it with other one and save the file afterwords. I found many example to read binary, but to find and replace is for me mistery.
View 3 RepliesI'm trying to upload a file via FTP from my local computer to an FTP server, which is also on my local computer at the moment. I've got this sub I'm calling:
Public Sub UploadFTPFile(ByVal ftpservername, ByVal fullfilepath, ByVal filename, ByVal username, ByVal password)Dim clsRequest As System.Net.FtpWebRequest = _
DirectCast(System.Net.WebRequest.Create("ftp://" & ftpservername & "/" & filename), System.Net.FtpWebRequest)
clsRequest.Credentials = New System.Net.NetworkCredential(username, password)
clsRequest.Method = System.Net.WebRequestMethods.Ftp.UploadFile
[Code]...
I'm running an FTP Server using Golder FTP Server, which is freeware. I think it's setup correctly because connecting to the FTP Server using the exact same string as above using Windows Explorer works great.
I am trying to create a log file which I am going to use to populate some controls (DataGridView or Treeview). I am trying to figure out if should use text files or XML files to do so. Effectively the log will highlight multiple phases in a client-side app. The log will be written to at various phases when the project is running. The user will always have the options move on to the next phase or save progress and exit the project. As such, I want the log file to highlight how far the user has progressed throught the various phases AND I want the log to highlight varous information from each phase. Whenever the user starts the project, they will be given the option to load existing log files. So the project will have to read these log files and append them where necessary as the user progresses.
I am not sure what the best way to do this is and below is a rudimentary approach using text files. As you can see, the top of the file would have a summary of all the phases and whether or not the user completed each phase. Next each phase would have a data section highlighting what data was stored along the way. I have used a ":" to denote each section. Then within each section I would obviously need to use a delimeter for all my data. So if Phase1 = True, then I would load all the pertinent data from "Phase1:" into the desired control. Can anyone provide an efficient way of doing this and provide some insight as to whether I should use XML instead. The phases my change during development and I am not sure yet which controls I will be using. Does XML provide more flexibility.
In summary I am looking to create, read/write and append log files and populate controls with the data in varous sections of the log file. Example:
Phase1 = True
Phase2 = True
Phase3 = False
Phase4 = False
[code]....
I need to write data to a file, preferably in binary format, but I am unaccustomed with the concept. Where's the easiest place to get the basics? I could come here with a specific need, but I'm at the point right now where I am more willing to work within the confines of keeping it simple.
Here's what I know:
1. how to open a new file
2. how to specify the record length
3. how to close the file
Some specific questions:
Does the record length have to be constant throughout the file?
Can I read the nth record without reading the whole file?
I have File Like "Sample.bak" and when I compress it to be "Sample.zip" I lose the file extension inside the zip file I meann when I open the compressed file I find "Sample" without any extension.
I use this code :
Dim name As String = Path.GetFileName(filePath).Replace(".Bak", "")
Dim source() As Byte = System.IO.File.ReadAllBytes(filePath)
Dim compressed() As Byte = ConvertToByteArray(source)
System.IO.File.WriteAllBytes(destination & name & ".Bak" & ".zip", compressed)
Or using this code :
Public Sub cmdCompressFile(ByVal FileName As String)
'Stream object that reads file contents
Dim streamObj As Stream = New StreamReader(FileName).BaseStream
[CODE]...
I need to compress the file without loosing file extension inside compressed file.
I am working on a VB Console Application that takes an Autocad drawing type DWG and converts it to a PDF using a shell command that calls a third party application. In this case, acmecadconverter.exe from www.dwgtool.com. Then the PDF that is created needs a unique watermark, so I call a second application for that called pdftk.exe from www.accesspdf.com/pdftk/.
Everything works as intended, except when I try file names that contain spaces. The file system object does not tolerate spaces in the drawing file name. For instance, the following command gives me a system.io.filenotfoundexception...
My.Computer.FileSystem.RenameFile("Test Flowchart1.dwg", "Test~Flowchart1.dwg")
It's the same problem for all of my File System commands. Either file not found or invalid arguments.
The complete script I'm using is here:
Code:
Sub Main()
Dim arrArgs() As String = Command.Split(","), _
i As Integer, folderPath As String, myPart As String, _
[Code].....
I'm currently developing an editor for an AFL management sim.I want to be able to load three or four multidimensional arrays to the program, then save them to the same file. I tried the tutorial on here but got completely muddled up. Why can't it be easy like in VB6 When it was like 10 lines of code tops!
View 5 RepliesI am writing a program to calculate Pi to several hundred billion decimal places and this will require lots of GB of memory. I wrote a test program in VB2008 that saved the first 16 digits of Pi (without the decimal point) to both a text file and a random access file, just to be sure it was outputting the numbers properly. For reference the first 16 digits of Pi are:
View 8 RepliesI have a program that can save to a .txt file.The issue is I need it to be done in a tab delimited way.Basically:
TextHere<Tab>TextHere<Tab>TextHere<NextLine>
TextHere<Tab>TextHere<Tab>TextHere<NextLine>
I have this so far, but all it does is put the TextBox1.Text next to TextBox2.Text
Code:
SaveFileDialog1.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"
Dim FileWriter As StreamWriter
Dim results As DialogResult
[code]....
Our program will start with the help of a FileSystemWatcher object. How can we check or the file is total copied, for example the file is 100 Mbyte it take a time it's ready for use. Idea:
Do While True
Try
N = testForUse(BigFile)
If N = 1 Then Exit Do
[CODE]...
I have an app I created in Vb2010 (my 3rd VbApp) it is a file converter which works but all it does after convert is... I have a converted file but no file name plus it converts within its own directory as opposed to convert in dir where original file location.
So any clues as to how I always use file to converts name as defa and where the converted file will reside same dir as original file?
I want to be able to able to read the dimensions of a TIF image without loading the entire file.
PS Using Visual Basic 2008 on Vista64.
[URL] to create my sqlite db file. I created it as a sqlite db version 3 file. When I go to open the connection
[Code]...
Need to know the code in which to loadfile (.rtf) into a richtextbox via user-selection when the rtf file is within the setup of the file system editor under 'Program Files'. Have used the following code and it doesn't work....
CODE:
Me.RichTextBoxDisplay.LoadFile(Application.StartupPath &
"Application FolderGarman SoftwareKing James Version 1611OTGenesisChaptersGen Ch2.rtf")
[Code].....
Do you have some source code how to open a file (file browser) with file extension specific using Visual basic.net.
Just need to get the path then control this using the vb.net binding
Here's my code: System.IO.File.Move(Form6.OpenFileDialog1.FileName, "Temp") I'm trying to make it so that the program copies the file that you select in the OpenFileDialog and moves it into the "Temp" folder. It gives me an error saying: Cannot create file when file already exists.
View 7 RepliesWhat my program does is load a file (password list), then progressively reads each line of text in the file whilst writing each line to a new file. After X amount of lines have been written, it should start writing the lines of text to a new document until the initial password list has been split into X amount of password lists. The problem I have is that after hours of tweaking, all I can get it to do is write either blank ocuments, or write all of the lines to only one file. I really need it to be able to split into multiple files, preferably at runtime rather than loading a whole text document into the program in a textbox or array then writing it to new files.Below is the source:
Imports System
Imports System.Windows.Forms
Imports System.IO
[code].....
If you take a look at my code
Code:
Private Sub CompileToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CompileToolStripMenuItem.Click
Dim SaveFile As New SaveFileDialog
[Code].....
I am trying to create an application that will copy files with a "*.1" extension over to another directory and change the file extension to .tif. The problem is that the *.1 files are located within zip files. Is it possible to copy files out of a zip file without having to extract it? The code I have so far is below. I have only gotten to the point to list all *.zip files found in a specific directory in a listbox. I am really looking to list all *.1 files found within all .zip files in a specific directory. Once they are all listed in the listbox, I will then chose a destination directory, copy them to the destination directory and change the files from a .1 extension to a .TIF extension.
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
ListBox1.Items.Clear()
FolderBrowserDialog1.SelectedPath = "C:\"
[code]....
I have a workbook (Workbook1) that runs through some steps using visual basic, which ends up opening another workbook Workbook2). Once Workbook 2 is opened, I need to copy a section of data from it, into Workbook1 int a specific worksheet. I was able to do this by recording a macro, but the challange is, the name of Workbook 1, and Workbook 2, will vary by User. When I created the macro it uses the files as they are currently named. The section of code is below.
[Code]...
I am having a big problem with deleteing a file form the server. I have the filename for a image stored in my SQL database. the problem is i am getting an error of "Illegal characters in path. " Here is the code below:Everything is working fine until the delete command.
Protected Sub DeleteButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim tmpEquipID As String = Request("EquipID")
Dim tmpImageID As String = (CType(FormView1.FindControl("ImageIDLabel"), Label).Text)
Dim d As New equippicsDataContext
[code]....
I'm Writing a Problem that will allow users to move data from one Data file to the next, using a Text file. My problem is that i so far i 3 test users.
No matter what test user is logged on it seems to be Reading the first user info no matter which one is on.
How do i get it to Only Read the User Info and show it up on text file that is Currently logged on.
Code:
Imports System.IO
Public Class TestForm6
Inherits System.Windows.Forms.Form
[Code].....
i want to open a html file. i need the file name to show in textbox2 and the full file path without file name or extension in textbox3 , while the file content is opened in textbox1. the file content opens fine. this is the code i have:
Private Sub open_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles open.Click
OpenFileDialog1.InitialDirectory = "C:Documents and SettingsOwnerDesktopweb design"
[Code]....
i want to open a html file. i need the file name to show in textbox2 and the full file path without file name or extension in textbox3 , while the file content is opened in textbox1. the file content opens fine.this is the code i have:
Private Sub open_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles open.Click
OpenFileDialog1.InitialDirectory = "C:Documents and SettingsOwnerDesktopweb design"
OpenFileDialog1.CheckPathExists = True
[code]....
here's my nut for the day.. i want to save a file to a folder. here is the code i have:
[Code]...
I don't know whether it is simple or not because i am new to programming. my requirement is : In my vb.net winform application, the filenames of the files present in "D:Project" willbe displayed in DataGridView1 control. Now I want to load these files one after another into memory stream buffer and add the headers("ID","Name","Class") to the content in the file. Then I want to save these files in "C:" with "_de" as suufix to the filename i.e.,sample_de.csv.
View 1 Replies