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. fcoomermd

    Dataset in Datalayer

    I have an application which has a: Presentation Layer (includes some business logic) Data Layer (includes some business logic) Within the Data layer, I populate a dataset via a bunch of Stored Proc calls. Within the presentation layer, I call methods within the Data Layer which returns the...
  2. fcoomermd

    Opening Outlook Messages from a folder

    I have searched, and searched and searched... But cannot find anything on how to open an outlook mail message from a folder location, that is not within outlook. How can this be done in code? I need to set the mailItem object to be loaded with the Outlook Item, which is stored at...
  3. fcoomermd

    Opening PDF's

    I would like to be able to open a PDF, and write to the fields using Visual Basic.Net. I have done this before using a component... However, I believe my componet is A) Either out of date or B) Not compatiable with the Version of Adobe in which the form was created using. Any help, suggestions...
  4. fcoomermd

    Grouping

    I am having difficulty with the following: I am trying to records when certain conditions apply, for example: The query is based on 1 table has the following columns: Include Delete Car Company SalesAssociate I would like to return only the records where Delete=false, Include=true but... I...
  5. fcoomermd

    Regular Expression Matching

    I am new to Regular Expressions (don't really need to use them much), however need to use in this case.. Kind of a daunting task. I have tried my luck, but am stumbling... Here is what I need to do.. Search a string, of lots of xml, and pull out the name from the following XML. <last_Name...
  6. fcoomermd

    GroupBox, border not drawing properly

    I have several controls in an application, and many of which are GroupBoxes, which at times are located in a tabbed page. When I toggle between tabs, the GroupBox is drawn at different levels, and rarely complete. So it looks awful. So the entire border is not fully drawn, therefore the group...
  7. fcoomermd

    Combining results into one resultset (union join)

    I figured it out... select a, b, c, d from tableA union all select e, f, g, h from tableB Thanks for the input guys and gals...
  8. fcoomermd

    Combining results into one resultset (union join)

    Not sure how to do this... Problem: I have the results from two queries, and would like them to be combined in one resulset. For example, Query 1 return: id, startWeek hours employeeID taskID Query 2 returns: dateUpdated hours employeeID I would like the results to be combined like this id...
  9. fcoomermd

    Screen Display Messed Up.

    I have a main app, with Tabs, Labels and TextBoxes, etc. I have a procedure from the Main app, which launches a form, which has a Progress Bar built in. The procedure runs some routines, etc., and updates the Progress Bar based on the work completed. PROBLEM: If I, or the user tabs (Alt-Tab) to...
  10. fcoomermd

    Save data in Access?

    I do this with against MSSQL. I set a timer, and every minute, I call my save. I am sure you can work with that.
  11. fcoomermd

    Loading Many Custom Controls Crashes the Application

    It presents more like a datagrid... Very seamless... Trust me though. I don't want to argue the design. I just want to know how to handle the number of controls.
  12. fcoomermd

    Loading Many Custom Controls Crashes the Application

    Yes... The data is a combination of labels and one checkbox. Also, some of the labels utilize the click event. Therefore swithching to a datagrid maybe very difficult... I just need a way to load the controls and not consume so much memory (I think)...
  13. fcoomermd

    Loading Many Custom Controls Crashes the Application

    I have a very intense screen which consists of many instances of a custom control. The control consists of many labels (approx. 52 labels). I have a list of employees, and for each employee I load this custom control in a panel. When the Company consists of only 10 - 20 employees, everything...
  14. fcoomermd

    Dataview in loops?

    I have a For each loop, and inside I call a routine to see if I should change a font color based on search in a xml file (data). The question I have is, is this gonna kill performance? Should I pass a dataset into the routine? Can I use one dataset, and do sub searches? Something like that...
  15. fcoomermd

    stumped with a tough joined query

    I have a table person, and a table called cars I would like to set up a query that joins the table ex. "select p.firstname, p.lastname, c.carType from person p, cars c where p.id=c.pid" the tables are obviously 1 to many I would like the returned result to look like this Bob, Jones, Porche...
  16. fcoomermd

    Select rows from one table, and partial from joining table LEFT OUTER

    I have a table person, and a table called cars I would like to set up a query that joins the table ex. "select p.firstname, p.lastname, c.carType from person p, cars c where p.id=c.pid" the tables are obviously 1 to many I would like the returned result to look like this Bob, Jones, Porche...
  17. fcoomermd

    Virtual Listview

    Anyone ever implement a Virtual Listview in Visual Basic.Net? Please if anyone could help, I would greatly appreciate it. I have downloaded the examples, but they are all in C#., and contain libraries I am unfamiliar with... Thanks FC
  18. fcoomermd

    Select rows from one table, and partial from joining table LEFT OUTER

    Here is what I would like to be able to do I have the following tables: #1 Employees id firstName lastName #Tasks id employeeID description flag I want to Join the tables, and return the employee result from employee, regardless if there are joining rows in the Tasks table. So therefore I...
  19. fcoomermd

    Load Excel into a VB.Net application (with functions)

    This is what I was trying to do: I have the com object loaded :AxSpreadSheet, and I drag this onto the design of the application. How can I load this spreadsheet with a existing spreadsheet. So, if I had an Excel file called employees.xls, I would like to be able to do something like this Create...
  20. fcoomermd

    Loading Excel Into VB.Net: AxSpreadSheet

    This is what I was trying to do: I have the com object loaded :AxSpreadSheet, and I drag this onto the design of the application. How can I load this spreadsheet with a existing spreadsheet. So, if I had an Excel file called employees.xls, I would like to be able to do something like this Create...

Part and Inventory Search

Back
Top