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 bkrike 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: j0em0mma
  • Content: Threads
  • Order by date
  1. j0em0mma

    server control in an ascx not getting theme on ascx LoadControl

    I have a styleSheetTheme Web App defined in the web.config and I have 3rd party component library that is registered in the GAC. It gives proper code complete in design mode in html side. When I add this to a normal page in html and run the page, the skin I have defined for this control is...
  2. j0em0mma

    why is _objId undefined in this statement?: var _objId = self.id;

    I have debugged this and verified that self.id evaluates to a scalar string that represents the name of the variable I assigned this object to...
  3. j0em0mma

    Dynamically reference user object, like document['myObject']?

    I have two variables and I have assigned to each an instance of the same user defined object. Based on if/then, I want to get a reference to either variable by name. Is there something like: document['myObjectInstancesVariableName'] available? eval is not an option...
  4. j0em0mma

    Unable to cast object of type 'ASP.xsd_master' to type 'xSD'.

    I got this error randomly once every few days for awhile. Once I stopped debugging, it would run again fine. Over the past few days, the project would only rebuild if I deleted the temporary files in the following directory: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET...
  5. j0em0mma

    Why does this format string turn "0" Blank?

    I have the following format string applied to a Report Column: =Format(Fields!Units_Distributed_in_Date_Range.Value,"###,###,###") For any value other than zero (actually zero, not a NULL value) this works, but a zero is displayed as blank. If I change this line to this...
  6. j0em0mma

    Can I make each instance of a Group start on new page?

    I am not sure if this is the proper forum, please forgive me and direct me if it is not. I have a straight forward Order/Order Item report that needs to have each of the main grouping elements (Order) start on a new page. I am limited to using Visual Studio's Report designer. Is this possible...
  7. j0em0mma

    How to connect rdlc Report Parameters to Stored Proc Parameters

    I have a stored procedure accepting from and to date as parameters to an Group By Select. I have added this as a datasource and even have the report designed and showing up fine except... I cannot find an example of passing parameters from a control (say, DateTimePicker) on the WindowsForm that...
  8. j0em0mma

    Where are my zero Counts?!

    I have done this a bil... let's just say many times. Given the following SQL: SELECT dbo.tbl_Items.ItemName AS [Item Name], dbo.tbl_Items.ItemDescription AS [Item Description], COUNT(Distinct(dbo.tbl_Orders.OrderID)) AS [Orders Distributed] FROM dbo.tbl_Items LEFT OUTER JOIN...
  9. j0em0mma

    Having trouble with Stored Proc syntax

    I have the following stored procedure body I am trying to build in SQL Server Express: ALTER PROCEDURE [dbo].[sp_GetOrdersDistributed] -- Add the parameters for the stored procedure here @FromDate DateTime, @ToDate DateTime, @Active int, @SearchText varchar(3000), @OrderBy...
  10. j0em0mma

    Windows forms graphical object upper limit?

    I have a neat template I designed that takes care of most of my application. It has a main splitscreen control and two nested splitscreen objects, one of which contains a nested splitscreen. All of the exposed splitscreen panels themselves contain a panel object. One of the panels loads a...
  11. j0em0mma

    drag SQL Express 2005 tables to component?

    Is it possible to drag tables from the server explorer into a new component class from SQL Server Express within the Visual Studio Standard 2005 edition? I get the "arrow and "plus" sign cursor when I drag over, but nothing results... no error message or anything...
  12. j0em0mma

    Possible to retrive Application Settings in a referenced project?

    I have a main project (presentation layer) containing all of my forms and a data access layer which I am designing to return adapters to my BRL. If I define application settings in the main project, how do I retrieve them in the Data access layer which is referenced by the main presentation...
  13. j0em0mma

    Application Settings unavailable in Forms?

    I have created two string application settings for DatabaseName and DatabaseServer by right clicking the project, choosing properties then settings. I have saved and rebuilt the project. I then enter the following code: dim strDBName as string = my.settings. into the load section of my login...
  14. j0em0mma

    Is there an eqivalent to drop down?

    All I can find are listboxes (no drop down) or combo boxes that allow editable text, which is no good. Is there a standard drop down control that works like HTML Select (prefereably a little bit better, but...)?
  15. j0em0mma

    panel does not get scroll bars whne larger form added

    I have a somewhat complex configuration. I have a mainform which loads a series of level 1 forms. These are then shown or hidden depending upon navigation. Each of these forms in turn is inherited from a template form. Because I have docked Screen Splitters on the template, I am not able to...
  16. j0em0mma

    MouseEnter and MouseLeave far too slow

    I am trying to achieve hover effects in a windows forms application. I have a list of 19 or so items beside a summary box. When a user mouses over a menu item, it does several things: 1) Border is drawn around menu item and bg color set to white with a small alpha level. 2) an invisible...
  17. j0em0mma

    Best way to store and retrieve encrypted password?

    What would be the best way to store an encrypted (Synchronous) password outside of the application? I have an encrypted password (Courtesy of wumpus1 at http://www.codeproject.com/dotnet/SimpleEncryption.asp): Dim sym As New...
  18. j0em0mma

    Does TransparentKey actually work?

    It seems so simple: Set BackColor =, say, red. Set TransparentKey = red. make sure RightToLeft is false The form background should now be transparent. Am I missing something?
  19. j0em0mma

    One window, multiple forms/views: SDI or MDI?

    I am web developer trying to get win32 windows forms working. I have a simle structure with a main form with my menu and content forms with only a button to "return to main menu." First, my forms open in new windows, instead of the same as main. I only want one window and one form open at a time...
  20. j0em0mma

    overflow:auto works in IE, not in Firefox

    In IE, as the browser window shrinks, the purple boxes on the side meet their limit, and the scrollbars pop-up. Firefox just scrolls the whole browser, ignoring the internal DIV's overflow property. I have tried adding a doctype 4.01 transitional, strict, etc... to no availe. I have tried...

Part and Inventory Search

Back
Top