Jump to content
Xtreme .Net Talk

updown

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by updown

  1. How can I have my Tab control to look like in windows XP? The tabs look ok but the background is one color only (control). How can I have a faded background like Win XP (the background is from white on top and light gray on bottom)? I'm using VB.NET and the best I have done was to add a picturebox with a faded image that streches but labels and other controls are not transparent. Is it possible to create a visual effect like in windows XP? Thanks
  2. I forgot to tell... There is no space between pwd= and the password (or password=) There is only a space if the password contains one.
  3. I'm not sure but I'm using DAO 3.6 and instead of password I'm using pwd=" & User_Password and it works! Try our provider with that change.
  4. I'm creating an application that uses a treeview to organaze user data. The application allow the user to create folders, rename them or delete them. Now I would like to allow the user to move those folders (nodes) using drag&drop operations. Can anyone help me on this?? Thanks
  5. Yes, you should post your project here so I or other can take a look at it. One more thing... Sometimes it happens to me that I have to stop my project when I open it. Maybe this is happening to you. Open your project and find the stop button on the toolbar. If it is enabled click it and then try to view you form.
  6. Try this one... dim x as new form2 x.show me.visible=false This will show form2 and hide the form that contains you command button.
  7. Hi I'm working on a prog that uses many variables to store configuration data. These variables are mainly boolean and a few strings. I'am using a simple text file with the values stored in lines each line corresponds to a variable. However I would like to use XML file to store and read those variables. Can someone give me an hint?...:confused: Thanks
  8. The recursive function works great Ok I've finished the code and tried it for 20 sub levels and it worked with no problem. I don't have the code in this computer so in a day or two I'll put it here. It might help some other users. Thanks Thinker for your idea. "The fear of being free makes the pryde of being slave"
  9. Recursion I've finished the code but I haven't tried it with more than 4 levels. Tomorrow I will try with more levels and then I will say something.
  10. I did'n knew that a funcion could call itself. I'm coding it but do you think that it is possible to run out of memory with about nine or ten levels of childs??
  11. How can I have my Tab control to look like in windows XP? The tabs look ok but the background is one color only. How can I have a faded background like Win XP? I'm using VB.NET and the best I have done was to add a picturebox with a faded image that streches but labels and other controls are not transparent. Is it possible to create a visual effect like in windows XP? Thanks
  12. Hi! I'm creating an app witch has a TreeView control named TVC. At some point I will need to save my app data to a file. My problem is I can't go through all TVC nodes to store them in a file. I can only access the first set of childnodes in the control. To get over this I started to think of another way of doing this and I came up with this: Dim a, b For a = 1 To TVC.Nodes.Count MsgBox(TVC.Nodes.Item(a - 1).Text) If TVC.Nodes.Item(a - 1).Nodes.Count > 0 Then For b = 1 To TVC.Nodes.Item(a - 1).Nodes.Count MsgBox(TVC.Nodes.Item(a - 1).Nodes.Item(b - 1).Text) Next End If Next The code above allow me to store information from the first and second nodes but I will have to limit my controll to a number of sub child nodes. Can anyone give me a help on this... Thanks (I'm using VB.NET for a week. I was used to work with VB6)
×
×
  • Create New...