Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 2 online users. » 0 Member(s) | 1 Guest(s) Google
|
Latest Threads |
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
02-27-2025, 12:59 PM
» Replies: 1
» Views: 2,844
|
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
01-08-2025, 11:00 PM
» Replies: 1
» Views: 1,872
|
Find Local Women Looking ...
Forum: Random Discussion
Last Post: iHOMEz
12-27-2024, 12:11 AM
» Replies: 0
» Views: 1,014
|
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 1,849
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 1,788
|
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 1,925
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 2,053
|
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 2,875
|
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 3,063
|
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 22,634
|
|
|
New graphics card |
Posted by: brco900033 - 10-27-2012, 09:02 AM - Forum: Computing
- Replies (1)
|
 |
I'm planning to buy a new vidcard, an AMD Radeon HD7850. Has anyone a 7000 series video card from AMD? I don't know the quality of AMD because I always had an nVidia. I'm definetely going to overclock him, I heard that the 7850 card is only worth when you overclock it.
|
|
|
Windows API Code Pack 1.1 |
Posted by: brco900033 - 10-27-2012, 07:41 AM - Forum: Programming Help
- Replies (1)
|
 |
Hi, I have already a question. As you now I'm making a little program and therefore I wanted a listview like Windows Explorer. I searched around the internet and found the API Code Pack. I saw the sample file with the ExplorerBrowser. But how can I add this component to my project?
Thanks!
|
|
|
Listview and Krypton help |
Posted by: brco900033 - 10-26-2012, 09:25 AM - Forum: Programming Help
- Replies (1)
|
 |
Hello guys
I'm making a little application that uses a listview. But since I never used the ListView control I don't know much about it, so I have 2 questions. BTW I use DotNetBar ListViewEx if that makes a difference.
How can I add all files from a directory to the listview, with icons. The files are Shortcuts so is the program able to read those kind of files? My second question is how can i get the text from the selected file (file because MultiSelect is disabled), I find it a lot easier with the ListBox but with this application I need the ListView.
How can I get the Krpyton form style programmatically? I thought this was possible?!
Thanks!
|
|
|
How to make a GUI for a console/cmd application |
Posted by: Cartman - 10-26-2012, 04:55 AM - Forum: Programming Help
- Replies (2)
|
 |
Hi guy im stuck <!-- s --><img src="{SMILIES_PATH}/icon_e_sad.gif" alt=" " title="Sad" /><!-- s -->
Ive become obsessed with console/cmd application that you run from the command prompt with parameters like wget, ffmpeg, rtmpdump etc.....
So i tried researching how to make a frontend GUI for such applications and this is where i have hit a brick wall.
For example one such console app i would like to make a nice GUI for ffplay(media player) which is part of the ffmpeg package and you run it from a command prompt like this.....
Code: ffplay [options] [‘input_file’]
Working example.....
Code: ffplay -i http://wpc.573d.edgecastcdn.net:80/00573D/live/enc0001/a-bbc1/m3u8/a-bbc1-1.m3u8
Any idea how i could make a simple GUI for ffplay ?
So far i have.....
Code: Imports System.ComponentModel
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myProcess As New Process()
myProcess.StartInfo.UseShellExecute = False
myProcess.StartInfo.RedirectStandardOutput = True
Try
myProcess.StartInfo.FileName = "ffplay"
myProcess.StartInfo.Arguments = TextBox2.Text
myProcess.StartInfo.CreateNoWindow = True
myProcess.Start()
TextBox1.Text = _
Replace(myProcess.StandardOutput.ReadToEnd(), _
Chr(13) & Chr(13), Chr(13))
myProcess.WaitForExit()
Catch ex As Win32Exception
MsgBox((ex.Message + ". Error Detected."))
End Try
End Sub
End Class
This only works with certain parameters like......
but try and run a video it wont work ?
<!-- s --><img src="{SMILIES_PATH}/icon_e_sad.gif" alt=" " title="Sad" /><!-- s -->
|
|
|
Custom tab control help and making controls |
Posted by: Derek275 - 10-25-2012, 05:26 PM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (4)
|
 |
I'm fairly new to the Visual Basic language, and even newer to making controls controls. I followed Brandino's instructions on making your own version of controls and making .dlls.
What my issue is, is I tried to make a class library (seperate from a project) and tried to do Inherits TabControl. It didn't work like a class built in a project, however. Do I have to use something like 'Inherits System.Blah.TabControk'? How would that work?
Also, how could I make them look like the Google Chrome tabs?
Thanks for any if you who help.
|
|
|
Get specific line |
Posted by: brco900033 - 10-24-2012, 08:24 AM - Forum: Programming Help
- Replies (2)
|
 |
Hi all!
I have a little question about how to read a line that contains for example "blabla", it's just a part of the text so no complete match.
Thanks in advance! <!-- s8-) --><img src="{SMILIES_PATH}/icon_cool.gif" alt="8-)" title="Cool" /><!-- s8-) -->
|
|
|
How can we protect our projects? |
Posted by: Ecnarf - 10-19-2012, 07:15 AM - Forum: Programming Help
- Replies (3)
|
 |
I have recently come across something that I find to be quite annoying. I was watching a youtube video and this guy had a software that he was able to use to decompile a project and view its code... How can we protect our applications from this?
|
|
|
|