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...
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...
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...
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...
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...
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"]...
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...
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...
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...
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...
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...
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...
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...
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...
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>...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.