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

    Datagrid and drop-down menu

    Greetings, brand new to the asp.net world. I have built a simple datagrid and need to link a dropdown menu to each line. The menu will be the same for each line in the datagrid but I need to inherit information from the record to pass when the user selects one of the menu items. With that...
  2. MDA

    Unable to launch applications

    Greetings, I am connecting remotely to a client using the “Web Interface for MetaFrame Presentation Server” (Citrix). Unfortunately, the client just starting using this and cant resolve my issue. I installed Citrix ver 9 (ica32Pkg.msi) on my laptop and have local admin rights. I can login...
  3. MDA

    Progress Bar & Stored Procedure

    Greetings, I have a simple VB6 application that executes a Stored Procedure on SLQ Server 2000. The procedure copies anywhere from 10,000 to ++Millions of transactions, which can take from a few minutes to close to an hour. I would like to display a progress bar to the user as a status update...
  4. MDA

    Using DOM to find input name

    I have a spreadsheet engine the dynamically renders html. I need to find a way to pinpoint an input box based on the alt of an img to the right of the input. So in the example below, I want to be able to specify CELLB5 and get returned IB5. However, the one strange twist is that there may be...
  5. MDA

    Web update & license keys

    Greetings, I actually have two questions about development… 1. What is involved in building an application that can be updated via the internet? I have seen .DLL’s for sale that do this but I don’t think it would be all that challenging; I am just not sure where to start, what technologies are...
  6. MDA

    Listview

    Does anyone know if it is possible to Add/delete or change a subitem in a specific column? I have found no reference to how this can be done. Example: A listview contains three columns. The first column contains "item1" I want to add a subitem to column three. Is this possible? I do NOT...
  7. MDA

    Add subitem to listview control

    Greetings, I am trying to figure out how to add data to a listview subitem. Here is the setup: I have a list view control with three columns; the first two columns are populated from a SQL DB. In my double click event in the listview a new form is shown. The user enters a string of data in...
  8. MDA

    Add "attributes" to item in ListView

    Hi, I have a listview control with three columns. The first two columns are populated from a SQL table. In the third column I am trying to do the following: 1. User clicks on a row in third column. 2. A Dialog box opens up "used to add an attribute to the item in the listview" 3. Once the...
  9. MDA

    Saving settings

    Hi all, I am trying to figure out the best way to save settings in my small app. I have the following settings I need to save: 1. Connection info (Ex: The last server name used, was it trusted authentication or user name, if so what was the user name last used. 2. In my listView which...
  10. MDA

    listview control - alternate backcolor

    Hi all, I have been searching for a way to add alternate background colors to a listview control but have not had much luck. The concept is simple. I have a listview control that is populated from a table with four fields (columns) found in a SQL DB. I just want to alternate the backcolor...
  11. MDA

    Moving Next/Previous through "pages"

    Hi all, I have a simple "Wizard" like project. I am using user controls in a main form with back and forward buttons on the main form. I am trying to find an efficient way to move forwards and backwards through the pages. I have been unsuccessful in figuring out a way to do this and cannot...
  12. MDA

    Using XML file with checkedlistbox and SQL table

    Hi, I have a checkedListBox control that I need to connect to a SQL table. My goal is to do the following: 1. Read two fields from a SQL table into the list control 2. When a user checks any fields I need to save this to an XML file. The idea is that I need the checked fields to show...
  13. MDA

    Connect to multiple databases programmatically

    Hi all, I am trying to figure out a way to loop through multiple databases within DTS. Basically I currently have 25 databases that have the same structure on the same SQL server. I need to extract data from each database (same table name). However, the number of databases will grow so I am...
  14. MDA

    looping through range

    I have two combo boxes that contain start and end "Periods." For example Start 0201 - End 0212 (YYMM). I am having a problem in looping through the periods when I use 0001 - 0012. I am currently using the following syntax: Dim i As Integer For i = Val(cmbFromPE.Text) To Val(cmbtoPE.Text)...
  15. MDA

    Search and update query

    Hi all, I need to compose a query that searchs for a "string" and updates one of the columns within the string. Example: TABLE: A COL1, COL2, COL3, COL4, COL5 TABLE: B COL1, COL2, COL3, COL4, COL5, COL55 In plain english I need to UPDATE TABLE A and SET A.COL5 = B.COL55 FROM A,B...
  16. MDA

    Using checkedListBox

    Hi all, Could someone help me with setting all items in the checklistbox control set to CHECKED. The control is populated by a SQLDB query but I have appended one line in the control called ALL. So when I click the ALL box, I want all the rows to be checked. Thanks for any help. MDA
  17. MDA

    Add User Control programmatically

    Hi all, I have several user controls I have created, (first time using User Controls). It seems that if you drag & drop the control on a form, the control is not updated if a change is made to the user control. Is it possible to add the control to the main form programmatically? I want to...
  18. MDA

    Add Unique Key to Select..Into statement?

    Hi all, Is there any way to add a unique key field to a Select...Into statement? I know I can use the newId() syntax but this creates a huge string. Select newId() IdKey , * INTO ixvJCSOURCE from ixvJCTrans I just want an incrementing unique number. I am trying to avoid a Stored procedure...
  19. MDA

    SQL View to pull last activity

    Hi all, I am stuck and need some new ideas. I have a SQL table that is updated/appended nightly with the status of contracts. The records are appended on the date that they are changed. Example: Contract | Status | Date 100 Pending 1/1/2004...
  20. MDA

    Dialog template wizard

    Hi all, Does anyone know if there is code for a template wizard in VB available? I was just trying to avoid recreating the wheel. I found what I am looking for at: http://www.codeguru.com/cs_controls/WizardDialog.html But this is in C# and I am still trying to figure out and would rather code...

Part and Inventory Search

Back
Top