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

Search:

Type: Posts; User: Mr. Tomaszek

Page 1 of 17 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    0
    Views
    1,455

    Multi-file Upload (.NET)

    Hi All,
    I'm looking for .NET component that will allow me to implement multi-file upload. Now I found many on the Internet but none of them is satisfying my requirements. And I have two requirements...
  2. Session state in load balanced environment

    Hi All,

    I'm running web application in load balanced environment. I'm storing session state in the database (ASP.NET 2.0 and SQL Server 2005).

    My question is how often database will be hit to...
  3. Re: SQL Server (2005) table width (best practices and recommendations)

    Thanks very much!
  4. Re: SQL Server (2005) table width (best practices and recommendations)

    Do you think it may be related to our DBA department dedication to keep db performance at a highest level?

    I can agree to the argument that too wide tables might contribute to poor optimization of...
  5. SQL Server (2005) table width (best practices and recommendations)

    Hi All,
    I'm just wondering about what would be recommended width of a sql table (schema wise). By that I mean width calculated as

    select sum(max_length) from sys.columns where...
  6. Replies
    5
    Views
    8,416

    Re: Dynamic enum

    Thanks guys :thumb:
  7. Replies
    5
    Views
    8,416

    Dynamic enum

    Hi guys,
    here is the idea. I'm writing a piece of code that performs different actions based on type parameter. The types are obviously encapsulated in enum in C# code. This is all OK except that...
  8. Replies
    2
    Views
    1,180

    Users of a role

    Hi All,

    I want to get list of all users in particular role. It can be done by executing


    exec sp_helprolemember 'myRole'


    Alas it works only when user that executes that is a member of...
  9. Replies
    5
    Views
    1,126

    Re: Indexing Service and regex

    Yes, but I want to use regular expressions. Alas I have found in documentation something that seems to close the case. Still can't understand why, but obviously what I want to achieve can not be done...
  10. Replies
    5
    Views
    1,126

    Re: Indexing Service and regex

    Alas. I've tried it (MS calls it Dialect 1 - my samples are in Dialect 2) and nothing has changed. Is it possible that regular expressions can't be used with Contents property?
  11. Replies
    5
    Views
    1,126

    Indexing Service and regex

    Hi All,
    I have problem while querying indexing service. I can run query using regular expression like this


    {prop name=filename}{regex}|[0-9].doc{/regex}

    But it looks like it doesn’t work...
  12. Replies
    2
    Views
    968

    Re: Indexing Service on remote machine

    Hi,
    this is good topic, so I decided to add my post here instead on creating new thread.

    I'm runing indexing service on one machine but I'm indexing huge folder on remote machine in my network....
  13. Replies
    4
    Views
    1,146

    Re: Business Intelligence: VS2003 & VS2005

    Thank you.

    As for now - as I posted this question in february - all reports had been done (SQL/VS 2005 only), are tested and going to live within couple of days. But thanks for your answers anyway...
  14. Replies
    0
    Views
    715

    Visual Studio Editor Colors

    Hi,
    I had customized text editor's colors syntax highlighting in Visual Studio 2005. It took me some time as there a lot of these options. Is there a possibility to save it somehow and quickly...
  15. Replies
    4
    Views
    1,146

    Business Intelligence: VS2003 & VS2005

    Hi All,
    just have quick question about business intelligence projects especially reporting services. I have installed on my computer SQL 2005 and VS 2005 and of course VS 2003. All business...
  16. Replies
    0
    Views
    1,838

    GridView vs XSLT transformation

    Hi,
    I just wandering - what are the guide lines or pro and con about using each of this techniques to dispaly data from database. Any suggesitons are welcome.
  17. Replies
    1
    Views
    658

    Maps services

    Hi,
    I want to put in my web app some links that will display map along with a dot or something on it that indicates given location (address or GPS coordinates - doesn't matter at this point). I know...
  18. Re: Does experts exchange bug you on Google Searches?

    Yes, I agree!!!
  19. Replies
    13
    Views
    2,183

    Re: Dynamic casting

    Thank you all.
  20. Replies
    13
    Views
    2,183

    Re: Dynamic casting

    In short, because we do not want to waste another hours to modify code that can be (hopefully) writen in the way that allow us to not modify it while on futre requirements change. It saves time, and...
  21. Replies
    13
    Views
    2,183

    Re: Dynamic casting

    Thanx, this is close, but unfortunately it is not good enough for me. As suggested in my sample, each property has corresponding column in database. The code that is responsible for setting...
  22. Replies
    13
    Views
    2,183

    Re: Dynamic casting

    Look at my code sample! table.Rows[0][column.ColumnName] returns type object. But based on ColumnName I know to what class property I shall asign its value. I can get the type of that property using...
  23. Replies
    13
    Views
    2,183

    Re: Dynamic casting

    May be that you do not understand my problem. I sure know how to cast. The problem is that when I get System.Object I wanna cast it to various types. So I want to be able to check what that type is...
  24. Replies
    13
    Views
    2,183

    Dynamic casting

    Hi,
    how can I dynamicly cast variables? Below is a sample that of course doesn't work but it gives you the picture what I'm trying to do.


    DataTable table;

    //....

    foreach (DataColumn...
  25. Replies
    0
    Views
    941

    XML file with different icon

    Hi,
    we know that XML files saved by MSOffice has different icons thanks to <?mso-application progid="Excel.Sheet"?> directive. I want to put such mechanism to XML files saved by my program....
Results 1 to 25 of 403
Page 1 of 17 1 2 3 4





Click Here to Expand Forum to Full Width

Featured