CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: vin

Page 1 of 18 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    10
    Views
    1,716

    Re: string with new line inside resources

    Thanks mmetzger that works fine. :thumb:
  2. Replies
    10
    Views
    1,716

    Re: string with new line inside resources

    ok but I would like to reverse the string not to be verbatium ...

    The question is, how to put string with new line inside it in the resource file.
  3. Replies
    10
    Views
    1,716

    Re: string with new line inside resources

    I mean that the ResourceManager.GetString method returns the string like this:
    @"this is a test \r\n new line"

    so when I try to print I dont get a new line but the \r\n comes as literals.
  4. Replies
    10
    Views
    1,716

    string with new line inside resources

    Hello,

    I use ResourceManager.GetString Method to get a string from a resources file. The problem comes when I try to put new line inside the string. Get string returns the text like this
    ...
  5. Replies
    2
    Views
    3,596

    The approach I took is to create a merge modul...

    The approach I took is to create a merge modul for the NT service and then to add it to the setup project of the Web Service.
  6. Replies
    2
    Views
    3,596

    MSI installation how to combine 2 in 1

    Hi,


    I have two spearate solutions that needs to be deployed to one machine. One solution is WEB Service and the other is NT Service. It is required, that I create one installation package for...
  7. Replies
    2
    Views
    953

    Here is a tutorial that may help you....

    Here is a tutorial that may help you.
  8. Thread: serialization

    by vin
    Replies
    0
    Views
    426

    serialization

    Hello there,

    I have a class that has some properties.
    Behind thouse properies stand member variables of different types. Now I have the task to serialize them to a database.

    By serializing...
  9. Replies
    5
    Views
    5,437

    try this one: Private Sub Command1_Click() ...

    try this one:

    Private Sub Command1_Click()
    Shell "write.exe"
    End Sub
  10. Replies
    2
    Views
    865

    Combobox and bold text

    Hello,

    Can you offer a reasonable way to make the standard list or combobox have normal and bold text at one and the same line.
  11. Replies
    7
    Views
    685

    Not a chance, the text1 is not a memeber of...

    Not a chance,

    the text1 is not a memeber of the From but of the UserControl.
    That is why I wanted to pass a reference of the userControl to the form. But it seems that the 'Me' pointer is type...
  12. Replies
    7
    Views
    685

    Probably I cannot explain the situation right but...

    Probably I cannot explain the situation right but let me try once again.

    1. Create an ActiveX control Project. At this point I have the UserControl1 control.
    2. I drag a text box from the...
  13. Replies
    7
    Views
    685

    That is the problem, suppose that in the project...

    That is the problem, suppose that in the project I have the usercontrol and one form. On the usercontrol I have a textbox. When the form is displayed, is it possible that I manipulate the textbox on...
  14. Replies
    3
    Views
    812

    First of all, are you sure that this is a COM...

    First of all, are you sure that this is a COM dll.
    use the dependency walker to see if it really exports the DLLRegisterServer function.
  15. Replies
    7
    Views
    685

    What about the 'Me' in ActiveX

    Hello,

    I created an ActiveX control that has a user control and a form.
    the problem is that I cannot figure out how to pass a reference of the user control to the form so that when I have the...
  16. Replies
    4
    Views
    616

    realtime

    How about a winsock control and UDP protocol. Each time a seat state is changed the station that is affected broadcast message, all others are updated.
  17. Thread: ADO copy record

    by vin
    Replies
    14
    Views
    6,133

    Dear Thread1, I quite agree that SQL...

    Dear Thread1,

    I quite agree that SQL statements are efficient way to manipulate data when you have a powerfull SQL server at hand.
    However I do not refer to tables. I refer to disconnected...
  18. Thread: ADO copy record

    by vin
    Replies
    14
    Views
    6,133

    What I wanted was to copy fields from one...

    What I wanted was to copy fields from one recordset to another. The recordsets are identical and they are disconnected. I do not want to modify the tables in the database, but just the recordsets in...
  19. Thread: flexgrid icon size

    by vin
    Replies
    2
    Views
    1,645

    thanks

    Thanks for you reply
    it was really helpful.

    I have another question, interesting one, I think.

    Given the same MSHFlexGrid. When I initialize it to very large number of rows and cols, say...
  20. Thread: flexgrid icon size

    by vin
    Replies
    2
    Views
    1,645

    flexgrid icon size

    Hi,

    I have a MSHFlexGrid and I am loading icons using CellPicture property.

    Is it possible that I stretch (change the size) the icon inside the cell.

    Thanks in advance.
  21. Replies
    4
    Views
    950

    Thanks to both Chay Luna and Roger for their...

    Thanks to both Chay Luna and Roger for their ideas.

    I think that UDP protocol and the ip address logging into table will do the job.

    Regards
  22. Replies
    4
    Views
    950

    What I need to send is events. I.e when some...

    What I need to send is events. I.e when some action happens in one of comuter, all other must receive notification along with other infomration about the event. A table for messages may do the job...
  23. Replies
    4
    Views
    950

    Multiuser Network Enabled App

    Hello,

    I am trying to create a network enabled application. That would mean that it will have a database server and one or more instances of my app running on different machines. The problem is...
  24. Thread: scroll msflexgrid

    by vin
    Replies
    0
    Views
    776

    scroll msflexgrid

    Hello,

    I have the following issue with MSFlexGrid.

    I need to remove the ScrollBar so that I can put my own. Bigger, with animated buttons etc.

    However, when I set the gird ScrollBars...
  25. Thread: font size

    by vin
    Replies
    1
    Views
    725

    font size

    Hello,

    I have a control that has font property.

    I need to get the Font height in pixels. I remember that there were some way to do that but cannot remeber the function.

    Thanks in advance.
Results 1 to 25 of 440
Page 1 of 18 1 2 3 4





Click Here to Expand Forum to Full Width

Featured