Posts
 
Reputation
Joined
Last Seen
Ranked #216
Strength to Increase Rep
+10
Strength to Decrease Rep
-2
92% Quality Score
Upvotes Received
78
Posts with Upvotes
72
Upvoting Members
47
Downvotes Received
5
Posts with Downvotes
5
Downvoting Members
5
26 Commented Posts
4 Endorsements
Ranked #402
Ranked #123
~177.88K People Reached
About Me

I don't fit in just a nutshell ;)

Interests
coding and gaming
Favorite Tags
Member Avatar for GeekByChoiCe

Thread title sounds weird, but what i meant is following thing: For the sake of Karma i am not willing to help users, who need help with coding trojans, viruses, worms and other harmful things, and also users who are not willing to mark their threads as solved (not talking …

Member Avatar for Dani
0
502
Member Avatar for BleepyE

Hi, im wondering how I could contact my Call of Duty: Black Ops game server's console, through RCon, through an application I have created in VB.net All I want to beable to do is have the ingame console in a textbox or something, it doesnt even have to be live, …

Member Avatar for chris.weisskeiner
0
1K
Member Avatar for Mike Bishop

Morning all, I have some code which says if a text box is empty show a msgbox asking user to input data into this textfield. i then want only an O.K button to show on the msgbox but then no to continue with the sub. [CODE] If Me.txtLine2Rcon.Text = "" …

Member Avatar for Deep Modi
0
253
Member Avatar for xfrolox

Well I'm trying to make a program that have ListBox1 which when the button1 is pressed the Listbox1 will show all the open windows of notepad, like get notepad.exe and it will show Example the name: Untitled - Notepad nothing else, i have a code right now that i found …

Member Avatar for olegb
0
2K
Member Avatar for scothy

Hi, I am newbie to vb.net and am developing a windows application for a client. In that index page, when a first textbox text changed, it should automatically add a new field below the first textbox. And if the second textbox ( child control)text changed, it should automatically add a …

Member Avatar for parunyu.suttibut
0
772
Member Avatar for aabbccbryanmark_1

Public Function analyzeTotalFilesSize(Path) As Integer Dim lookInDirectory As New DirectoryInfo(Path) For Each Directory As DirectoryInfo In lookInDirectory.GetDirectories analyzeTotalFilesSize(Directory.FullName) Next For Each File As FileInfo In lookInDirectory.GetFiles If _ListOfFiles.Exists(Function(x) x.ToString = File.Extension.ToLower) Then _SizeOfFilesToCopy += File.Length / 1024 End If Next If _SizeOfFilesToCopy < 1024 Then errorhere -------->> Return _SizeOfFilesToCopy.ToString("#,##0.00") & …

Member Avatar for GeekByChoiCe
0
178
Member Avatar for tirso

Hi to all I have two forms, one is form1 for registration and the other one is form2 for my main menu. How to call the form2 if the user successfully register with the form1. The code in form 1 is me.close (to close the form1) then form2.show but it …

Member Avatar for luck_1
-1
6K
Member Avatar for mavtcr
Member Avatar for G_Waddell
0
957
Member Avatar for boher

In my project, at some point I tend to load all rows in my DataSet and add them to my FlowLayoutPanel in order of their "Time" Item. This is what I'm trying to do but I need the controls to be added first if their "Time" value are the oldest …

Member Avatar for chuchaykaw18
0
252
Member Avatar for pdmaduranga
Member Avatar for Jamblaster

I am having a problem getting this code to work in deleting records from a database. The path to the database is correct and I have another couple of event handlers that work fine using this same datbase so I know that the path to the Db is good. Any …

Member Avatar for Jamblaster
0
176
Member Avatar for xxn5
Member Avatar for Mr.M
-2
280
Member Avatar for GeekByChoiCe

Hey guys, I am desperated right now. Im my application i want to export some data from an entityset to excel. So far so good. But i want to exclude some properties. So i thought creating a custom attribute for those properties is might a good idea to make things …

0
113
Member Avatar for yorro

I have connected VB.net and mySQL on a the same PC before, but I have no Idea how to connect VB.net to a remote PC(LAN) I've only changed the server This is my code. I removed some of the details, but it works on server=localhost [CODE] conn = New MySqlConnection() …

Member Avatar for nathanl.dulguime
0
3K
Member Avatar for raaif

Hi again, I am trying to read an XML file in this format; [ICODE] <?xml version="1.0" encoding="utf-8"?> <words> <word id="Apple" def="A fruit" /> <word id="Dinosaurs" def="Now Extinct Animal" /> <word id="Giant Panda" def="An Endangered Animal" /> <word id="Asia" def="The Largest Continent" /> ..... </words> [/ICODE] I have more than 3000 …

Member Avatar for softwareskill
0
221
Member Avatar for Netcode

hi everybody! i want to get all drives and their directories and sub-directories displayed on a tree view just as windows explorer. pls i need very comprehensive codes to do that...thanks

Member Avatar for laurencenico.sembrano
-1
91
Member Avatar for Kamlesh_sj08

Hye friends. I am facing one issue related to socket program written in VB.NET (2008 + 3.5 framework) since long time....I am having a socket server application which accepts the connection...It accepts 800 connection without any problem but after that it throws exception saying...."Exception of type 'System.OutOfMemoryException' was thrown. : …

Member Avatar for gerdal
0
609
Member Avatar for bluehangook629

Hello again my friends, I am trying to figure out how to code a function which will pause the system until the user presses the key. I did some googling and I was able to find this function called getch() for c++ but no luck for vb.net. Is there a …

Member Avatar for Rango1239_2
0
1K
Member Avatar for Oneryavuz

i did a program in xp and when i m trying to open this program in win7 it gives an error i think i should convert this program to win7 but i dont know how to do is there any way to do it? thx for answers

Member Avatar for Oneryavuz
0
117
Member Avatar for tashee2007

[code] Private Sub DataBinding() Try Dim bsTableName2 As String bsTableName2 = "dbo.hrBranchSetup" 'cboOrganization.DataBindings.Clear() 'cboOrganization.DataBindings.Add(New Binding("Text", ds.Tables(bsTableName2), "OsID")) brCode.DataBindings.Clear() brCode.DataBindings.Add(New Binding("Text", ds.Tables(bsTableName2), "BranchCode")) brName.DataBindings.Clear() cboOrganization.DataBindings.Add(New Binding("SelectedValue", ds.Tables(bsTableName2), "OsID")) cboOrganization.DataBindings.Clear() brName.DataBindings.Add(New Binding("Text", ds.Tables(bsTableName2), "BranchName")) bsOnlineYNCheckBox.DataBindings.Clear() bsOnlineYNCheckBox.DataBindings.Add(New Binding("Checked", ds.Tables(bsTableName2), "OnLineBrYN")) Catch ex As Exception MessageBox.Show("Error No : " & Err.Number & vbCrLf _ …

Member Avatar for robea
0
284
Member Avatar for AndyPants

Ever scince I saved my project yesterday, when I try to debug my application I get this: > An error occurred creating the form. See Exception.InnerException for details. The error is: Value '0' is not a valid value for Interval. Interval must be greater than 0. > Parameter name: Interval …

Member Avatar for GeekByChoiCe
0
658
Member Avatar for mikeybware

I have the following code which creates a nice little instant messenger for my program. I am running into trouble when I try to send a message to a user that is not logged into their chat window. It waits about 20 seconds, then throws the error message. In the …

Member Avatar for mikeybware
0
344
Member Avatar for sspweb

I have read other posting about this and I can not figure it out. Application runs fine on the computer that I used to create it. The application has 3 functions: Button1...locate and preview an image file. Button2...creates an email with html link...creates an html page file...ftp's the image and …

Member Avatar for codeorder
0
211
Member Avatar for Alex_2011

Hi, I am totally lost and I went through a lot of sites about searching within an array, but I could not find any clues. I created the following array : Private LetterArray() As String = {"A", "B", "C"} and I don't know how to get the target letter from …

Member Avatar for Alex_2011
0
323
Member Avatar for khentz

Here's my scenario I do have many link labels in my form. What I want to happen is, when a user click on that link label, the name of that link label will be passed to a variable.

Member Avatar for Vichualito
0
154
Member Avatar for ng5

i am having trouble linking 2 listboxes together... What i woud like to happen is a selecting from listbox1 to populate listbox2. Any ideas on what to do? thanks in advance

Member Avatar for codeorder
0
144
Member Avatar for gerchi152

in my combo box, I checked use data bound items and I think I properly set the necessary things... also I have retrieve button that has this statement [CODE]strsql = "select * from books where title='" & cmbTtle.SelectedValue & "'"[/CODE] and the error is type character '&' does not match …

Member Avatar for GeekByChoiCe
0
73
Member Avatar for TheQuestor

[CODE]<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <addon id="plugin.video.stagevu" name="StageVU" version="1.3.6" provider-name="AJ"> <requires> <import addon="xbmc.python" version="1.0"/> </requires> <extension point="xbmc.python.pluginsource" library="default.py"> <provides>video</provides> </extension> <extension point="xbmc.addon.metadata"> <summary>stagevu: Watch video</summary> <description>Watch what you have been searching on internet.</description> <disclaimer>The video add-ons hosted by my XBMC add-ons repository(aj add-ons) makes no warranties, expressed or implied, and hereby …

Member Avatar for GeekByChoiCe
0
286
Member Avatar for prathapsv3

Hi all, Check this code and please tell me a solution.I have 2 buttons (Pizza & pepsi),the price should display in textbox8 when i click on button, here the price had shown in Textbox8,but it is not getting added with next price when i click second button. [CODE] Private Sub …

Member Avatar for lolafuertes
0
177
Member Avatar for prathapsv3

Hi all, Check this code and please tell me a solution.I have 2 buttons (Pizza & pepsi),the price should display in textbox8 when i click on button, here the price had shown in Textbox8,but it is not getting added with next price when i click second button. [CODE] Private Sub …

Member Avatar for GeekByChoiCe
0
115