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 Chriss Miller 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: bjd4jc
  • Content: Threads
  • Order by date
  1. bjd4jc

    Help with overriding

    I am having a hard time with understanding something. I have a base class that is derived from System.Web.UI.Page. This is an example. It mirros what I am doing but it is not what I am doing. public class SLBase : System.Web.UI.Page { private string _test; protected virtual void...
  2. bjd4jc

    Window Key + E problem

    When I press the Windows Key + E I get a windows explorer window as expected but when it shows up all of my menus and tool bars are gone. I don't know how the get them back. Can anyone help? I have tried right-clicking and I can never get a context menu that helps any. Thanks Brian
  3. bjd4jc

    Dynamic Datagrid Template Columns

    I need a datagrid that looks like similar to this: |-------------------------------| | | MEAN | STD | SI | |-------------------------------| |Row 1 |[ ] | [ ] | [ ] | |-------------------------------| |Row 1 |[ ] | [ ] | [ ] | |-------------------------------| |Row 1...
  4. bjd4jc

    Selecting Special Characters

    I am not all that familiar with DB2. We are on version 7.2. We have several tables that have the # sign in column names. They work fine when they are selected from a mainframe program. However, we are trying to create SQL Stored procedures using some of these fields in the selection cursor...
  5. bjd4jc

    Threading and Timers

    I have an application written to monitor some direcotories for XML files and create a fax from them. I decided to create threading in this application because there are multiple directories and lots of files in each directory. I have a FaxTemplate that stores the info on which directory to...
  6. bjd4jc

    ListView: No Focus Selection Backcolor

    On a standard ListBox control, when focus leaves the selected item remains 'blue'. On a ListView control, when focus leaves the selected item turns to a greyish color. I need to have a ListView to have a selection color of blue, even when the control does not have the focus. Any ideas?
  7. bjd4jc

    SubMenu Arrow

    When you have a SubMenu of a drop down menu, there is an arrow on the right side. I would like to replace this with my own bitmap and possible remove it all together. Has anyone ever done this before or seen code that will let me get to that portion of the menu. I have seen and used code to...
  8. bjd4jc

    RegExp Help

    I have create a Regular Expression that will work if it has to but would like to refine it down a little more if I can. Here is what I have so far. Public Function gloGetKeywordValues(lstrKeyWords As String, lstrFieldName As String, DelimitBy As String) As String Dim lRegExp As RegExp...
  9. bjd4jc

    Active Desktop

    Has anyone ever used VB6 (or anything besides C) to add an item to active desktop? I have found this article on msdn but can not figure out how to use it through VB...
  10. bjd4jc

    Importing Standard HTML Forms

    Is there a way to import a standard HTML form into an ASP.Net application and it converts all of the form tags into ASP.Net equivelent?
  11. bjd4jc

    Auto Fill Sql Parameters

    In VB6 you could setup a Command object to a stored procedure (SQL Server 2000) and then set the active connection of the command and the parameters would automatically populate to the command object. It doesn't seem to behave this way with VB.NET. Does anyone have any information on this?
  12. bjd4jc

    Front Page Error Messages

    I inherited a problem with some Front Page stuff. I do not know much about front page. I have a form that when it is submitted it is supposed to put data into a database and then display back to the user what they entered. Sometimes it works and sometimes it doesn't. When it doesn't work...
  13. bjd4jc

    Problem sending email

    I am using the CDONTS.New mail example found in faq333-2962. I have a test server and a production server. The test server is wide open and the code that I have works fine on the test server. The prodcution server is not the case. Everytime I send a message from the prod server the message...
  14. bjd4jc

    Get Excel Sheet Names w/o Excel Object

    I am trying to get the names of all the sheets in an excel spreadsheet without using the Excel object Model. In VB6 I would use ADOX to do this. What direction should I take to do this without the use of the excel object model in .NET?
  15. bjd4jc

    Forum Enhancement

    Maybe this has been discussed before but it would be nice if a user does a keyword search and the first results that are return from the search would be the FAQs. It seems that the FAQs on this forum have grown to be quite large and difficult to go through... just a thought..
  16. bjd4jc

    Detect User Changes

    I have a form that is stored and retrieved from a database. I would like to be able to check if a user has changed the form before they go to another page or close the browser. What is the best way to go about this in ASP.NET?
  17. bjd4jc

    Drop Down List

    Is there a way for the user to be able to enter text into a DropDownList and have it match what is in the list and select that in the list?
  18. bjd4jc

    Web Part Zones

    I can not figure out how to add different zones to my site. The only zones that I have are left and right zones. I need to have at least these + top and bottom zones. I've seen them on other sites and I can't figure out how to get them. This is a top-level site (Http://MySite/TopLevelSite).
  19. bjd4jc

    Screen Flickering

    I am creating a type of screen saver that is built into my application (the windows one is disabled). I am trying to reduce if not eliminate the flickering of it. It is a form and a label that "bounces" off the forms edges. Below is the code that I am using. I have read several posts on here...
  20. bjd4jc

    Load Picture in FlexGrid through recordset

    Does anyone know how to load a picture into a disconnected recordset and then have it displayed in a flex grid control with setting the grids recordsource property to the disconnected recordset?

Part and Inventory Search

Back
Top