Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached
Favorite Tags
Member Avatar for Darkicon

I have a slightly malfunctioning mouse. My problem is that when my computer wakes up, often my mouse stops working. The light remains on and all buttons work but I cannot move my mouse until I unplug it and plug it back in. I've written programs to fix strange issues …

Member Avatar for Darkicon
0
222
Member Avatar for Darkicon

I've been working at this code for probably 7 hours since last night. After hours of troubleshooting I solved most issues with my code but now I have a strange problem that I cannot figure out how to fix. One of my function is to generate a random hex string …

Member Avatar for tinstaafl
0
564
Member Avatar for Darkicon

I have pretty much finished my program I'm writing. It's a program that fixes my issue with Firefox (It never deletes the saved sessions). I have the program minimize to the notification area, however, here's my dilemma: The way I'm doing it is by cancelling the formclosing event and instead …

Member Avatar for Darkicon
0
179
Member Avatar for Darkicon

I'm working on a program that allows me to quickly write database entries. There are 123 columns, almost all of them I'm not using right now so I figured I'd write a program to speed up the process of adding entries to the database. The problem I'm having is exporting …

Member Avatar for GeekByChoiCe
0
171
Member Avatar for Darkicon

I'm working on a mass text replacer program because I'm sick of all the 10-day trial ones out there that aren't very good. The entire program is basically finished (All easy stuff), but now I need to code the actual replace/delete stuff, which I'm stuck on because apparently the way …

Member Avatar for crashed
0
234
Member Avatar for Darkicon

I'm making a program that allows me to control my other computer from this one by encoding and streaming the commands I enter into a console to the destination, which then decodes it and does what the command says and encodes the result and streams it back, then my side …

Member Avatar for bbman
0
146
Member Avatar for Darkicon

How do I make my app have a description in the Processes tab of the Task Manager? Changing the assembly description doesn't do it apparently. Right now the description is just it's name.

Member Avatar for Teme64
0
80
Member Avatar for TwijoO

hi, due to my FTP server not liking to upload .exe files in order to get my auto updater to work i have to rename the folder .file before i upload [I](example: C:/.../desktop/twijoo.exe.file)[/I] after this is downloaded i need it to check the application folder for any files ending with …

Member Avatar for TwijoO
0
173
Member Avatar for Darkicon

I had a few friends test an app for me the first thing they reported to me was an exception from JIT Debugging. IO.FileNotFound on one of my buttons. Specifically what that button does is it launches a previously created batch file in a new subfolder of "Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)", which is …

0
34
Member Avatar for Darkicon

I'm writing a program to automatically setup some long files for use with streamwriting for another app. Basically all it does is add "sw.WriteLine("" to the beginning of every line and "")" to the end of every line. You gather a list of files which is entered into a listbox, …

Member Avatar for kvprajapati
0
140
Member Avatar for Darkicon

I'm writing a program that gathers a list of files within a directory and optionally, every file within the subdirectories (10 levels deep) of the directory then exports it as a text file. I have no idea how to do this so I just attempted to code it myself. It …

Member Avatar for Darkicon
0
102
Member Avatar for Darkicon

I'm very new to PHP so I'm still learning how to do stuff. I cannot figure out what is wrong with this code: [CODE=PHP] if($row->played_time >= 60){ $time = round($row->played_time,2) / 60 " mins";} elseif($row->played_time >= 3600){ $time = round($row->played_time,2) / 60 / 60 " hours";} elseif($row->played_time >= 86400){ $time …

Member Avatar for rajarajan2017
0
143
Member Avatar for Darkicon

Using the following sub to download a file I receive an "Access to the path 'path' is denied" no matter where I try to download it to even if I run the program as an administrator. Why do I get an access denied error? [CODE=VBNet] Private Sub Button1_Click(ByVal sender As …

Member Avatar for Darkicon
0
1K
Member Avatar for Darkicon

I'm having a little trouble deleting multiple lines for a listbox. I know how to remove a single line, which is this: [CODE=vbnet] Try If listbox1.Items.Count <> 0 Then Dim linedel As Integer linedel = listbox1.Items.IndexOf(listbox1.SelectedItem) listbox1.Items.RemoveAt(linedel) Else End If Catch ex As Exception MsgBox(ex.Message) End Try[/CODE] If I change …

Member Avatar for Oxiegen
0
69
Member Avatar for Darkicon

My app uses a verification method for users of downloading a text file which contains game-ID's of the users and checking the file with their game-ID. The problem is, the code I'm using to download it is kinda messing the file up. [CODE=VBNet] Public Sub GetIDList() Dim wr As HttpWebRequest …

Member Avatar for kvprajapati
0
146
Member Avatar for Darkicon

Awhile ago I made an app that uses Performance Counters to display info pertaining to CPU, RAM, hard drives, etc. kind of like Window's program (Forgot the name), but only displaying info people would really need. I want to continue working on that app and adding new stuff to it. …

Member Avatar for kvprajapati
0
97
Member Avatar for Darkicon

Thanks to a friend I was able to code a sub that opens a StreamReader and Writer. The Reader reads a *.txt file and the Writer modifies it line by line as it's entered into the memory then writes it to a temporary file which is then copied over the …

Member Avatar for Darkicon
0
148
Member Avatar for Darkicon

I'm stumped right now, I cannot figure out how to code something to get information from another form. This is what I'm trying to do: [code=VB] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = "01" Then 'TextBox1 is in form 2. PictureBox1.Image = …

Member Avatar for winkler
0
136