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

Search:

Type: Posts; User: Maurice Sanders

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Clickonce publish result in wanring Warning 1 Could not find resources for culture 'n

    I upgraded the project from VS2008 to VS2010 with no problems, but when publishing the application I get teh warning: Warning 1 Could not find resources for culture 'nl'. Using culture 'en' instead....
  2. Support for printing images in tif/jpeg format

    Hi,

    Is there a component in ASP.NET 4.0 which can print images that are located on the Web server? The user must be able to print these images from the aspx page.
  3. Re: HowTo: Pass a columnname as parametername in stored procedure

    How can the parameter @columnname be descibed in the stored procedure?
    Maybe a small example would help.

    Is it like??
    CREATE PROCEDURE Test
    (
    DECLARE @sqlString VARCHAR(8000)
    @COLUMNNAME...
  4. HowTo: Pass a columnname as parametername in stored procedure

    Normally you pass values as parameters.
    But how can I pass a columnname as parameter in a stored procedure.

    The procedure should look like somehow.
    select * from A where @columname = 'Test'
    ...
  5. Using the Cryptoapi failes when decrypting

    Hi,

    I use the encryption and decryption of the cryptkci.dll.
    When using MD5 and RC4 as parameters for the method Encrypt, decrypting gives sometimes another results.
    The property...
  6. How to lookup a date value in the recordset in another table.

    I want to lookup a date value in the recordset in another table.

    I have a report that is showing the result of a query. One field in this query is a datetime field. Now I want to check whether the...
  7. Replies
    0
    Views
    548

    License ocx problem

    We made an ocx that also embed ocx controls. Those embedded controls are licensed. For that we set the property "Require license key' of our ocx control.
    Another supplier wants to use our control,...
  8. But a user is expecting something else. When a...

    But a user is expecting something else.
    When a user resizes a column, you can not expect him to click on the cell.

    I need this because I have a button places in a cell, and I want to relocate it...
  9. Width of cell not changed in mouseupevent of datagrid when resizing??

    Hi,

    When resizing a column in a datagrid, the expected value of the width of that column can not be retrieved in the mouseup event. It has the same value when the resizing started.

    The size is...
  10. Thanks again. That was just wat I needed.

    Thanks again.
    That was just wat I needed.
  11. Thanks again, but how can I figure out the...

    Thanks again, but how can I figure out the selected table in the dataset.
  12. Okay, thanks. But my dataset contains several...

    Okay, thanks.

    But my dataset contains several tables.
    How can I figure out which table the current cell is in?
  13. How to retrieve columnname in a datagrid?

    When the selection is in a specific cell in the datagrid, I want to retrieve the column name.
    I can not find the datagrid method to do this.

    Can anyone help me?
  14. Replies
    8
    Views
    1,709

    Hi Darell, You still got that * and =...

    Hi Darell,

    You still got that * and = character after the name in the select statement.
    Use a % character for the wildcard search.

    So the next line will work.
    'da.SelectCommand = New...
  15. Hi, Use a query like SELECT ...

    Hi,

    Use a query like
    SELECT
    table1.field1, table2.field2
    FROM
    table1 CROSS JOIN table2
    WHERE
    LEFT(field1, 3) = LEFT(field2, 3) and LEN(field1) > 0
  16. Replies
    8
    Views
    1,709

    Use it as follows: Instead of the * character...

    Use it as follows:
    Instead of the * character use % character and no = character in front of the like operator.

    da.SelectCommand = New OleDbCommand("Select * from Customers Where Name Like '" &...
  17. Hi Cakkie, The only API I need is SetParent or...

    Hi Cakkie,

    The only API I need is SetParent or do I need more API's to do what I want?
    Can you point me in the correct direction?

    Maurice
  18. This will not work since the help about the...

    This will not work since the help about the SetParent function says:
    The new parent window and the child window must belong to the same application.
  19. How to add a form of another application in your mdiform?

    Hi,

    How to add a form of another application in your mdiform?
    I want a form from an activex .exe application to act like an mdi child in my mdiform.


    Regards,

    Maurice
  20. Thanks, The only thing that needs te be done...

    Thanks,

    The only thing that needs te be done is ScreenToClient and to offset the listcontrol. This offset is needed because I am using a CFormView and the listcontrol is in the middle of that...
  21. Hi, The example is clear to me. I saw that...

    Hi,

    The example is clear to me. I saw that example already, but how do I get that point where the mouse is clicked in the CListCtrl?
    That is what I really want to know.
    How do I get that point...
  22. How to get point for SubItemHitTest in CListCtrl?

    Hi,

    When using SubItemHitTest I need to fill the structure LPLVHITTESTINFO item point with the point clicked in the CListCtrl.

    How do I get that point?
    When using the message NM_CLICK I only...
  23. How to avoid numbers like 1.0e+6 in MSChart control.

    Hi,

    How can I avoid numbers like 1.0e+6 in MSChart control.
    I want MSChart to display the numbers like 1000000.

    Regards,

    Maurice
  24. Import text in the resource editor, instead copy/paste.

    Hi,

    Is it possible to import text in the resource editor, instead of copy/paste the resource text.

    Regards,

    Maurice
  25. Without using ftp

    Thanks for your anwer.

    Do you also have an example without using ftp?


    Regards,

    Maurice
Results 1 to 25 of 91
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured