Search:

Type: Posts; User: aliefeozkan

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,043

    Borderless Form Problem

    Hello, although I have been googleing for hours I couldn’t find a solution to my problem. I am designing a custom form. I have created a custom menu bar, custom min, max, close buttons etc. As the...
  2. Problem with TabControl created by a usercontrol

    Hi all,
    I have been working on a ribbon user control. When added to a form, my user control creates a new tab control and couple of tab pages, and adds them to the form. However the tab control...
  3. Replies
    5
    Views
    1,472

    Re: Panel Scroll

    I really appreciate your help, that little detail saved my hours. Thank you!
  4. Replies
    5
    Views
    1,472

    Re: Panel Scroll

    Error I receive is: "Value of '102' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'. Parameter name: Value"
  5. Replies
    5
    Views
    1,472

    [RESOLVED] Panel Scroll

    Hi, I have two panels, panelA’s auto scroll properly is set to True. panelB’s auto scroll property is set to false. When user scrolls panelA, I want panelB to scroll to the same point. I tried to use...
  6. Replies
    0
    Views
    380

    Storing attachments in an xml file.

    Hi all, I need urgent help about an issue. I am working on an application which users can store information in rtf format. My application uses tree nodes to organize information. Application uses its...
  7. Replies
    2
    Views
    4,090

    Re: Adding attachment to an xml file

    Unfortunately I can’t consider that solution because I want my application’s file format to be transferrable. For example; when I attach couple of Word documents to an xml file, I must be able to...
  8. Replies
    2
    Views
    4,090

    Adding attachment to an xml file

    Hi,
    I am working on an outliner application. My application uses xml format to store data. I want to add fuctinonaly of attaching files to documents. To do this, I need to convert a file to string...
  9. Replies
    1
    Views
    559

    VS 2008 Image display problem

    Hi all, I have got a serious problem and I can’t solve it. Images on my form are not displayed during debugging. When I build the application, there is no problem. But in debug mode no images are...
  10. Re: Tab control on a custom control

    After all my tries, I could not manage to make it work. But after reading your post, I decided to use couple of panels instead of a tab control. And it worked! Thank you so much for your helpful...
  11. Re: Tab control on a custom control

    I am using VS.2008, and unfortunately I receive the error consistently. I attached project files in a zip file as you said. If you could check it I’ll be so glad. Thanks again for your help.
  12. Re: Tab control on a custom control

    NickThissen, thank you so much for replying my question. I really appreciate your answer. I did exactly what you said in your post and compiled the dll successfully. When I add the control to a...
  13. [RESOLVED] Tab control on a custom control

    Hi, I am working on a user control. In my control, there is a tab control with three tab pages. When the user control is compiled and placed in a windows forms project, tab control does not function...
  14. Re: Relations between listbox items

    .paul. thank you so much. You perfectly solved my problem. This is the second time you helped me in vbforums. I really appreciate your help.
  15. [RESOLVED] Relations between listbox items

    Hello, I have two list boxes named lb1 and lb2. Those list boxes have following items.
    Lb1 Lb2
    ---- ----
    2 4
    3 5
    4 6
    7 8
    6 10

    I want to...
  16. Re: Populating datagridview from a .txt file

    .paul. thank you so much. that was what I was looking for. Thanks.
    JuggaloBrotha thanks for reply as well, I will consider your suggestion.
  17. [RESOLVED] Populating datagridview from a .txt file

    Hello,
    I am trying to populate a datagridview from a .txt file but I don’t know how I can do this. Text file will include data copied and pasted from excel. So the text separator will be tab. If you...
  18. Replies
    1
    Views
    575

    Richtextbox with table support

    Hi all, I’m working on an outliner application and I have almost finished it. As the richtextbox control shipped with .net does not have table support my program does not handle tables. I guess best...
  19. Inserting a table rtf code into a richtexbox

    Hello,
    I am working on a rich text editor. I want to add a table to document. My table has 2 columns and 3 rows. Rtf code of my table is as follows:...
  20. Richtextbox Inserting Table From Another Richtextbox

    Hello,
    I have two richtextboxes, the first one is the main document and second one has a table on it. I want to copy the contents of second richtexbox to first one. I can do this by using rtf...
  21. Re: Copying a treeview from one form to another

    In my application all the nodes have to be children of a single root node. Creating a new treeview and copying that node by using clone method solved my problem. Thank you.
  22. [RESOLVED] Copying a treeview from one form to another

    Hello,
    I am trying to copy a treeview control from one form to another. To do this I wrote the following code:
    Dim tempForm As frmDoc
    Dim tempTreeview As TreeView
    ...
  23. Replies
    4
    Views
    6,834

    VS 2008 Re: Adding a button to menustrip

    I have solved the problem by adding a new stripmenuitem, setting its alignment property to right, setting its text to “” and setting its image to a proper X image (transparent png). Even if it is a...
  24. Replies
    4
    Views
    6,834

    VS 2008 Re: Adding a button to menustrip

    I have disabled child form's title bar and max, min, close buttons because when the child form is maximized an empty space is displayed at the top of the child form. So I am looking for a new way to...
  25. Replies
    4
    Views
    6,834

    VS 2008 [RESOLVED] Adding a button to menustrip

    Hello, I am working on a MDI form application. I have got a menustrip control and some toolstrips. I want to add a button to the menustrip, to close active document. In the Word 2003 or Excel 2003...
  26. Replies
    2
    Views
    1,721

    Re: Saving RTF in XML file

    Negative0, thank you very much for your reply. After your post, I realized that I can save richtext just like any other text. First, I use savefile method of richtextbox and I save a temporary file...
  27. Replies
    2
    Views
    1,721

    [RESOLVED] Saving RTF in XML file

    Hello,
    I am working on a note taking application. I have got a treeview and a richtextbox. On the treeview note captions are organized in a hierarchy. When a tree node is clicked related note...
  28. VS 2008 Re: Application startup problem: System.IO.FileNotFoundException

    I found a net framework 3.5 version which is about 230 mb. It is named Microsoft .NET Framework 3.5 Service pack 1 (Full Package). Installing it to target machines solved the problem. Cicatrix,...
  29. VS 2008 Re: Application startup problem: System.IO.FileNotFoundException

    Hello, these are the codes:

    Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    SetMdiClientBorder(False)
    ...
  30. VS 2008 [RESOLVED] Application startup problem: System.IO.FileNotFoundException

    Hello, I have finished coding an application which I designed for people working in my office. When I started to install the application to computers at the office, I realized that, in some machines,...
  31. Re: Detecting the key pressed, when working with Web Browser Control

    After couple of tries, I realized that menu shortcuts still work even if the menu is hidden. This solved my problem.
  32. [RESOLVED] Detecting the key pressed, when working with Web Browser Control

    Hi, I am working on an application and I need urgent help. One of my forms contains a web browser. I need to detect if F3 key is pressed while the web browser is active, so a dialog box will appear...
Results 1 to 32 of 32



Click Here to Expand Forum to Full Width