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 strongm 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: *

  1. kimprogrammer

    cell validating error icon

    Hello I have a datagrid wit cellvalidating. When I enter an incorrect value the small red error icon show on the left of the grid. But when I correct the value and tab to the next cell the icon remains. How do I get reid of it? Thanks for the help Kim
  2. kimprogrammer

    array of contol data validations - need direction

    Hello Could I get some direction. I created array of controls. There is an hour textbox, minute combobox and a reason combo box. I have created handlers and validation for the hour textbox. Works ok But now I need to validate a hour,minute and reason combination. Not quite sure how this works...
  3. kimprogrammer

    Scroll bars

    Hello I have form that doesn't always show up nicely on the screen when I put it on different users screens. I was asked that maybe i could put in horizonal and vertical scroll bars. I don't see them in the control list. But I do have some properties on the form that i thought would take care...
  4. kimprogrammer

    autocomplete working not as expected

    Hello I have a dropdown box with autocomplete that was working but now is not. I used to be able to start typing the names and they would come up and then I could select one - i have two fields that would then be populated by what I had in the combo box and my combobox would then be disabled...
  5. kimprogrammer

    Cross tab column question

    Hello I've created a cross tab - my column is a formla concatenating first and last name. In the preview the the whole name does not fit in the column and you can't see the the end of the name - is there a way to increase the size of this column? Thanks for the help Kim
  6. kimprogrammer

    Trouble getting data on screen/linking tables

    Hi I started a thread and it was trying to get prompting done and after going back forth 25ish times I still couldn't get it to work - so I realy have to believe there something else confusing the issue. So I started over - I just can't get this working in this report and it shouldn't be since...
  7. kimprogrammer

    position cursor to specific text box

    Hello I created controls at design time and run time. My first 4 are my keys and then I have some text box created. The keys I gave the tabindex on to 4 and the text boxes is the designer 131,etc and in the code I created texboxes with indexes of 5 to 126. But when i debug - after I enter the...
  8. kimprogrammer

    force user to only pick from list

    Hello I created a combobox and loaded it at runtime Dim cbominsvalues() As String = {"00", "15", "30", "45"} Me.cboAdjMin1(x).Items.AddRange(cbominsvalues) I need it so the user can only select from the list and not enter anything else What is the property to do this? I tried a few properties...
  9. kimprogrammer

    removing all items from a combo box

    Hello I have three comboboxes set up -divison,department,employee - when I select either divison or division and department I populate the employee combobox with a tableadapter and a parameter. Now that I'm doing my testing if I select division my employee combobox is populated. But it I go...
  10. kimprogrammer

    ComboBox that has a DataSource set cannot be sorted.

    Hello I have my project that i have been working on for a bit - yesterday I added a new combobox in the designer and connected it to a bindingsources - everything looked ok and I finished for the day and saved my project. Today when I loaded my project I received the error "ComboBox that has a...
  11. kimprogrammer

    Problem closing form

    Hello I have a few forms created and have set up a menu for them - when I debug this my menu comes up I can select my form and it opens but when I close the form it gives me an error message on one of the dropdown box's .selectedindexchanged. I havn't entered anything and it gives me an error...
  12. kimprogrammer

    SQL command - filter not working

    Hello I'm trying to filter out some data in a command and it is not working. I have found were it says the command actually translates the command to sql - so it is not true sql When I refresh and ask for a new prompt - all the divisions still come up - so the statement is not being...
  13. kimprogrammer

    Printing formulas of report

    Hi I'm new to Crystal Reports and am currently teaching myself to complete this project. I would like to be able to print the formulas and info about this project so I can keep it for reference because it might be a while before i get another project with Crystal Reports and I'm sure I'll...
  14. kimprogrammer

    printing report if no corresponding data is in a file

    Hello I was wondering if I could get some help understanding the approach I need to create a report. I have an employee master file and a paycode file that data is entered for every payroll. I need a report that lets me know which employees have not has data entered for them. So I need...
  15. kimprogrammer

    Suppress footer based on Sum of Field

    Hello I created a field in my footer report which is a sum of the amount in the detail. I would like to suppress the footer if the sum amount is less than or equal to 75. In the footer section the field is named SumofAmount1:Sum of SwipeAccmulativeHours.Amount I'm not sure what to write as a...
  16. kimprogrammer

    DataError Questions

    Hello I have created a datagrid I've only choosen to display 4 of the columns from my database. They are PPstartDate, PayCode,Amount and Comments. The rest of the fields I will fill in when I go and update the database. I have the following code(see below) and when I enter a line I get the...
  17. kimprogrammer

    Data grid Not Read Only but can't enter data

    Hello I am having problems entering data in a data grid that I wasn't having problems with before. I have the Read Only property set to false. One thing I noticed is on the DataGridView tasks - the enable editing automatically aand continually puts a check mark in it and I keep unchecking it...
  18. kimprogrammer

    More DataGridView questions

    Hello I have a couple more problems with my datagridview. Of course this could be an easier process. First I can enter data in a row but when i try to enter another row the first row disappears/blank out. Is there something in the properties window that has to be set to allow the user to...
  19. kimprogrammer

    datagrid cell validating

    Hello I have a datagrid and would like to validate one field. I've copied some code from someone elses thread and made some changes. When I select data from my first combo box (not part of the datagrid) I get this error and shouldn't. I am new to vb and am teaching myself so I'd appreciate...
  20. kimprogrammer

    data not populating combobox in datagrid

    Hello I'm creating a datagrid with a combobox. When the data loads all the fields in the datagrid are populated except the combobox. I want the user to have add only permissions; no changes or deletes and was wondering if this could be the problem. I am using a tableadapter to load the data...

Part and Inventory Search

Back
Top