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

    Help with Row Headers

    Hi all, I am having a problem getting my row header correct. For some reason they are repeating for each group. I dont if they are call row header or column headers but this is how my report looks orders by Person date Name...
  2. jpack23

    help with dataset xsd

    Hi, I was wondering if someone can explain or link me to a site or thread that explains how to update an xsd. I have an .net 2008 application/project (written by someone else) which uses dataset (.xsd). I need to add three fields in a table linked to one or more of these .xsd. Can I update...
  3. jpack23

    Multi-table search

    I would love some help with searching through Multiple tables in a database. I have a parent table which contains an Id field, a type field, and a date field....call it TableA (the type field corresponds to the child table....so typeB would refer to tableB) Then I have 10 other child...
  4. jpack23

    Help with finding a specific text inside a string

    I have a string and want to find a specific text inside that string and shade it using vb 2008 the string could be of varying lengths. code example: strComplete = "I have an apple, banana, and an orange" 'I want to shade "apple, banana" strTextToHightlight = "apple,banana" code here to...
  5. jpack23

    Help with string functions

    I have a field from a datagrid that contains employee id separated by a comma for example 2,3,22 or 22,3 or 2,3 or 2,44,104 any combination of single double or triple digits separated with a comma What I need to do is separte each of those ids one at a time and run it through a...
  6. jpack23

    Help with Distinct group or concat on multiple almost duplicate record

    Hi, Here's my problem....I have an "employee" table and an "activity" table and an "ActivityEmployeeDetail" table. one activity can have multiple employees and the details of that activity are stored in the "ActivityEmployeeDetail" one record for each employee Activity table ActivityID...
  7. jpack23

    set listview item index

    this is related to the weirdest thing with message box thread. trying to work around whatever is causing that box to pop up twice. I have a MDI parent form with a listview using an image list as icons. When a user clicks an icon a child form is loaded in the mdiparent. Is there a way to get...
  8. jpack23

    weirest thing going on with message box

    have a very simple okonly messag box to be displayed, but I have to click the OK button twice to make it go way. I can see if flicker on the screen like it redrawn a just after I click the ok button the first time. If I set a breakpoint on the line of code just after the message box I only...
  9. jpack23

    Help with setting a selected Item in a combobox

    I have a combobox with about 100 list items. Since it takes time to find stuff in a list of 100 items I have create a few buttons that I would like to automatically selected the proper item in the list box. For examble Product A might be #50 in the list of items in the drop down combo box...
  10. jpack23

    Help with CheckBoxList on web page

    I am trying to create a web page that has a checkboxlist which I have bound to a datasource so when the page loads I can get the names of all my employees to appear in the box. The table which supplies this information also has a field that shows whether or not the employee is at work. I...
  11. jpack23

    Help with ASP page and checkboxlist

    I am trying to create a web page that has a checkboxlist which I have bound to a datasource so when the page loads I can get the names of all my employees to appear in the box. The table which supplies this information also has a field that shows whether or not the employee is at work. I would...
  12. jpack23

    help with using "if" in the sql statement

    thanks for taking a look at this. I would like to know if the following can be done in a sql statement. I have 2 tables that goes something like this: TABLE1 FieldID integer FieldDeptID integer FieldName varchar FieldAbbrev varchar TABLE2 fieldDeptID fieldDeptName The data in this table...
  13. jpack23

    getting value of Data table datacolumn identity

    Here is my stored proc [dbo].[pInsertActivity] ( @ActivityID int, @Location int, @LocationID int, @Notes varchar(5000) ) AS SET NOCOUNT OFF; INSERT INTO [Activity].[tblActivities] ( [ActivityID], [Location], [LocationID], [Notes] ) VALUES ( @ActivityID, @Location...
  14. jpack23

    Another MDI Child Form question

    I have a Child form that opens up in a Main MDI form. I enter information in txtboxes on this child form and then use a save button on the MDI to save the info to a database. When the save is successful an ID number is assigned. I want to get the ID number on the child form. the problem I am...
  15. jpack23

    passing txbox value in child form to mdi form

    I have a save button on a toolstrip on the MDI parent form. I want to save values in textboxes on the child form when I click on this "save" button. In the button click event for the save button I cant get the value from the text boxes. I want to pass these text box values to another class...
  16. jpack23

    Sort order formula to sort by field other than the group by field

    Thanks for your time. My report groups by EmployeeID. I need to have it sort by LastName. Can I do this in the group sort order formula workshop in the group expert? In the change group options I have employeeID in the group by box, then I check the "use a Formula as group sort orde and then...
  17. jpack23

    Populating DatagridView with XMl data using criteria

    Hi, Thanks for you time. I want to populate a datagridview with records from an XML document. I can get all the records in the grid using the following code Dim filePath as String = "c:\path\XML.XML" Me.dsRecords.ReadXML(filePath) dgvRecords.DataSource = dsRecords dgvRecords.DataMember =...
  18. jpack23

    Vb.Net training

    Hi all, I am looking for the best non classroom training available for Mid Level to Advanced VB.Net developers. I am looking for the best Online courses, Video series, books, self paced courses, any type of learning/training that doesnt involves going to a classroom or having an instructor come...
  19. jpack23

    Help creating report where groups are added based on totals

    I need to create a report based a sql table that list Item and quantities. the items are not grouped but have unique IDs. In reporting services I would like the report to start moving down the list of items adding the quantities together and when the total reaches 100, i need the report to...
  20. jpack23

    Listview help

    I have a single column listview with checkboxes on a form (each item has only one column and the checkbox). I click a button to bring up a small version of the form showing the scrollable listview (showing about 20 items). There are about 1000 items in this listview total. If the user has to...

Part and Inventory Search

Back
Top