Is this the best way to stop my app from being cracked/pirated?
Hi VBForums, I am working on a large project and am currently trying to ensure that all the work I put into it can be properly monetized, so I need to ensure that my program is pirate-proof. So...
View ArticleVS 2010 NetworkStream being read too early
Hello, I am trying to communicate with an email account via POP3. I am trying to utilize the NetworkStream class, and all seems to work well when i use F11 to step through the various lines of...
View ArticleVB 2010 Assignment
I've been told this type of post has been answered before but Ive searched and couldn't find anything. Can anyone help me out or point me in the direction of a post that could. Thanks Read a text file...
View Article[VB2010] - if Bitmap is NotInheritable, how can i use it in my class?
heres my class: Code: Public Class Bitmap2 Â Â Inherits Bitmap End Class but i get these error "'Bitmap2' cannot inherit from class 'Bitmap' because 'Bitmap' is declared 'NotInheritable'" so how can i...
View ArticleVS 2010 Populating a listview from a query of an Oracle database with sql
I am trying to create a listview that will hold three values per line for each line in the database that has a certain docket number. I am a newbie with VB.net and so far my tests on working with a...
View ArticleNobody Seems To Know How To Help
Ive gotten the file to come up in the list box but thats about it Task 1) A Comma Separated file contains an unknown number of entries. Each entry (record) contains a sales record. The sales record has...
View ArticleVS 2012 Drawing in GroupBox via Sub
This works when it's clicked: Private Sub GroupBox1_MouseDown(sender As Object, e As MouseEventArgs) Handles GroupBox1.MouseDown Dim gr As Graphics = GroupBox1.CreateGraphics...
View ArticleVS 2010 Shortest distance on a circle formula required
Hi I am trying to program a dome to sync to a telescope. I need a formula on vb2010 to tell me which is the shortest distance on a circle. What I Mean is : if point A is at 90 degrees on the circle and...
View ArticleVS 2010 Shockwaveflash object
Is it ok to allow other people to download my program if it includes the shockwaveplayer? I read somewhere that it might be illegal.
View ArticleVS 2008 files names in a folder off a server
I commonly use the following code to download a specific file off a server. My.Computer.Network.DownloadFile _ ("http://www.xxx.com/mlm_buyers/new_download_log.txt",...
View ArticleRedim Preserve using Strucutres runs VERY Slow
why does this run so slow? it takes over 10 seconds on my machine! for a= 1 to 10000 redim preserve TEST(ubound(TEST)+1) next Dim TEST() As TESTstr Public Structure TESTstr Dim X As String Dim X1 As...
View ArticleTree Structure problem
I'm trying to make a application where you start from one number say in my example 5 then another that number is a bunch of bits 1 and 0's that represent weather the next number is greater then or less...
View ArticleDictionary problems
What i am trying to do here is to replace words with others and add it to the listbox after all the strings have been replaced (if they are in the dictionary) The error i am getting is "Object...
View ArticleVB.NET - Listbox not adding items of select matchcollection of Regex. Please...
I'm trying to make a list of file extensions from a website, but my listbox wont populate with them from Regex matches. I know the httpRequest works, because the websites source code lists in a...
View ArticleVS 2012 Need a little help with an error message
Hello there, please don't kill me for asking, but I'm still very new to this. What I'm trying to do is making an AI for my pc. It has worked out surprisingly well until now. Suddenly this message came...
View Article[VB2010] Program already running
I want my program to be single-instance. So my goal is to detect if the program (installed in the x86 Program Files folder) is already running and inform of the fact with a message the PC user. The...
View ArticleVb net and excel dde
I need help figuring out a way to link a vbnet textbox or a label to a continuously changing value in an excel spreadsheet. The value in excel is continuously being updated through a DDE link from a...
View Article[RESOLVED] Simply set pixel at position 0,0 to red, what's going wrong?
I am simply trying to set the pixel at 0,0 to the color red. Code: Dim newPic As System.Drawing.Bitmap newPic.SetPixel(0, 0, Color.Red) Afterwards, I want this to display on a picturebox. Code:...
View Article[RESOLVED] How can I print a byte array to a textbox?
I have Dim b(10) as byte and I am having trouble using .ToString, to display it in a textbox. What can I do to print the byte array to a textbox?
View ArticleDataGridView Forecolor Changes when Row is Deleted
I've got a list in a datagridview with two columns. The first column has a list of items, and the second has red X's. When the user clicks the red x in the second column, it will remove that row. For...
View Article