Make An Application That Search The Files Like Grep In Linux?
Jan 31, 2011I would like to make an application that search the files like grep in linux.
View 1 RepliesI would like to make an application that search the files like grep in linux.
View 1 RepliesCan I make an application that works on other OS's (e.g. Mac OS X, Linux)?
View 3 RepliesIs there a way for my program to send Linux Console Commands to a remote Linux server?
View 4 Repliescan We run VB.Net windows Application (2.0 Framework) in Linux.
View 2 Repliesanyone know how to make linux compatible software with Visual Basic 2010? is it possible? and how could you do this?
View 2 Repliesi developed a windows application in vb.net 2005 and i used ms-access as my database. i need to deploy my application in redhat linux operating system.
View 4 RepliesI developed an application using VB .NET on a Windows OS. If I want to enable this application for a client who uses Linux , how do I do so? Do they need to purchase VB .NET? I am totally lost on how this works.
View 5 RepliesI developed a application using vb.net 2005 and sql server 2008 for windows but i want to run this application on one of the client which is linux. means : windows server 2003 on which database is install. Five client machine is Windows Xp on which application is running ok they have two machine on which linux is loaded. Now I want to run the same application on linux machine also Guide how to do this..
View 3 RepliesI want to Make a Application Who Search My Computer Drvies.
Condition:
My Form Have Labels With The Name Of "A" to "Z" That All Visible False. When I Press Search Now Button Its Seach My Drives And Show To Label(x/y/z)=true. Its Means All Available Drive Label=True. Label Look like This:
C
D
E
F and So On.....
am devoloping a simple program in vb.net but i wanna do it a cross platform almost (windows & linux) or if there is a vb.net to C++ code converter
View 2 RepliesI am currently trying to develop an application which will backup large folders to a specified destination. To find all the files in the specified 'backup' directory I am using the following code.
[Code]...
I have tried putting my GetFilesRecursive function into a separate background worker to run first so I can update the GUI however I am struggling on how to return the List of found files back to my application (I get cross-threading exception) and how to update the progress bar to show the progress of the GetFileRecursive function so the user knows it is processing the list of files and has not crashed/frozen.
I want to make an application that moves all files from 1 zip to another and deletes a folder.
It is a Minecraft mod manager, so i wanna move all files from one zip containing the mod, to the minecraft.jar (which is a zip with another extension) overwriting all files. Also, it should delete the META-INF folder in minecraft.jar to prevent black-screening.
how i would make an application that can create exe files.Like i make an app that has the options:
Form name:
Form icon:
Message to display:
and then you click build, and it builds an exe with the options set in the original form as the settings for the new exe.
I'm trying to make a application that allows the person to script config files for an open game server project so they don't have to do it manually... I'm starting with 3 groups. Those groups are "NPC NAMES", "MONSTER NAMES", and "MONSTER WALK POSITIONS"... I want the user to be able to add as many items to the group as they want... Right now I'm using a listbox, but its very messy... I want the user to be able to add items to these groups, and then add the items of each group to a .txt file.
View 5 RepliesI am using VS2008(VB.NET) and SQL Server2000. I want to make an application which reads files and Insert Data into SQL. If first file has some error. Write into log and Move Next file for Proceed. How can I do that.
View 3 Repliesone of the BIG hurdles in my simple project, making a search engine. I don't know how at all. The search engine need only to search in one Directory with its sub directories and txt files for criteria, and display the results, with option open from the results. any basic code or example maybe?
View 5 Replieshow I can make my Application to automatically create preset folders with files when installing the application? The files should be under user/documents/MyApplication/Newpresetfolder
View 5 RepliesI am getting below error when I am trying to run vb.net application on Linux through mono.
[Code]...
The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly(/root/HelloWorld/HelloWorld/bin/Debug/).
I have a MS access database connected to a VB2008 developed software.
I want to make a search button to search through all the tables in the database.
how can I do this?
I want to link a field in table one to a field in table 2 in the database so that they are the same ( whenever I change what is in table 1 table 2 changes to the same automaticaly )
i have 1button,1textbox,1datagridview.i want to make a search button with it to search for student id..i use ms access..example i type 12-200705-0005 on the textbox,then i click search button,then the data with student id will show at datagridview..
View 1 Replieshow I can search a folder of csv files to find out if one of the csv files has a particular name in ?I'm currently searching a folder to bring back all csv files using the code below and this is working fine.
[code]...
But now I want to take it a step further and actually search within the files themselves.
My search application isn't working. When the "Search" window pops up, the label stays frozen on "C:". The application isn't freezing, just the search. Why? I can still use the buttons on it, and everything else seems to work fine.
View 4 Repliesi need help with searching files.Example: I want to find all .jpeg files on computer or in a specific folder. And when i/it found the files it lists them up i something that you recommend, like a listbox.
View 5 RepliesHow do i make a code that unzips files and then move those files into another zip file?
View 2 RepliesCan anybody show me the code to search all the files in the system? i also need to search it drive-wise.
View 2 RepliesI have around 50000 XML files with a size of 50KB per file. I want to search for data in these files, but my solution so far is very slow. Is there any way to enhance the search performance?
View 6 RepliesI have already posted a thread regarding this but no one has ever shed a light upon it. I want a program that searches for files (.docx, exe, ppt, txt) from all folders.
View 7 RepliesI need a code to find all files. mp3 on your hard disk with certain tags (eg: Shakira, Pitbull, 50 Cent, etc.). and then delete it.
Try
For Each f In Directory.GetFiles("D:", "*.mp3", SearchOption.AllDirectories)
File.Delete(f)
[code].....
I need a code to find all files. mp3 on your hard disk with certain tags (eg: Shakira, Pitbull, 50 Cent, etc.). and then delete it.
View 2 RepliesI have this code that makes me confuse..
For Each file_info As FileInfo In file_infos
If Not File.Exists("C:\Mydir" & file_info.Name) Then
[code]....