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: *

  • Users: wraygun
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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"]...
  7. 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...
  8. wraygun

    msflexgrid curiosity?

    Hi there, I'm not an everyday programmer. I use vb6 when I need to accomplish a custom task for a client or for myself(in this case). I'm self-taught and probably don't do most things the proper way, but I do get it done (most of the time). I'm stuck on a little issue with a msflexgrid. I...
  9. wraygun

    stripslashes problem / part of form data vanishing

    I have a simple multiline textarea posting to another php page which saves to a text file. It all works fine, but when I use the stripslashes function, everything after the first carriage return is cut off. I guess my question is. How can I obtain the stripslashes functionality and still...
  10. wraygun

    Adware possibly. Can't seem to shake this one.

    I picked up some adware somewhere and did a scan with Spybot S&D & AVG antispyware. It found some things and removed them. I also did a virus scan with AVG and it came up clean. Everything seems normal, except on occasion (about 1 out of 3 times it seems) when I do a Google Search or click on...
  11. wraygun

    SetCookie Issue.. Only part of the variable returning.

    Hi there, I've searched the forums here, but I can't seem to find what I'm looking for (or I'm overlooking it). I'm using the following to set a cookie(working fine): value = <?php echo $bandname; ?> And I'm using the following to retreive the data(also working partially): //Look for...
  12. wraygun

    Webbrowser control refresh issue

    Is there a method to force a webbrowser control to download a fresh copy of the navigated page? (rather than a cached copy). Here's what I'm doing: I'm downloading an html page that loads a 1MB picture into a webbrowser control. I'm timing the the load time so I can approximate the users...
  13. wraygun

    How do I programmatically select an item in a listbox?

    Hi all, I've googled 'till my fingers are blue and searched here, but I must be overlooking something. I have a listbox that is populated with custom data(this is all working fine). When I "left click" on the data it performs an operation (this is working fine as well). However, when I...
  14. wraygun

    Getting the link text from a URL source....almost there.

    Hi all, I'm using the following code from http://www.codeguru.com/vb/vb_internet/html/article.php/c4815/ to get all of the links from a webpage into a listbox. Dim objLink As HTMLLinkElement Dim objMSHTML As New MSHTML.HTMLDocument Dim objDocument As MSHTML.HTMLDocument ' This function is...
  15. wraygun

    Select Box trouble

    Hi all, I've googled until my fingers hurt, searched the threads here, but I'm not finding what I'm looking for. I have a Select Box populated: <select name="selectprimarygenre" id="selectprimarygenre" dir="ltr"> <option selected>Acoustic</option> <option>Alternative</option>...
  16. wraygun

    Folders in the root directory.

    Hi all, I'm not sure how to phrase this, but I'll give it a shot. I would like for my users to be able to go to: for example: http://www.mywebsite.com/username/ I can do that easily enough dynamically by creating folders in the root directory, but I don't want to fill my root directory with...
  17. wraygun

    What's wrong with this query.

    I'm attempting to determine if this user exists. But returns "Resource ID #21" for some reason. $strSQL = mysql_query("SELECT * FROM bandinfo WHERE username = 'jampa5'"); echo $strSQL; The connection string is working great and I can add records fine, but I can't seem to wrap my mind...
  18. wraygun

    Getting 256 color or true color icons from a bitmap.

    In thread 222-1012528, strongm posted a very useful Iconize function. Is seems that this will convert the bmp to a 16 color icon. I modified to function to save the new icon. With CreateObject("MSComctlLib.ImageListCtrl") .MaskColor = lTransparantColor .UseMaskColor = True...
  19. wraygun

    Problems deleting files listed in listbox

    I have a listbox populated with the full path of several items from a directory. I'm attempting to delete only the selected(checked) items using the following code. Dim i As Long If List1.ListIndex = -1 Then Exit Sub For i = List1.ListCount - 1 To 0 Step -1 If List1.Selected(i) = True...
  20. wraygun

    FileSystemObject - File Search Question

    I'm using the following code to search for keywords in a filename, then populating a listbox. This can take quite a while if the user decides to search the entire hard drive. My question is: How can I stop this search programatically without raising an error? Private Function FindFile(ByVal...

Part and Inventory Search

Back
Top