Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~8K People Reached
Favorite Tags

33 Posted Topics

Member Avatar for Trle94

Hello everyone. So I've been working on an small tool, that is using httpwebrequests, its not a bad so far I've got login function and list view loading data from site. But problem is now cookie container so i can do other things than just loading, like editing data. Uri …

Member Avatar for pritaeas
0
232
Member Avatar for Trle94

Hey everyone, im currently use this class for my small projects: https://www.daniweb.com/software-development/vbnet/threads/361868/disable-ctrl-alt-del Now i have problem, i want to hide my form and close jammer so i use something like this: Private Sub SystemTray() If NotifyIcon1.Visible = True Then KeyboardJammer.Jam() NotifyIcon1.Visible = False taskbar.HideStartButton() taskbar.HideTaskBar() Me.Show() ElseIf NotifyIcon1.Visible = False …

Member Avatar for Mr.M
0
332
Member Avatar for Trle94

Hey is there any way to write out example: a b c.. aa ab ac.. ba bb bc.. ca cb cc... and like that for every character from keyboard To .txt file?

Member Avatar for Reverend Jim
0
129
Member Avatar for Trle94

Okay hello everyone, so I'm using this class to protect app from user using hotkeys while form is running: Imports System.Runtime.InteropServices Imports System.Reflection Public Class KeyboardJammer Private Delegate Function HookCallback(ByVal nCode As Integer, ByVal wParam As Integer, ByVal lParam As IntPtr) As Integer Private Shared HookDelegate As HookCallback Private Shared …

Member Avatar for Trle94
0
201
Member Avatar for Trle94

Hey guys, I have one site with API but it doesnt have any application for using api just codes how to use it, so i wanted to ask you for help. Is it possible to somehow get response from web and list it in listview? Response is looking like this: …

0
103
Member Avatar for Saboor880

Yeah it is possible, just make sure you secure your application, since if you wish to connect to remote Database example Mysql, dont bother using mysql connector and storing database info in source since it can get easy decompiled and could anyone grab your Database. Better solution of it is …

Member Avatar for Saboor880
0
235
Member Avatar for Trle94

Hey guys, anyone know if it is somehow possible to grab in picturebox image from website by its id? Its simple captcha i want to show it in picturebox?

Member Avatar for Trle94
0
197
Member Avatar for Trle94

Hello everyone, is there anyway to I run my form user login/logoff on Windows or RDP ? I have registry for adding form to startup. But it doesnt work when i change user or log off and login, it works only when i restart or shutdown pc and turn on …

0
87
Member Avatar for Trle94

Hello there, I have this code: If listItem.SubItems.Item(0).Text = " " Or listItem.SubItems.Item(0).Text = "" Then ListView1.Items.Remove(listItem) End If Now is it possible to make somehow to it actually count how much items got removed ? Want to show it example as: 'Clearing completed. XX Lines were removed.'

Member Avatar for Begginnerdev
0
147
Member Avatar for Trle94

Hello everyone, I'm currently trying to make my application start automatically on pc restart. Now could you help me out with this error: http://screencast.com/t/hmwYmvqg9jK Here is snippet: Dim regKey As Microsoft.Win32.RegistryKey regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", True) regKey.SetValue(Application.ProductName, Application.ExecutablePath) regKey.Close()

Member Avatar for Trle94
0
358
Member Avatar for Trle94

