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

    How do I create an array of checkboxes ?

    I am using Flex 3. I would like to create an array of checkboxes so that I could use this array as the data provider for a column chart. Instead of having static labels in the x-axis - I would like to have checkboxes as part of the labes in the x-axis of a column chart. So, that the user can...
  2. TerDavis

    Hide and show sections within a word document ??

    Hello, I would like to be able to create an expand/collaspe section within my word document ? Has anyone done this ? So if you click on a link you can expand the section and read the contents or collaspe the section. I am not sure this can be done...but thought i would ask. Thanks
  3. TerDavis

    using layers to show interaction...

    With the FullScreen option you can navigate thru your visio pages..and you can use the hyperlink option to achieve an interaction effect. Is there a way to also use layers to show and hide areas ? such that when you are in FullScreen mode you can control the display of the layers ?
  4. TerDavis

    creating website map using excel and importing into visio

    Hello, In Visio 2000, you could create a Excel file using the following format and commands : Shape 6.2 Media Relations Shape 6.3 Business Proposals Shape 10 Manager Profile Link 1 2 Link 1 3 and import this into visio using the File -Open, which would allow you to import a...
  5. TerDavis

    changing the bg color of layers...

    on the ONClick event i want to be able to change the background color of one layer to be highlighted and reset the background colors of the other layers. so only the layer that was most recently clicked has the highlighted color while all others are set back to the default color. This works...
  6. TerDavis

    How can you prevent pasting into a TextBox ?

    Hi, I have a textbox that i don't want users to be able to use the Ctrl-V (Paste) feature to enter information. So, how do i prevent users from pasting text into a text box ? Thanks, Ter
  7. TerDavis

    How do you format values in a grid column

    Hi, I have a grid with the usual stuff, Name, Phone Number and Address. I want to display the PhoneNumber in the 123-1234 format instead of how it is being stored in the db field which is 1231234. For a column in the grid, you cannot select a masked text box and can only select a text box...
  8. TerDavis

    How to set the Month for MonthCalendar in program

    Hi, I am using the MonthCalendar and i would like to set the month within the program. So that when a person clicks on a Jan or Feb link, the monthCalendar control will display the selected month. How do i do this ? in the .ASP .NET control there is a VisualDate property but no such thing for...
  9. TerDavis

    Calendar Control - changing highlite colors

    I am using the Calendar Control, and would like to change the colors of the highlighting that is used for selection of a range. temp = DateTime.Parse("11/15/2005"); monthCalendar1.SelectionStart = temp; temp = DateTime.Parse("11/20/2005"); monthCalendar1.SelectionEnd = temp; This hightlights...
  10. TerDavis

    How to display a context menu for a grid ?

    Hello, I created a context menu, and set the context menu property for a grid to testContextmenu. However, when the grid has focus it always brings up the default context menu, undo, cut, copy ...etc. instead of the one i defined.... Initially, the grid is empty and does not have any values...
  11. TerDavis

    How can I compare two images ?

    I have two images.... And i want to determine if they are equal... I thought i could use Image1.Equals(Image2) but this is not correct... OR System.Drawing.Equals(Image1, Image2 ) and this does not seem to work. Basically, i want to determine if the image is the same as the one on a toolbar...
  12. TerDavis

    Merging Toolbars and images

    Hi, I have two forms each with a toolbar. I load the Parent form with a ImageList A. ( it is an MDI ). I than set the imageList for the child form to ImageList B. It seems that when the toolbars buttons are merged - the images for the child toolbar buttons form are not using the ImageList B...
  13. TerDavis

    Intergration between .NET and Foxpro V6.0 ?

    Hello, I would like to know if there is an utility or some code which can create a COM object from the FOX's ocx objects ? We are in the process of porting our application from FOX 6.0 to .NET C# and would like to be able to call some of the FOX modules from .NET as we slowly port and rebuild...
  14. TerDavis

    Moving rows/records up or down in a grid...

    Hello, I have a grid that is bound to a datatable. I want the user to be able to move an item ( row ) in the grid up or down. So I created an Up and Down button and in the UP button i basically do the following : indx = grid.currentrowindex; I create a new record in the recordset and than i...
  15. TerDavis

    Is there a way to know if the DataTable is dirty ??

    Hi, I know that I can check the status of the individuals rows in a datatable to find out if they are dirty.... modified, deleted, added etc. Is there a global flag on the datatable ? If ( dataTable.changes == true ) than save On Save, at the moment I am looping thru each row and checking its...
  16. TerDavis

    ValueMember of the ComboBox - Getting the Value ?

    Hey guys, I set up my combobox properties DisplayMember = "CodeValue" ValueMember = "Code"... and everything works great so I know they are using the proper display and associated code values from the dataset. The problem is - I want to access the actual 'value' that the ValueMember property...
  17. TerDavis

    How do you loop thru a DataView ?

    Hi, I have a dataview and want to extract some values out of it... So how do I Loop thru a DataView to find a row which has a particular value for a column and then how do i delete that row from the DataView ?? Thanks, Ter
  18. TerDavis

    ComboBox and SelectedIndex Event...

    I have an combobox and created an SelectedIndex event that would do some things if the selected item in the combobox changes. My question is this : I am also internally - setting the index of the selected item for the combobox in code, FilterControl.CboSearchOption.SelectedIndex = 0; And...
  19. TerDavis

    Lost scrollbars in IDE..with a usercontrol

    Hi, I created a user control,AUPage, and set the size to 966,638. The base user control has scroll bars,vertical and horz, in the IDE so that you can view and modify the control by adding other controls etc. Now, I created a new user control,SomePage, based on AUPage and for some reason, the...
  20. TerDavis

    VFP 6.0 - Don't understand the 'No Parameter statement is found'..

    Hello, I am just trying to run a demo foxpro form, no connections to the database, basically testing navigation and i wanted to create an exe. So, I made a project and added the demo form to the project. Within Fox it runs fine. So created an exe and am trying to execute it. I keep getting this...

Part and Inventory Search

Back
Top