Forum: VB.NET Jul 20th, 2008 |
| Replies: 9 Views: 490 Re: TreeViewCollection Help! Hi selvaganapathy, thanks for your response once again.
I need to add the child node (if it contains the search term), and not the parent node (if it does'nt contain the search term). However, if... |
Forum: VB.NET Jul 19th, 2008 |
| Replies: 2 Views: 354 Re: Write to a TextFile Hi ruchika beddy, I replied to your last post and noticed you abandoned it with no reply. I (like many others) DON'T get paid for helping people out, we do it because we enjoy our work, and want to... |
Forum: VB.NET Jul 19th, 2008 |
| Replies: 6 Views: 1,156 Re: Delete From String array Did you find the solution? If so can you please close this thread by marking it as Solved. And please leave a post with your fix as this will help other forum users. |
Forum: VB.NET Jul 19th, 2008 |
| Replies: 1 Views: 215 Re: BackUp And Restore It could well be that My.Application.Info.DirectoryPath is not returning what you'd like after the application has been compiled. I know, for instance that the My.User.Name did'nt work with Windows... |
Forum: VB.NET Jul 18th, 2008 |
| Replies: 1 Views: 236 Re: dll file When you load Visual Basic's IDE, select Create a new Class Library. Code your class with whatever it is you need. Click Build Solution, under the Build Menu. Now open the save directory in Windows... |
Forum: VB.NET Jul 17th, 2008 |
| Replies: 6 Views: 1,156 Re: Delete From String array If you only want to delete some records from the file, consider loading them into your ListView, removing the listview items you don't need, then write the listview data back to the file...
Hope... |
Forum: VB.NET Jul 16th, 2008 |
| Replies: 1 Views: 354 Re: Msgbox on ListView Row Click Hi, ruchika beddy.
According to your description of the problem, you simply want a MessageBox to show up, showing Yogesh and the selected ListView item's index... To achieve this, do the... |
Forum: VB.NET Jul 15th, 2008 |
| Replies: 9 Views: 490 Re: TreeViewCollection Help! Yeah, I did try that too... However that also removes the subnodes from within the node that does'nt contain the search term... Thanks for your efforts though, greatly apreciated! |
Forum: VB.NET Jul 15th, 2008 |
| Replies: 7 Views: 603 |
Forum: VB.NET Jul 15th, 2008 |
| Replies: 7 Views: 603 Re: Pass items from one listview to another No problem, glad to help! In your For Each loop try doing this:
Dim filePath As String = file.SubItems(1).Text & "\" & file.Text
You can use the SubItems Property along with a specified Column... |
Forum: VB.NET Jul 15th, 2008 |
| Replies: 9 Views: 490 Re: TreeViewCollection Help! The problem is, this code will only add the top level node to the search (the reason for using nodes in the first place). I need ALL the nodes that are inside the sub-nodes containing the search... |
Forum: VB.NET Jul 14th, 2008 |
| Replies: 7 Views: 603 Re: Pass items from one listview to another Here is the code you have (slightly amended), though you don't actualy need the second For Each statement in there! Just remember, in the MoveTxtBox, you must also supply the file name and extension.... |
Forum: VB.NET Jul 14th, 2008 |
| Replies: 7 Views: 603 |
Forum: VB.NET Jul 14th, 2008 |
| Replies: 0 Views: 411 FTP question Hi, I am stuck on some code I have to upload a file to my FTP server. I keep getting an error: The remote name could not be resolved: 'ftp.mywebsite.com'
' set up request...
Dim... |
Forum: VB.NET Jul 14th, 2008 |
| Replies: 9 Views: 490 Re: TreeViewCollection Help! Hi selvaganapathy,
The idea is, I search through every node (and sub nodes) in my TreeView and check if they match a search criteria, if the node matches the search, I need to add it to a... |
Forum: VB.NET Jul 13th, 2008 |
| Replies: 9 Views: 490 TreeViewCollection Help! Hey guys/girls
I am having trouble adding Nodes from a TreeView into a TreeViewCollection
My code below:
Dim treeNodes As TreeNodeCollection
For Each node As TreeNode In... |
Forum: VB.NET Jul 13th, 2008 |
| Replies: 5 Views: 320 |
Forum: VB.NET Jun 21st, 2008 |
| Replies: 0 Views: 189 .NET Programmers Hey guys/girls.
I am a a student (entering second year) and am looking to raise some cash to get through tough uni times :) .
I have just started up my own website on which I aim to help others... |
Forum: VB.NET Jun 14th, 2008 |
| Replies: 3 Views: 3,577 Re: Detecting any key being pressed. If your using .NET 3.5 you won't have to worry about the Caps lock being on as a warning is shown automatically for you! (I think this will only work if you have set the UseSystemPasswordChar... |
Forum: Software Developers' Lounge Jun 5th, 2008 |
| Replies: 5 Views: 542 Re: Hello new to all this I recommend you give Visual Basic.NET a try, its syntax is easy for the beginner and is very user-friendly. Using any .NET language you have access to predefined routines already written for you to... |
Forum: Software Developers' Lounge Jun 4th, 2008 |
| Replies: 5 Views: 542 Re: Hello new to all this Hi RiddlerLG , as niek_e said above you really need to decide what it is you want to create. Software, web pages, games programming. One you decide that you are then welcome to enter a world full of... |
Forum: VB.NET Jun 4th, 2008 |
| Replies: 3 Views: 220 Re: Newbie SQL question Cheers ericstenson that's defo something I will consider. But for now my client is adamant I use a secure SQL database connection, also for my benefit as I don't know much about SQL this could be a... |
Forum: VB.NET Jun 4th, 2008 |
| Replies: 3 Views: 220 Newbie SQL question Hey.
I would like to ask for help regarding SQL server. I have developed a client-side application to run on my clients' agents machines. They will use this software to add items to a cart and print... |
Forum: VB.NET May 20th, 2008 |
| Replies: 2 Views: 892 |
Forum: VB.NET May 18th, 2008 |
| Replies: 1 Views: 201 Re: Versioning Have you tried using a Select Case statement in the classes Constructor?
Perhaps you could then use
ModuleName.MethodName()
Hope this did'nt over simplify your problem!
Regards |
Forum: VB.NET May 18th, 2008 |
| Replies: 2 Views: 892 Detect variable change. Hey guys/girls...
I am looking to constantly check to see if a variables value has changed.
An example below might be simular
' If the value of this variable ever changes - perform some action
Dim... |
Forum: Web Developers' Lounge May 15th, 2008 |
| Replies: 10 Views: 1,661 |
Forum: Web Developers' Lounge May 9th, 2008 |
| Replies: 10 Views: 1,661 Re: Help starting up website... Thanks Peter you have been most helpful!
I have read through the documentation on the domain sellers site, as well as what you have helped me with should be enough to get me on my way for now!... |
Forum: Web Developers' Lounge May 9th, 2008 |
| Replies: 10 Views: 1,661 Re: Help starting up website... Hi again Peter,
I would like to use FTP, only I am not so sure how. I have already downloaded SmartFTP and am unsure what information it is asking me for and where I can obtain that info?
When I... |
Forum: Web Developers' Lounge May 9th, 2008 |
| Replies: 10 Views: 1,661 Re: Help starting up website... Thanks for your reply Peter.
I purchased just the domain + email. As for uploading files, I simply click an upload button on my http://www.4shared.com online drive space. From there the file is... |
Forum: Web Developers' Lounge May 8th, 2008 |
| Replies: 10 Views: 1,661 Help starting up website... Hey guys/girls.
I just bought a domain from https://www.123-reg.co.uk and assumed it was going to be easy to upload my own .html file and set this as the home page on my domain.
I have the option... |
Forum: VB.NET Apr 29th, 2008 |
| Replies: 1 Views: 1,831 |
Forum: VB.NET Apr 29th, 2008 |
| Replies: 1 Views: 1,344 Re: Display word doc in vb.net Hi PJA.
Bear with me as this is my first post on daniweb :)
Replace your code with the following and your problem should be solved.
[code]
Imports System.Runtime.InteropServices
Imports... |