Hello everyone, I need small help with arrays, been smashing head whole night getting it work, so if anyone know solution for this please let me know here or post example snippet. So i have example code: Dim housing() As String = {"House", "Flat"} Dim people() As String = {"01", …

Member Avatar for hericles
0
113
Member Avatar for Trle94

Hello everyone, I need small help.. So I got working text file loading to listview, but if file is to big it get whole app stuck untill it load it out... So my question is, is it possible loading with background worker and progress bar? Here is my current source: …

Member Avatar for Reverend Jim
0
163
Member Avatar for Trle94

Hello there, is anyone willing to help me converting some small php snippet to C# or vb.net please?

Member Avatar for Trle94
0
259
Member Avatar for Trle94

Can someone help me out writing hex string to file hex address from textbox? This is my current code: private void button1_Click(object sender, EventArgs e) { BinaryWriter wr = new BinaryWriter(File.OpenWrite(listBox1.SelectedItem.ToString())); for (int i = 0x83C410; i <= 0x83C417; i++) { wr.Write(textBox1.Text); } wr.Close(); } But it doesn't work after …

Member Avatar for JOSheaIV
0
195
Member Avatar for Trle94

Hello, does anyone know how to read .exe file and put into textbox info from adress 0x61AA04 example? and to allow me to edit in textbox and save?

Member Avatar for Trle94
0
233
Member Avatar for Trle94

So example i have Box1, Box2, ..., Box5. All are Textboxes Its in row for serial key, if you dont understand i can make screen. Is there anyway i could Copy/Paste all data from all boxes in format like Box1 - Box2 - Box3 etc? and in same way paste …

Member Avatar for Deep Modi
0
286
Member Avatar for Trle94

Hey there, so i have small problem, my application has mainForm and settingsForm, so is there only possible way to get settingsForm to be started only on first time user starts application so he can configure correct configs and then after it any other starting of application user gets mainForm …

Member Avatar for Deep Modi
0
578
Member Avatar for Trle94

Hello there, does anyone have some news system to share with me? Like reading news from xml but to show also links or something?

Member Avatar for KushMishra
0
99
Member Avatar for Trle94

Hello, is there anyone who could help me to get all databases and their tables in treeview? Please? All i could find is how to get tables only but not all databases from mysql server. Here is some screen that could maybe help out: http://screencast.com/t/6ysNFSlz7 If anyone could help me …

Member Avatar for G_Waddell
0
86
Member Avatar for Trle94

Hey all, I'm trying to do something and read text from page to listview in columns, problem is i get first row, but second third etc it dont insert idk why, im talking about ROWs here is my code check it out and let me know what is wrong? Try …

Member Avatar for Reverend Jim
0
133
Member Avatar for Trle94

'm having some problems, can't findout what is problem with my Update system. I'm using XML file for it. What I'm trying is to get application to read xml file for updates(like some news system) and to get updating application if there is new version. I added already on top …

Member Avatar for Trle94
0
158
Member Avatar for Trle94

Hey guys what I'm really trying to do is that i use same button to open image, convert it and save. Example on first click our button name is "select.." you click it and filedialog opens and you choose image, when you hit okay it changes name to convert, then …

Member Avatar for ddanbe
0
203
Member Avatar for Trle94

Hello there, i know there is alot questions about this and source but i could not manage to get it working since im trying to make it using only one letter example F1 or F5 as hotkey to work on non focused form, but im also in need to get …

Member Avatar for Trle94
0
118
Member Avatar for Trle94

Hello everyone, i need small help since im stuck, and im not that good with php and vB.net connections... So here is the problem, i manage to get connected to db and php script shows me if im connected or not, grab if user/pw is correct everything works fine, but …

Member Avatar for Trle94
0
2K
Member Avatar for Trle94

Hello everyone, I need little help with TCP connection for one gaming server, so basically gaming server is shell and has configs to make it using remote by connecting on 3443 port but with USERNAME and PASSWORD. Is there any possible way to do it? And if it is would …

Member Avatar for JorgeM
0
199
Member Avatar for Trle94

Hey guys I'm working on some app for school that will be easier for my class to do homework and so on... Well first of all i got app to convert Degrees, Minutes and Seconds to DECIMAL. But now i need to get DECIMAL back to Degress, Minutes and Seconds, …

Member Avatar for adam_k
0
162
Member Avatar for Trle94

Hey guys i tried getting CodeOrder snippet working but it really messup all my tables and such when i try to add for other groups sorting first 3 works fine but when i try to add more everything gets strange :S so if you can fix it ?? Here are …

Member Avatar for Trle94
0
263
Member Avatar for Trle94

Hey guys i need to make app that sends mail... so i want in subject to make text like "Report - dd/mm/yyyy - hour:minutes" do you have any idea how should i make that? :/

Member Avatar for NetJunkie
0
112
Member Avatar for Trle94

Hey guys well im making premium link generator for some webhosting service... So i want to use more than 1 account because if 2 or more users start app they can download because already some one is downloading w/e i want to make to app alone choose with which one …

Member Avatar for Huntondoom
0
86
Member Avatar for Trle94

Hey guys i need help with this error: Error 1 'All' is a 'variable' but is used like a 'method' 60 [CODE] int Plength = 0; Random Generate = new Random(); int rdmNumber = 0; string Password = ""; string All = ("aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789`~!@#$%^&*()_-=+[]{};:'|/?.>,<"); if (RB_All.Checked) { if (rbttn_eg.Checked | rbttn_tn.Checked …

Member Avatar for Mitja Bonca
0
170
Member Avatar for Trle94

As Title say i need help to make code to i get in application listview if Recyclebin has some files in it their name if not then there is no listview... Do you have any idea guys? Tnx

0
65
Member Avatar for Trle94
Member Avatar for Trle94
0
335
Member Avatar for Trle94

Hey every one... im trying to read file path from .txt I can read it but there is one big hole in which i stepped.. So if you could help me out?? lets see the code looks like this: [CODE]Imports System.IO Public Class Form1 Function INIparse(ByVal TextStringToProcess As String, Optional …

Member Avatar for Trle94
0
154

The End.