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!

Recent content by jjjax64

  1. jjjax64

    Barcode Label Print Zebra and PDF

    Hi, we are printing some barcode labels using Zebra QLN320 printers but would also like to create a pdf copy of that printed data as a copy to store in our system. Is this possible? Thanks, Joe
  2. jjjax64

    Adding Access Point to existing home wireless network.

    Thanks for the detail explanation, it helped me understand it a lot better. Will be giving it another try this week. Thanks, Joe
  3. jjjax64

    Adding Access Point to existing home wireless network.

    Hi, I am trying to help someone with adding an Linksys wap54g access point to their existing Verizon Fios home network. They currently have wireless Verizon router in their basement but parts of their house, they are not getting any reception, it's a really big house! I gave them an old...
  4. jjjax64

    301 Redirect not working in Safari

    Hi, in IIS, I goto HTTP Redirect. I have the checkbox checked for Redirect requests to this destination and in the destination field, I have the domain name: http://www.general-trading.com Then, I've tried different combinations on the other 2 checkboxes for Redirect all requests to exact...
  5. jjjax64

    301 Redirect not working in Safari

    Hi, trying to setup http 301 permanent redirect in IIS so anything coming to general-trading.com will automatically get directed to www.general-trading.com which seems to be suggested for search engine optimization. Trying to test in Safari and keep getting error about too many redirects...
  6. jjjax64

    Convert string value to button.

    Got it working in case it helps someone else: Do While NextResult = True Dim Button1 As New Button Button1.Location = New Drawing.Point(2, 80 + i * 20) Button1.TabIndex = i Button1.TabStop = False Button1.Text = "Open" Button1.Tag = SQLReader.GetValue(1).ToString...
  7. jjjax64

    Convert string value to button.

    Hi, want to add buttons to a form and name them from data returned from SQL server but also add event handler for onClick of each button to be different. We currently can loop through a recordset and add these buttons but all have same onClick event handler. Thanks, Joe
  8. jjjax64

    MsgBox like Yes/No confirmation asp.net / vb.net.

    We have a a few button fields in our gridview and we'd like to be able to have it prompt user to confirm before continuing. Seen a couple Javascripts that do it onclick events but would like to do right in vb code if possible. Here is the asp code for one of the buttons in our gridview...
  9. jjjax64

    Multiple gridviews - page index.

    Hi, we have a page with 2 gridviews with scrollbars. The first is a list of items that have been inserted already. The second below it, is a list of avaiable items with a button by each that when clicked, inserts that selected item into first list and then call databind to update and that...
  10. jjjax64

    SQL Server 2008 SP problem.

    Sorry, forgot to paste this link to what I thin might the problem because binaries and sp's are out of sync. http://support.microsoft.com/kb/2008286
  11. jjjax64

    SQL Server 2008 SP problem.

    We had a problem after install SP3 for SQL server 2008 from SP1. Install seemed to go ok but then got messgae when starting sql up after upgrade about master db being corrupt. Was about to reun repair of master and got server up. Unfortuanatley all databases were not there but was able to...
  12. jjjax64

    Cisco Switches - Freezer Building.

    Hi, we are going to opening a freezer warehouse bulding where temp could get down to -10 degrees. Looking to see if any POE switches are designed for that environment or if there is some type of heated box? Not sure if this is the correct place to post this but any help would be appreciated...
  13. jjjax64

    APC UPS with inverter to out batteriers.

    Not sure if possible and was basically told by APC that they didn't think it could be done but here goes: We have a big APC Matrix 5000 UPS in out server room and would like to when power goes out for an extended time, plug the UPS into and inverter then into one of our large batteries that we...
  14. jjjax64

    On Click Event of Image not working correctly.

    Found a workaround: http://bytes.com/topic/access/answers/509896-onclick-event-works-w-command-button-but-not-image-box Just did below excerpt and seems to be good. Thanks. As a work around, I placed a command button over the image control, sizing it exactly the same as the image control, and...
  15. jjjax64

    On Click Event of Image not working correctly.

    I just did a quick simple test and here is the code below. This test is just continous form with a simple table as datasource. Just have it displaying current record id field when clicking on button or image Same code in bother but button works fine and displays the correct id for record...

Part and Inventory Search

Back
Top