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

Search:

Type: Posts; User: Maximus_X

Page 1 of 13 1 2 3 4

Search: Search took 0.15 seconds.

  1. Re: Issues of getting indexes information from SQL Server

    Not a problem! :) Nobody is perfect and I appreciate your dedication/time to focus on my issue.
  2. Re: Issues of getting indexes information from SQL Server

    Sorry, I am not sure what do you mean. :) I am looking for indexes information, no constraints.
  3. Re: Issues of getting indexes information from SQL Server

    I solved it with the workaround: using a query through sys.tables and sys.indexes tables. :)
  4. Issues of getting indexes information from SQL Server

    Trying to get table indexes information in SQL Server 2012 I identified a strange situation for one scenarion.
    I have a table that contains two indexes referenced to some fields: Field_1 and Field_3...
  5. Re: IE WebBrowser not sending some redrawing messages

    The issue was fixed with a workaround. The problem was that sometimes the view representation was not completely created or the expected messages came before my HtmlView’s data population...
  6. Re: IE WebBrowser not sending some redrawing messages

    I was thinking to this topic also because I make some intensive work in .html generation base on .xml and .xslt and I was thinking to an additional working thread but I reproduced the bug even with...
  7. [RESOLVED] IE WebBrowser not sending some redrawing messages

    I have a property sheet view with few property pages. One of this property page contains a HTML representation via a CHtmlView derived class.

    Initially, the .html file is correctly rendered. The...
  8. Re: Query issues - ODBC Microsoft Access Driver error

    Indeed, this could be an issue. Every time when I open my Access 2007 and I want to see my tables's relational view, I have to enable that option.
    I'll try to find a way to disable this "secure...
  9. Re: Query issues - ODBC Microsoft Access Driver error

    Please, don't take it like this. This code runs fine on MS SQL Server... So, I continue to believe that is MS Access driver issue.

    Trust me that I tried like this and I got same fail results, too.
  10. Re: Query issues - ODBC Microsoft Access Driver error

    Nothing special "SELECT * FROM CLINETS". :)
    As I said, I exported the Access data to MS SQL Sever, I changed the connection string and this query runs fine. So, I continue to conclude that is a MS...
  11. Re: Query issues - ODBC Microsoft Access Driver error

    Sorry, I don't understand what you mean.

    I tested on few tables where I have types like: long integer (auto-increment), long, integer, double or text. I got same fail results for all the tables.
  12. Re: Query issues - ODBC Microsoft Access Driver error

    Man, the error message is clear and this is not an issue.
    The issue is generated by SQLExecDirect() and I can see it in the returned value. (I mean nRetCode = -1 which is a fail value.)
  13. Re: Query issues - ODBC Microsoft Access Driver error

    I found a way to avoid this issue but I'm not satisfied as long as this one persists.
    I exported database to my MS SQL Server, I set the proper connection string and my query runs fine with this...
  14. Query issues - ODBC Microsoft Access Driver error

    I have some issues with the execution of an ordinary query over MS Access database table. On my machine I installed Access 2007 and my database Access format is 2002 to 2003 is compatible mode.

    My...
  15. Replies
    8
    Views
    1,702

    Re: [RESOLVED] JPEG's create time detection

    Sorry guys for this confusion. In the moment when I posted this attachment I didn't know about Exif.
    I was wrong because that date was the date and time of the event when the picture was created and...
  16. Replies
    8
    Views
    1,702

    Re: JPEG's create time detection

    I thought that it was clear from the beginning that I was taking about the data that a camera writes in a file not about normal files properties.
    The attachment was special introduced in order to...
  17. Replies
    8
    Views
    1,702

    Re: JPEG's create time detection

    Maybe I was not so clear. I am looking for the date when a picture was created in the camera, not as a any other file property on a disk.
    I need that internal metadata instead of WIN32_FIND_DATA...
  18. Replies
    8
    Views
    1,702

    Re: JPEG's create time detection

    My image is window Information screenshot from IrfanView application.
    I think that the information that I'm looking for is contained by Exchangeable image file format (Exif).
    Somebody recommended...
  19. Replies
    8
    Views
    1,702

    [RESOLVED] JPEG's create time detection

    I need to find the creation time of a JPEG file (additionally other image file formats, too).
    For instance, IrfanView application offers this information in Images -> Information menu.
    ...
  20. Replies
    3
    Views
    4,737

    Re: AppVerifier commands for leaks detection

    Yep. mean time if found the "miraculous" application. Thanks a lot! ;)
  21. Replies
    3
    Views
    4,737

    AppVerifier commands for leaks detection

    I'm usign AppVerifier in order to detect leks in my code and I got next info in my debug output.

    VERIFIER STOP 0000000000000900: pid 0x1350: A heap allocation was leaked.

    000000003D41FFC0 :...
  22. Re: Using getnameinfo() I got First-chance exception - kernel32.dll

    Alex, thanks for your reply. I'm using VC++ 2005 (VS Team Suite). Maybe, the implementation of this function includes SEH. All the best!
  23. Using getnameinfo() I got First-chance exception - kernel32.dll

    I just did a small tool that uses getnameinfo() function in order to get computers names using an IPs range.
    Everything it's fine but I don't like that I got an exception in my output window:

    ...
  24. Re: CRegKey::RecursiveDeleteKey() issue

    There was no issues in my last delete code...
    The problem was that after delete operation. That key was regenerated in other project part.

    Krishnaa , thanks a lot for your time and energy! ...
  25. Re: CRegKey::RecursiveDeleteKey() issue

    I pass KEY_ALL_ACCESS.
Results 1 to 25 of 325
Page 1 of 13 1 2 3 4





Click Here to Expand Forum to Full Width

Featured