Go somewhere else with your stupid ads. :mad:
Name Removed
Posts
-
Second Hand Computer -
Terrorists win GOLD at the OlympicsPerhaps people aren't going to the Olympics because they don't want to deal with going through all the elaborate security measures. Kyle
-
parallel portThis article by Levent S. addresses controlling electronics with a parallel port. I/O Ports Uncensored - 1 - Controlling LEDs (Light Emiting Diodes) with Parallel Port Kyle
-
Creating the Spywaresoftp_vc wrote: please let me know about their functionalities. They annoy people to no end, and steal information. :mad:
-
gdi+ problemAre you using the OnPaint event, and drawing it every time the form repaints?
-
Main Menu ItemThe MenuItem Class does not automatically support icons :(. You have to set .OwnerDraw() property to true, and handle the MeasureItem (setting the size of the item) and DrawItem (drawing the item) events. Instead of doing that for every MenuItem on your form, you can make a class inheriting from MenuItem, that automatically sets OwnerDraw to true, and draws the item with it's icon. Here is an example someone has posted to this site. Working with OwnerDraw Menus in VB.NET
-
PictureBox PanIf you are meaning like scrolling around, try putting one in a panel and setting the panel's .AutoScroll() Property to true. Hope this helps
-
Get index of selected item in ListboxTry the .SelectedIndex() property of the listbox. Hope This Helps Kyle
-
List BoxesGlen Conaway wrote: Additional information: Public member 'Text' on type 'String' not found. The objects in ListBox.Items() are strings, so just try ListBox.Items(1), instead of ListBox.Items(1).Text. Hope This Helps
-
Read a stringThere is a function in Microsoft.VisualBasic called Instr that can, given two strings, give you the number of times that string2 occurs in string1. Try using this function
Function ContainsStr(Str1 As String, Str2 as String) As Boolean Return (Microsoft.VisualBasic.Instr(Str1, Str2) > 0) End Function
Hope This Helps -
MScomm32.ocxThanks. I don't like using other people's code, but I will write my own library using the methods discussed in the article. Kyle
-
MScomm32.ocxDave Kreskowiak wrote: I take it your using VB6? No, I am using VB .Net. Thanks for the link to the article, but it was for VB6. I am trying to use the version of the library under Windows\System32.
-
MScomm32.ocxI am trying to use the use Mscomm32.ocx, but it gives me an exception stating that I don't have the liscense to use it, even after I use regsvr32 to register it. :confused: any thoughts?
-
business proposalPJ Arends wrote: If you're trustworthy If the person is trustworthy, would they help him rob a bank :laugh:? Probably not. It would take a pretty dumb person to fall for this one. What are they trying to accomplish by sending you this?
-
Manually disposing objects with APIThanks. Dave Kreskowiak wrote: What's wrong with the .Dispose() method? I was using a System.Resources.ResourceSet object for a large resource file, and when I called it's .Dispose() or it's .Close() method, it wouldn't free the memory used by it, even after GC.Collect() on then next line. I finally figured out to assign the value Nothing to it, which freed the memory used by it. Kyle
-
Manually disposing objects with APIIs there any way to manually dispose of an object using Windows API?
-
Google Ads - let's clear the airI don't care about the adds, they don't bother me.