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 Chriss Miller 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. icodian

    Arrays of Sub-Objects ... How to handle these?

    Both of you have helped and I appreciate it. It seems as though using the List like I was originally trying to do was on the right track. It just seemed so cumbersome, but looks like I was at least on the right track. @MajP: I started building it from the top down... Started with House, then...
  2. icodian

    Arrays of Sub-Objects ... How to handle these?

    You may have just answered my question. As usual I'm probably overthinking this and making it way hard than it needs to be. Ugh...
  3. icodian

    Arrays of Sub-Objects ... How to handle these?

    I'm having trouble searching for what I'm trying to figure out, so please forgive my ignorance here. I build a small business application using VB about once per year and I just don't know the words I should be searching for my new problem. I am hoping someone can suggest the appropriate...
  4. icodian

    Add and Populate Checkbox Column of Datagridview

    Thanks for the tip. I'm new to VB.NET and definitely appreciate anything like this. It will make it a lot easier when I look at it a few months down the road. Appreciate it.
  5. icodian

    Add and Populate Checkbox Column of Datagridview

    It is a DataGridView and I'm creating everything programatically so I don't have the columns setup in the control. I actually did figure this out, I just forgot to come back and post how I did it. Don't know if this is the best way, but here's how I'm doing it. 1. I have Function that creates...
  6. icodian

    Add and Populate Checkbox Column of Datagridview

    I have no idea why I'm having so much trouble finding this but I cannot find the code I'm looking for. It seems as though it should be simple. Anyway, all I want to do is take a boolean field from my database that stores either a 1 or a 0, and display this in my datagridview with a checkbox...
  7. icodian

    Dataadapter .Fill no longer populates Datagrid; Stopped working

    Well, I figured it out. I feel like an idiot but I also blame VB for not telling me the problem. I had also changed a column name in the DB from ProcID to Procedure. SQL Server had changed this to [Procedure]...I'm assuming because this is a reserved word. What I don't understand is why VB...
  8. icodian

    Dataadapter .Fill no longer populates Datagrid; Stopped working

    I'm an amateur that used to do some simple applications in VB6 for my small business. I just upgrade to VB.NET. I was writing my first app and everything was going great. I have 3 datagrids that were populating with data perfectly when the form loads. Then, all of a sudden, they stopped...
  9. icodian

    Using the same code for multiple forms

    I have several forms that all have the same textbox & flexgrid on them. They all contain the exact same data and I want them to work exactly the same way on every form. They are basically fancy combo-boxes. You start typing in the textbox and the grid becomes visible and displays a list of...
  10. icodian

    Fax Console security?

    Just had to say that the program you referred me to worked like a charm. Thanks for the help!
  11. icodian

    Fax Console security?

    I threw the Standard User in the Admin group to see what would happen and this did fix the problem. So it seems there is just a setting somewhere that needs to be changed. I think you must have an old think for Greg Palmer's program so here is the new link for anyone that might look at this in...
  12. icodian

    Fax Console security?

    Hi. Thanks for the post. I do have that location but I currently have the faxes going to another folder called 'Incoming Faxes'. It was a good thought though. So I took the 'Incoming Faxes' folder and moved it to the Shared Documents folder. I made sure it wasn't marked Read-Only. I am able to...
  13. icodian

    Fax Console security?

    I'm able to delete incoming faxes in the Windows Fax console logged in as the System Manager but not as a standard user in the Users group. The 'Delete' option is currently greyed out in the right-click menu for the standard user. Does anyone know what security option I may be able to change to...
  14. icodian

    Prompting a user for input into a field in a Word Doc

    You know what? Nevermind. I'm an idiot. Turns out that everything was working fine. The header was simply not being displayed as I was used to seeing it. I had to go view the header and then close it in order to see it show (greyed out) on the document. To follow up on this then. Is there an...
  15. icodian

    Prompting a user for input into a field in a Word Doc

    Hi, I've created a template in Word 2003. I have a Header that I would like to display a title in. However, rather than having the user have to open up the header and change the title, I would like to simply prompt the user to enter one whenever they create a new doc off of the template. I...
  16. icodian

    Apply a template to all Word 2003 documents

    I recently created a header that I want to appear on all of the Word document handouts that we use. This adds up to approximately 200-250 Word docs. My header is currently a template and I am using it for any new docs I create. However, I would like to be able to apply the header to the existing...
  17. icodian

    Pick up one record of those with a dup foreign key

    Thanks to John and James. Both of you made suggestions that would work. Using John's suggestion, I was going to simply to a two step process. 1) Insert records into the AccountAddlInfo table first based on the Account table so one record would be created for each account. 2) Use the Update...
  18. icodian

    Pick up one record of those with a dup foreign key

    Thanks for the response John! The theory behind this is good, but I neglected to explain part of the problem. That's my fault for trying to simplify the question and then forgetting an important piece of it. Can I use the same concept for an Insert statement? Here's why. I actually have 2...
  19. icodian

    Pick up one record of those with a dup foreign key

    Morning, I'll get right to it. I only use SQL occasionally so hopefully this is an easy question for more of you. I have an Account table and a Contact table. Multiple Contacts per Account. I want to move data from the Contact table to the Account table such as email address and fax number...
  20. icodian

    Looping through Controls by name

    I am using VBScript. The list that appears upon hitting the dot after Controls("txtAlloc" & i) gives me a list of controls on the form. To clarify that, I type Form.frmName.Controls("txtAlloc" & i). The list of available properties appears and all of the form controls are listed after...

Part and Inventory Search

Back
Top