Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: mmaz
  • Order by date
  1. mmaz

    IIS or web.config - How to use virtual path based on port number?

    This article explains nicely how to achieve the desired functionality in IIS: http://weblogs.asp.net/pwilson/archive/2004/12/23/331455.aspx Hope it helps!
  2. mmaz

    Printing from a Windows Form

    I was just looking for something like this. Thanks, ZmrAbdulla! A star for you! :)
  3. mmaz

    Changing length of a grid column

    This post suggests using the header width: http://www.telerik.com/community/forums/thread/b311D-kdcck.aspx
  4. mmaz

    asp application pool

    An application pool permits you to separate the worker processes in which your web sites run. To view the application pool that your web site uses, open IIS, right-click your web site and select properties, then click the tab Home Directory. At the bottom, you will see a pick list Application...
  5. mmaz

    Trying for days to compare variable with MySql statement in ASP.NET

    I think you have to put your query in your code-behind because % is a special character...
  6. mmaz

    Creating a context menu for ListBox items in C#

    you can use the html tag DIV to achieve this. Check out this post: http://www.experts-exchange.com/Web_Development/Miscellaneous/Q_21790839.html
  7. mmaz

    Rotate Image

    I've never done it before. You might have to use a third-party component to do that. Or maybe Silverlight provides this functionality. Anybody has a better idea?
  8. mmaz

    Having trouble working with non-string values reading from dataset

    I agree with Sorwen. In my first post, I put in the line of code: RR.ID = DsSpatcher.Railroad.rows(0).ID this gets the first row in the table. You just need to get the appropriate row.
  9. mmaz

    Having trouble working with non-string values reading from dataset

    A typed dataset would be a physical file in your project. To replicate, add new item, and then select "Dataset". It will create a file. Then, if you have a connection to a database displayed in your Server Explorer, within Visual Studio, you can drag-drop tables directly in your dataset file...
  10. mmaz

    Login Pop Up Problem with integrated authentication

    We had this problem with Sharepoint, and it only occured for some users who had changed their network account password. Our fix was to ask the user to go to Control Panel - User Accounts - tab Advanced, click "Manage Passwords" and clear the saved passwords. Hope this helps!
  11. mmaz

    Having trouble working with non-string values reading from dataset

    Is this a typed dataset? If so, if your class members and your table columns have the same datatype, you should not have to convert or use .toString... RR.ID = DsSpatcher.Railroad.rows(0).ID mmaz
  12. mmaz

    Caching Problem in IE

    Somebody has a workaround for this known issue here: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2308754&SiteID=1 Hope this helps!
  13. mmaz

    Rotate Image

    You'll find some sample code here: http://www.vb-helper.com/howto_net_image_rotate.html Hope this helps!
  14. mmaz

    Creating a context menu for ListBox items in C#

    I did something similar to display a different context menu whenever the user clicked in a specific area of a pivot table. Here's the code as is. Good luck! <script language = "javascript" event = "BeforeContextmenu(x, y, Menu, Cancel)" for = "PivotTable1"> { /* This script captures and...
  15. mmaz

    Sporadic error message

    You might want to check out this post to see if it applies to you: http://forums.asp.net/t/675515.aspx
  16. mmaz

    Sporadic error message

    Not sure if this will help, but you could put your code in a try catch, and on finally, close your connection. Maybe an error is sometimes occuring and you have connections that are never closed.
  17. mmaz

    IE 7 losing session variables

    Do you have a response.redirect on that page? That could explain why you're losing your session...
  18. mmaz

    Why is session being shared in Safari and Firefox?

    We've also had the same problem with IE 6 and IE 7...
  19. mmaz

    Manually throw 404 exception with correct status code

    How about redirecting to a page that does not exist? HTH
  20. mmaz

    Can't find the file?!

    maybe the file was excluded from the project?

Part and Inventory Search

Back
Top