Topics
-
-
- Leaders
- 1 reply
- 2.1k views
How to sort List of Buttons Hey beautiful people! I'm working on a User Control, and I've created a List variable like this: Private vKey As New List(Of Button) Then I search for all the buttons in the user control and add them: Private Sub AddToList() For Each Key As Control In Me.Controls If TypeOf (Key) Is Button Then vKey.Add(Key) End If Next End Sub I'd want to sort the list by the button names ('cause they're added in some unknown order) Thanks!
Last reply by snarfblam, -
-
- 1 reply
- 22.9k views
I have four executables in my "suite" of software. I'd like to have the installer allow users to select which programs they would like to install similiar to a custom install of Microsoft Office. In order to do this, would I need to create a .msi for each executable and then create an executable that calls any or all of the .msi files at the users request? Thanks.
Last reply by TexasAggie, -
-
- Moderators
- *Experts*
- 4 replies
- 9.6k views
Is there a way to exit and if statement for example Do while <variable> <> <criteria> If <variable> = true then <problem here> Else Perform program operations here! End if Loop I want to exit the if statement without exiting the Do While Loop. Is there a way I can do this? Any help with this is greatly apprieciated.
Last reply by Alex29, -
-
-
- Leaders
- 3 replies
- 3.2k views
So, I'm having a very difficult task here. I need to analyze a certain text and find the minimum number of characters it needs to become a palindrome. The text will not have any special characters or numbers, just alphabet letters. Now, I've made some progression and have tried a lot of situations correctly, but in some situations I've gotten wrong outputs on the MINIMUM number of characters needed. I've tested the below texts: AAABBBBCCCCC - AAABBBBCCCCCBBBBAAA ✓ 7 CCCCCBBBBAAA - AAABBBBCCCCCBBBBAAA ✓ 7 BBBBCCCCCAAA - AAABBBBCCCCCBBBBAAA ✓ 7 FASLLI - FAS-I-LLI-SAF ✓ 4 ARBEN - ARBEN-EBRA ✓ 4 ARBENA - ARBEN-EBR-A ✓ 3 ARBANA - ARBAN-ABR-A ✓ 3 ALL - A…
Last reply by snarfblam, -
-
- 1 reply
- 5.1k views
Greetings, Brand New Member here. btw really love http://www.xtremedotnettalk.com
-
-
- Administrators
- 3 replies
- 4.7k views
ok so i am really sorry if this has been answered before i am not the best at at VB.net by far anyways i have a problem, i have written some code in a VB i have made that pings a server and give me and MS and writes it on the app, now what i need is it to be able to ping the port in the same equation but i am not sure how and if i can even implement it into my code, the reason behind this is that it pings a game server, so when the servers are not up they close a port, anyways i will put some code here and see if you guys think i can implement it if not any pointers will be greatly appreciated If InternetConnection() = True Then Dim p As System.…
Last reply by PlausiblyDamp, -
-
- 1 reply
- 3.9k views
hi.. in iframe the url not loading in chrome and safari browsers. how to handle this.. is it any other alternate for iframe in order to load URL tat should support all browsers. it is working only in IE. need ur suggetsions.. my page is like below: <html> <head runat="server"> <meta http-equiv="X-UA-Compatible" content="IE=8" /> <body> <form id="form1" runat="server"> <iframe id="ifrmEBOOK" runat="server" width="100%" height="700px"></iframe> </form> </body> </html> regards gopal.s
Last reply by dotnetguy37, -
- 1 reply
- 3.1k views
hi.. give some examples fro Prism Framework CRUD Examples need ur suggetsions.. regards gopal.s
Last reply by dotnetguy37, -
- 0 replies
- 1.2k views
hi,.. i am converting pdf file to image file(each file). now in my image file the link option was not able to use. now i want to Getting Anchor Tag link and Anchor Text from pdf file in c# and assign those links to my image file. how to do this.. need ur suggetsions.. regards gopal.s
Last reply by gopal_nivas, -
-
- Leaders
- 1 reply
- 1.8k views
hi.. how to use AES Encryption in C#? what is the benifit of using AES 256 bit standard for encryption? give me the details with examples.. need ur suggetsions.. regards gopal.s
Last reply by snarfblam, -
-
-
- Leaders
- 2 replies
- 2.8k views
Velocity[a] is a Vector3 type (all doubles), Proximity is a double as is Influence. The highlighted code produces a cannot convert double to float error... I have tried (double)0 and that did not solve the problem. Any ideas? Velocity[a] = (new Vector3( [color="Red"]Proximity.X != 0[/color] ? Velocity[a].X + (1/(Influence * Proximity.X)) : Velocity[a].X, [color="Red"]Proximity.Y != 0[/color] ? Velocity[a].Y + (1/(Influence * Proximity.Y)) : Velocity[a].Y, [color="Red"]Proximity.Z != 0[/color] ? Velocity[a].Z + (1/(Influence * Proximity.Z)) : Velocity[a].Z ));
Last reply by SleepingTroll, -
-
-
- Leaders
- 1 reply
- 1.4k views
Hi, I have a text file on a remote server with this content: - Line1 Line2 Line3 ... - I use this code to download it and put each line in a string (array) Dim WebClient As New System.Net.WebClient WebClient.Encoding = System.Text.Encoding.ASCII WebClient.CachePolicy = New System.Net.Cache.RequestCachePolicy(System.Net.Cache.RequestCacheLevel.NoCacheNoStore) Dim NewString As String = WebClient.DownloadString("http://www.domain.com/file.txt") WebClient.Dispose() Dim MyArray() As String = NewString.Split(vbNewLine) For MyLoop As Integer = 0 To MyArray.Length - 1 MsgBox(MyArray(MyLoop).ToString.Replace(vbNewLine, "")) Next It's OK, but when showing each line,…
Last reply by snarfblam, -
-
-
- Leaders
- 2 replies
- 2.1k views
Does DX not have the intelligence to render an object while masking by proximity to the camera?
Last reply by SleepingTroll, -
-
-
- Leaders
- 1 reply
- 1.6k views
Hi Everyone, Basically I want to call methods of my C++ dll from VBscript. I searched for it in google, but everywhere I got solutions regarding .net dll rather than c++ dlls. An example of one of my C++ methods is: extern "C" __declspec(dllexport) int __cdecl test() { return 20; } Now, i want to call this method 'test' from a VBscript. I would really be grateful if I would get some help regarding this. Thanks in advance, sattu
Last reply by snarfblam, -
-
-
- Leaders
- 2 replies
- 25.1k views
Hi. I'm trying to scrape usernames from http://www.planetminecraft.com/members/any-subject/?mmorder=order_latest I set it to show the number of users that it scraped, which it shows the correct number, but instead of printing the usernames to the ListBox, it simply makes a whole bunch of blank lines. What could be the problem?
Last reply by pry, -
-
- 2 replies
- 2.5k views
Re: Remove Duplicate items from a ComboBox How? hi, am using .net framework 3.5. in load,am taking values from 2 tables to one combobox. and i call values from combobox same values are repeated i think its bcz of calling from 2 tables. plz tell how to remove duplicate values in it.. Thank u Note from moderator: Please place new questions in their own topics. If there is another relevant topic you would like to reference, include a link to it. Thanks!
Last reply by korachetan, -
-
- Leaders
- 2 replies
- 3k views
firestarts post today to a thread whose last previous last post by EFileTahi-A was on 11-19-2011, 10:53 AM. Please feel free to delete this thread if it is not applicable or already being taken care of..
Last reply by dotnetguy37, -
-
-
- Leaders
- 1 reply
- 2.4k views
HOW to parse a doc resume using c#... I want to fetch records like name,address,skills,mobile no from a resume into a textbox.... Plz help me...:confused:
Last reply by snarfblam, -
-
- 0 replies
- 2.1k views
I was wondering if there is a way to redirect a url other then the old traditional way of creating a sub folder and an index page with a redirect. Basically I want to do something like this: http://www.mysite.com/123 and have it redirect to something else like http://www.mysite.com/987349872345324 but I do not want to have to create a sub folder with an index page that handles the redirect. Any help would be great. P.S. I would love to do it without using variables like http://www.mysite.com/?var=123 Thanks in advance.
Last reply by nate, -
- 1 reply
- 2.2k views
Maybe it is just a brain fart, however the highlighted line of my code produces and index out of range error... can anyone spot the problem? public void AddParticle() { Array.Resize(ref Particlestemp, Particlestemp.Length); Array.Copy(Particles, Particlestemp, Particles.Length); Array.Resize(ref Particles, Particles.Length); Array.Copy(Particlestemp, Particles, Particles.Length); Array.Resize(ref ParticleMeshtemp, ParticleMesh.Length); Array.Copy(ParticleMesh, ParticleMeshtemp,ParticleMesh.Length); Array.Resize(ref ParticleMesh, ParticleMesh.Length); [color="Red"]ParticleMesh[ParticleMesh.Length-1] = Mesh.Sphere(device, 4, 64, 64 );[/color] Part…
Last reply by SleepingTroll,
-
Who's Online 0 Members, 0 Anonymous, 68 Guests (See full list)
- There are no registered users currently online