Search results for query: *

  1. J

    Unable to download file from https server

    Hello Everyone, I download file from my website using url https://www.example.com/abc.txt and through my.computer.network.downloadfile command. However it is working fine in all version of Windows except XP. In Windows XP it gives error connection was closed by server. What can I do ? How to...
  2. J

    Question Running vb code on the fly

    Hello Guys, I wanted to provide programming support for an application I made. So I used System.CodeDom compiler and it allows me to execute vb.net code on the fly. The way it works is : - I call the engine and pass references and code that it needs to run - The code is able to access public...
  3. J

    Question Manually do Tile Horizontal/Vertical

    You are the best there is buddy. Not just because of the fact that your are an expert in this but also because you spend a good amount of time helping others. :)
  4. J

    Question Manually do Tile Horizontal/Vertical

    Thanks for the encouragement. It took me a day but I was able to code it and cascade,tile horizontal & vertical are working okay.
  5. J

    Question Manually do Tile Horizontal/Vertical

    Hello Guys, I have a program which contains a mdi form and child forms. Due to some reason the mdi form layout functionality does not work if a form is hidden and shown. This is a bug in the UI control suit which I am using. I would like to implement Cascade,Tile horizontal & vertical myself...
  6. J

    Question MDI Child & Tab Control

    Hi Guys, I have a program developed in VB.NET (2008) which consists of a MDI form and several child forms. It worked like a normal mdi application whereby mdi form acted like a container for child forms and things worked out okay. Code like Me.Mdichildren or Me.ActiveMdiChild etc could be used...
  7. J

    Question CheckedListBox in PropGrid

    Success Horray Task accomplished. I tried again today and was able to bind the code with propertybag. Thanks for help. :)
  8. J

    Question CheckedListBox in PropGrid

    Well I mentioned that I have already seen this article before. I was not able to merge it with my propertybag. Thats where I got stuck.
  9. J

    Instant Message

    Thanks guys for your help. What I have done is write an application that checks for a file every 2 min. If the file exists, get it and show its contents. This is fine for now and it will serve our purpose for a while. The instant messaging would be great but some users have firewalls and...
  10. J

    Question CheckedListBox in PropGrid

    Thanks for your reply john. The values which I stated were suggestions only. But what I want to indicate is that I will be adding around 10-12 values and some of them will be 2 words with a space between them. These values would not be added dynamically and they will be fixed. - Adding Domain...
  11. J

    Question CheckedListBox in PropGrid

    Dropdown List in PropertyGrid Hi Guys, I have used propertygrid before and I found a code in codeproject called PropertyBag which enables easy dynamic adding of properties to propertygrid. Here is the link: CodeProject: Bending the .NET PropertyGrid to Your Will. Free source code and...
  12. J

    Instant Message

    Hi Guys, I have a vb.net (VS 2005) application which downloads files from my webserver and shows its contents to user. And I make files at my end and upload files to webserver so that the application and download & process it. This happens at fixed intervals. Now I intent to send an instant...
  13. J

    Question CheckedListBox in PropGrid

    Thank You The code for changing text of customcollection worked. I guess all my questions have been answered. Thank you very much for answering all my queries. :) You have been very supportive and its your help only that has enabled me to do what I was intending to do. I am not good with...
  14. J

    Question CheckedListBox in PropGrid

    Thanks a ton Thanks a lot for your help John.:) The code worked, the propertybag code you fixed along with the editor code did the job. Thanks again for helping me out for last few days. I know just the words thanks is not enough to express my gratitude but I really appreciate what you have...
  15. J

    Question CheckedListBox in PropGrid

    I am aware of GetValue and SetValue property and have used it before. As I mentioned that before encountering the problem of checkedlistbox I was using propertygrid whereby i could save & load values like integer, colour, stirng. I forgot to write the handler in this post. I guess I wrote this...
  16. J

    Question CheckedListBox in PropGrid

    code Posting sample code. Code for PropertyBag class Imports System Imports System.Collections Imports System.ComponentModel Public Class PropertySpec Private m_attributes As Attribute() Private m_category As String Private m_defaultValue As Object Private m_description As...
  17. J

    Question CheckedListBox in PropGrid

    oh I think there is some problem with class propertybag. Inspite of writing the code as you showed and making sure everything is okay, the control never goes to the class optionseditor. And thus the checkedlistbox never gets displayed. Can you check propertybag class and make necessary...
  18. J

    Question CheckedListBox in PropGrid

    oops Thanks for your support John. I know you are pissed off because I did not mention that the items in the checkedlistbox would change dynamically. See when I started this, I primarily wanted to see a checkedlistbox and I thought since items in the propgrid are being added dynamically, I...
  19. J

    Question CheckedListBox in PropGrid

    going on... I tried working with the whole thing but there are two fundamental problems that I am facing. - The items in checkedlistbox will change dynamically. So even if the code works, I will need to use Enum and thus things will become kinda static (hardcoded). How do I tackle that? - I...
  20. J

    Question CheckedListBox in PropGrid

    I tried using the code - Dim spec As New PropertySpec("NameParts", GetType(NameParts), "Appearance", "Sets the name parts.", NameParts.First, GetType(FlagsEditor), GetType(EnumConverter)) - Cont.. Properly this time by declaring nameparts as enum and using Enum converted and enum editor . I...
Back
Top