Microsoft Binary File From A Unix Computer?
May 5, 2009
I'm working on a program that's an update from Microsoft Basic on unix to VB .net 2008 on the PC.The files that are on the Unix are Microsoft Binary files.How do I read a binary file and then input the data into a SQL table?
View 3 Replies
ADVERTISEMENT
Jul 6, 2011
I was recently assigned to do some research on how to approach a project. Right now we have an old program written in tcl. From this tcl program ( running on VMS client computer), we are able to run unix commands to execute processes on a unix server. This is done via tcpip. Now, we are thinking of making upgrades to this system . We are wondering if this kind of thing was possible with Visual Basic. Are we able to run a VB program on windows computer to run UNIX commands on a server? If so, what issues might be brought up. If anyone has even the briefest guideline or tip on this,
View 3 Replies
Jan 8, 2009
Is there a way to run a unix script on a unix machine with VB .NET without using a third party software like Rebex ssh?
View 4 Replies
Sep 22, 2010
Any way to set (force) using binary or text for ftp in My.Computer.Network.DownloadFile?
View 4 Replies
Jun 13, 2011
I want to connect to a UNIX file path over our network and grab some .log files. Is this possible? If some do I need to do anything more than what I would do if I was opening files from a local path?
View 5 Replies
Feb 25, 2011
I have built a USB interface card which transmits a binary value to the computer dependant on which inputs are active. For example, if inputs 1 & 2 are on, the output will be 3, likewise if inputs 1 & 3 are on, the output will be 5.My problem comes as I wish to get the binary integer into a format whereby I could have 16 checkboxes (one for each input), and 'check' the ones to which the inputs are on. For example, if inputs 1 & 2 are on, then checkboxes 1 & 2 will be selected, likewise if inputs 1 & 3 are on, then checkboxes 1 & 3 will be selected.The largest binary number that will be going to the computer is 65535.The only way I can think of doing this at present is to do the following a lot of times:
[Code]...
View 10 Replies
Nov 11, 2011
I want to create a file with VB.NET and I want to use this file for a Icinga or Nagios configuration.
View 1 Replies
Dec 12, 2009
I need to parse a Unix text file so, I am using System.Net.WebClient to ftp into a Unix server then using the .DownloadFile() method to get the text file, but its coming in with the Unix end line ""; so is there a way to convert that to windows format while doing the DownloadFile method? I do re-read it after and fix it, I am just looking for a better way.
Or is there an alternate such as instead of a DownloadFile, and the two other steps above can I just read it into an array right off the Unix server?? If so then what method would I use?
View 4 Replies
Dec 11, 2009
My VB.NET application uses Microsoft Flex Grid Control 6.0. This is a legacy application which has been ported from VB6 with the Visual Studio conversion wizard. Although I can compile the assembly, I get a COMException because some class is not registered. I've found out that this class is the Microsoft Flex Grid Control 6.0.
Where can I find the control and how can I register it on machines so that the application will run?
View 1 Replies
Oct 8, 2011
I'm currently doing a project that includes access 2010 My question will be what driver can I use for an access 2010 *.accdb type file? For a *.mdb it works perfectly well with
ConnString ="Driver={Microsoft Access Driver (*.mdb)};Dbq=" & Application.StartupPath & "\CITSDB.mdb;Uid=Admin;Pwd=123;"
But, when I changed the mbd to accdb:
ConnString ="Driver={Microsoft Access Driver (*.accdb)};Dbq=" & Application.StartupPath & "\CITSDB.accdb;Uid=Admin;Pwd=123;"
It resulted in errors:
ERROR[HY000][Microsoft][ODBC Microsoft Access Driver]Could not find file '(unknown)'.
ERROR[IM006][Microsoft][ODBC Driver Manager]SQLSetConnetAttr failed
ERROR[HY000][Microsoft][ODBC Microsoft Access Driver]Could not find file '(unknown)'
And then it shows me that my code for
If dsLogin.Tables(0).Rows.Count = 1 Then
IndexOutOfRangeException was unhandled
Cannot find table 0
I knew it must be the driver but I don't know what accdb driver I can use for the connstring.
View 3 Replies
Dec 19, 2006
I need to copy a file from a local computer to a remote computer on the network, if i try to use File.Copy without logon i get the following error:"Logon failure: unknown user name or bad password."How do I provide user name and password for file copy?
View 2 Replies
Nov 4, 2010
I have exe file that lunch a program takes 5 inputs. this exe locates in computer B and I need to execute it from computer A using VB.net customized application that pass the inputs through it.
View 3 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
Jan 11, 2011
i 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 Replies
May 4, 2009
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?
View 8 Replies
Jun 8, 2011
I have designed and published my small created app with WINDOWS FORMS using VB 2010 EXP on Windows 7. I can only install the app on the machine that I used to develop the app.I want to install the app on another computer but I cannot. I usually have error reports.
Example:Unable to install or run this application. This application requires Microsoft Common Language Runtime 4.0.3 to be installed on your computer.
what can I do to be able to install the app on a different computer which does not have .Net and does not have visual basic 2010 installed.
View 13 Replies
Jun 14, 2009
I've gone through about 16 hours and two packs of cigarettes trying to figure this out. First a little background. I was using 6.0 up until 2004 when I went to prison. I'm out now, and trying to relearn the trade, using VS 2005. I'm currently porting some 6.0 code from another project, SpyCast Webcam Studio, into VB 8.0. It's disheartening, to say the least. None of the old built-in subs/functions work anymore, so I have to scour the forums to relearn each and every function.The section I'm doing now takes a snapshot from the webcam (Video API --> PictureBox --> Save as Jpeg), then upens the file to upload it to the server via HTTP POST. I've been using this code in SpyCast for years with no trouble, but I spent many hours trying to piece together the right code to open the binary file to read its contents. I pieced together two methods I found around the forums, one using FileStream() though the code I found wasn't for binary files, even though it said it was, so that code doesn't really work. Method two uses Microsoft.VisualBasic.FileOpen() and works better.
Here's the kicker. By the time I run through the rest of the rigamarole of uploading the file, by the time I read it on the webserver, it's *slightly* corrupted. It's a valid Jpeg, no errors, but the picture looks like when I use to watch the Playboy Channel when I was a kid scrambled with weird colors and whatnot. [code] Each "chunk" is basically one "line" of the file. It looks like a single LineInput() return is the text between two carriage returns. Am I correct? I tested this with a flat text file, and it looks true. However, That one input line returns the text or data with the carriage returns *stripped*! ***?!? =( Fine, I have no problem adding my own vbCrLf to each LineInput(), if I were opening text. but this's binary. A character could be Chr(10) or Chr(13), both of which are removed from the original file contents.So I could very well need to use something other than LineInput(), but I haven't found any other examples on the web using this method.
View 1 Replies
Mar 13, 2010
how I could check if a certain file is in text or binary format?I'm using VB.Net 2008 Express.
View 2 Replies
Feb 2, 2010
Program to convert binary pdf file to tiff file in VB.NET..?? We can use third party tools also..???
View 1 Replies
Oct 23, 2011
however, I am stuck at BinaryReader.actually this is what i am trying to acheive through VB.NET.say for the following file type :
JPG file = FF D8 FF E0
BMP file = 42 4D BE 4E
PNG file = 89 50 4E 47
GIF file = 47 49 46 38
the above are the 4-byte headers in Hex(raw) I need to read these headers of any given file using OpenFileDialog using Button1_click event,on selection of any given file(*.* filters ON)it should use the BinaryReader and look for only 4-bytes starting from offset 0, and it should not go to EOF marker (-1).and have a variable to hold this 4-byte header value, to run this in a database table which will check the same header value in the table and would display the corresponding extension of the file. from the table.
I can do this using case, if then...etc.however, I have to do it using Database and also i need to check for testing purpose to use MsgBox() to display this variable which is holding the 4-byte header.however, the MsgBox doesnt allow anything other than String.
PS: I tried studying the methods like:
FileOpen/Seek/Peek/ReadBytes().
but still not sure how to get them work.
View 2 Replies
Apr 29, 2012
I need to save a datatable to a binary file , in binary format , in order to make the process fast because the datatable may contain up ten millions rows. So , XML is not favorable because it makes the file large sized , and the process will be slow.
I managed to save the datatable to a binary file , and it works fine , but the problem when I try to add new rows to the existing binary file (using a datatable with the same schema , but different rows data) , it copies the schema of the datatable to the binary file, making it very large.
[Code]...
View 1 Replies
Oct 13, 2009
I have a Binary file that has data represented in 1604 bytes. each set of data within these groups is composed of short (2 byte) numbers. I would like to creat a vb.net program that takes this binary file then converts it to numbers, and then places it within a new text file. How would I accomplish this?
View 9 Replies
Mar 28, 2009
I have to convert a data (not the current date) to GMT and represent it as a Unix Epoch.This is what I'm trying - it returns something that looks correct - but I'd like to know if anyone with more experience knows if I am doing this correctly.
Friend Function GetEpoch(ByVal dDate DateInteger
Return (dDate.ToFileTimeUtc DateTime(1970,10000000
[code].....
View 1 Replies
Jan 12, 2008
Is it possible for vb.net to run a unix script?
If so , how to? Which namespace should I use?
View 5 Replies
Aug 30, 2009
I am reading a Binary file using BinaryReader in VB.NET.The structure of each row in the file is:
"Category" = 1 byte
"Code" = 1 byte
"Text" = 60 Bytes
Dim Category As Byte
Dim Code As Byte
[Code]...
View 3 Replies
Feb 27, 2010
i have a file any type of file and i want to display the binary of that file the (01) of that file can do it also i want to display the hexa which it better and faster if u just can put me on track
View 4 Replies
Aug 22, 2011
is anyone know how to get BMP image from binary file?
Offset Length Description
100 4 BMP_offset
268 4 Cover_size
296 4 Cover_offset
View 10 Replies
Mar 16, 2012
I've been using VB.NET for a few years now, but I never really got into binary files. How do you add onto binary files from the beginning? Here is some example code:
Dim writer As New IO.BinaryWriter(IO.File.Open("C:\Users\Dameon\Desktop\newbin.bin", IO.FileMode.CreateNew))
writer.Write("HELLO WORLD!")
[Code]....
How can I add onto the beginning of the file without overwriting what's already there? I'm trying to make my own file archive format. I have the compressing/decompressing down, but now I'm implementing adding/deleting a file after the archive already made.
View 5 Replies
Apr 15, 2009
I have existent binary files with this structure[code]...
View 13 Replies
Jun 12, 2010
I need make an application that gets binary code from a file, such as a .exe, (in 8-bit form) and display the charectors in a RichTextBox .BUT! The catch is I need it to do the process REALLY fast, like in a 5th 0.5 of a second. I have a method but it takes way to like, sometimes 5 seconds for 1 file, which isn't what I want This is the code I have:[CODE]......
View 9 Replies