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

    How to display more than 25 images from a facebook album?

    I have a flash application that is working great accept for displaying facebook albums, but there is a limit of 25 photos using the default settings. I've researched and it seems that you have to set the paging to a higher number and perhaps set the offset. I'm just not sure how to pass those...
  2. wraygun

    Macro Troubles: Remove items that are in one ws from another worksheet

    Hi Skip, Thank you so much for your guidance. I was able to muddle through the rest and get a working solution. Best regards, Wray ***You can't change your past, but you can change your future***
  3. wraygun

    Macro Troubles: Remove items that are in one ws from another worksheet

    Hi Skip, Thanks so much. I'm running this as is just to make sure it iterates through all the records (without marking or deleting). This process is taking a while. As an alternative, is there an easy way just to insert the records into a new worksheet rather than going through the trouble...
  4. wraygun

    Macro Troubles: Remove items that are in one ws from another worksheet

    Hi there, Thanks for the response. I was trying to do some nested loops, but am getting errors. I haven't coded vb in years and I'm awfully rusty. Here's the broken code: Sub FindAndDeleteBads() Dim n& Dim objMyFunction As Object Dim rngMyRng1 As Range, rngMyRng2 As Range Set...
  5. wraygun

    Macro Troubles: Remove items that are in one ws from another worksheet

    Good morning! I have two worksheets that contain customer data. I am trying to create a macro that will remove the rows that are in worksheet "Accepted" from worksheet "Registered". The two worksheets are formatted exactly the same way. Any help would be greatly appreciated. I have spent...
  6. wraygun

    How do I Split / Merge a large file?

    I've been researching this for some time. I'm interested in breaking files up into smaller chunks and merging the chunks back together. I'm hoping to get some pointers on which direction to head with this. (Naturally, if someone had some ready made code, I would happily accept it) Any help...
  7. wraygun

    Populating a list/menu with table data (non-unique)

    Hi there, I have a table (pictures) that has a unique field (pictureid) and several non-unique fields. I would like to populate a list box with the records that will likely have duplicates (username and galleryname). I want to populate it in a way that there will be no duplicates in the...
  8. wraygun

    MySQL query works first time, but not second.

    Tony, That was brilliant. Thanks, and have a star. I inadvertently marked the 'nickname' as unique instead of 'username'. Changing that fixed everything. I really appreciate it. Best regards, Harold ***You can't change your past, but you can change your future***
  9. wraygun

    MySQL query works first time, but not second.

    Hi there, I have an INSERT query that fires based on whether or not a user is logged in. The first query in the script works propery and adds the user to the table 'users' each time I log in with a new user. The second table 'profiles' only allows 1 entry, so if I drop all the records in the...
  10. wraygun

    Mirroring problem

    Hmmm... it's odd, but a mesh is a mesh. If your interested, I would be glad to look at the max scene file to see if I can duplicate it on my end and work out a resolution. Best regards, Harold ***You can't change your past, but you can change your future***
  11. wraygun

    Mirroring problem

    No problem. I just hope I can help you get to the bottom of the problem. I wasn't able to duplicate the problem. Here are the steps I've taken to export from max and import into autocad (Note: I'm using Max 8, and Autocad 2004), but the steps should be similar if you're using a different...
  12. wraygun

    Mirroring problem

    Can you convert it to an editable poly, or do you need the seperate elements? ***You can't change your past, but you can change your future***
  13. wraygun

    Image type question...

    Thanks again... :) I'll look into that and learn that as well. BTW, the CSS stuff is working great. Best regards, Harold ***You can't change your past, but you can change your future***
  14. wraygun

    Image type question...

    I am using Internet Explorer. A quick test with Firefox returned image/jpeg. I suppose I should check for all three possiblities. :) Once again, I appreciate your help. Best regards, Harold ***You can't change your past, but you can change your future***
  15. wraygun

    Image type question...

    Thanks for your responses. I appreciate the tip on printing the file type. That worked well. The type I received was image/pjpeg. Can I expect that to be consistent for all jpegs on this system? Or is there something special about this jpeg? I should probably do as ID10T16 suggested just to...
  16. wraygun

    Image type question...

    I'm using the following portion of a conditional statement to validate valid image types. I'm uploading the file to my server. I'm using this for gif's and it works great: if (($_FILES["file"]["type"] == "image/gif")) but if I use this for jpeg's, it doesn't work: if (($_FILES["file"]["type"]...
  17. wraygun

    Trouble with form inside table Firefox/IE discrepancy

    Thanks. A remarkably simple solution that works. Thanks for the help. I'm grateful. As for the css solution, I will explore that this evening when I get in. I have to admit that css looks infinitely more flexible when it comes to layout and is definitely worth learning. I appreciate the...
  18. wraygun

    Trouble with form inside table Firefox/IE discrepancy

    Hi Vragabond, Thanks for putting me back on the right path. Greatly appreciated. I'm sure Vacunita was well intentioned. I appreciate the code example, but it's not quite what I'm looking for aesthetically. I will look for some tutorials on css as per your recommendation and take a stab at...
  19. wraygun

    Trouble with form inside table Firefox/IE discrepancy

    Hi Vacunita, Thanks for your prompt reply. I had no idea tables were bad for layout. What is the alternative? As for the tag structure, I'm using Dreamweaver and the <th> tags were inserted automatically when I inserted the table. My doctype is as follows: <!DOCTYPE html PUBLIC "-//W3C//DTD...
  20. wraygun

    Trouble with form inside table Firefox/IE discrepancy

    Hi there, I have a simple table with a form inside it and I can't seem to get it display properly. In Firefox, it looks perfect, but in Internet Explorer, it's not displaying correctly. I was hoping that someone could point me in the right direction. This should be enough code to duplicate...

Part and Inventory Search

Back
Top