thanks that worked
Type: Posts; User: isnoend07
thanks that worked
I am trying to add some padding to the text and a margin to an image inside a division and it doesn't work
The P tag also includes an id for a bookmark
What is wrong with this ?
<p...
I have a css header with 3 divisions floating side by side
The images on the left and right sides need moving down in the divisions
I could move them down by giving them a margins or paddings on...
Ihave an image with text below inside a centered Division and want to move them 30px to the right.
What is the best way, both these seem to work. which is best ?
<span STYLE="margin-left: 30px">...
i have to spread some reputation around
thanks that clears things in my mind
i am new to css
i posted a css question on another site
move centered text 10px to the right that is inside a centered division
I did not get any answers, but found the solution myself eg;...
I am changing my doctypes to html5
<!DOCTYPE html>
is the <html> tag still necessary ?
<div style="float:right"> did the trick
I have a existing 2 column table with menus in the first column and content in the 2nd column.
How can I add a 120x600 right aligned add to the 2nd column..
I have many pages like this and should...
Hi
Thanks for your help
I have put your code in a loop, but keep getting errors like this:
Private Sub cmdStart_Click()
Dim i As Integer
For i = 0 To List1.ListCount - 1
Call...
thanks for your help on this
I have been away a few hours,but am now getting back to the code. i have handled the duplicates(see post #17)
i notice that a message box opens when found, but what if...
I am fiddling with your code this seems to be what i need and seems to work
I am adding to not include duplicates+
added another listbox with about 50 sites i am linking to that get filled from my...
I added this by Hack:
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" _
(ByVal hwnd As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
lParam As Any) As Long
...
for some reason i have stopped getting email notifactions on this thread. I will investigate
thanks for adding that
you are right about duplicates, but it did find "gardenbuildings.com"
does it ever stop?
thanks for adding that
The problem with adding a html page. It adds another step in link building process and the link may have been moved to another page.
I have found this;...
That was a typo I meant too bad it did not work. If it did work this post would have never happened, did not realize it was so difficult to get all the page urls when you know the Home pages url
thanks for adding that. that would work if i could count on their main sites having links to all their pages, but i know that won't work. The spider will work sending it one page at a time and check...
i bought a program a few yrs ago that did what i needed, but now it crashes with a type mismatch and get no response from the vendor. I bought another a few days, but already got a refund because of...
I found this but don't know how to use it ;
http://www.example-code.com/vb/spider_simpleCrawler.asp
thanks
How would i do that ?
Example:
http://www.diyplas.co.uk/
I am trying to determine if websites i have exchanged links with are still linking back to my site.
the link back to me could be on any page so i need to search every page until found
i have all...
Thanks for adding that I have decided to go with this:
Sub main()
Dim str As String
Dim run As String
str = "Win Runs: 7329 high dollar amount 41.25 low credit $12.47 Result $41.48"
runs =...
thanks that works
Values are loaded from a file as strings
i am trying to get values from long strings of different lengths in a listbox;
Win Runs: 7329 high dollar amount 41.25 low credit $12.47 Result $41.48
Loss Runs: 6856 high dollar amount 25.80 low...
Don't understand
app gets loaded
Pressing the start button selects 20 random numbers
Pressing start again the 20 numbers are erased and another 20 are randomly selected
Repeat, repeat etc
i...
i noticed you put the randomize in the form load. my program can be ran thousands of times and each time it produces 20 random numbers.
Would it not need to be called before each run ?
Don't know what seed is. Hired a coder to write the code. it looks like this:
Const DRAWN_NUMBERS As Integer = 20
For i = 1 To DRAWN_NUMBERS
Randomize
thisIndex = Int(((80 - i) *...
I have created a keno game that selects 20 numbers out of 80 using the Randomize function.
The program also tracks which numbers have been selected the most.
after running the app hundreds of...
i used this:
Public Function DisectText(ByVal texttodisect As String) As Boolean
Dim str1 As String
Dim str2 As String
Dim strval As Long
Dim part1 As Boolean
Dim part2 As Boolean...
Example:
Function DisectText(sText As String) As Boolean
Dim TextPart As String
Dim NumberPart As Long
'example 20K1W1E76N31606
End Function
need to verify that the user enters the correct...
not using a db
got it like this:
Dim OneUse as integer
MyString = CStr(OneUse)
i want this encryption to count the number of times a program is run(integer)
how can i write this ?
Good idea
Thanks
thanks that fixed the issue
Not sure why you're using width for one form and scalewidth for the other, etc.
i was trying different things
i am trying to center a smaller form over the calling form
like this:
code in the smaller form
Public Sub CenterMe(frm As Form)
Me.Left = frm.ScaleWidth / 2 - Me.Width / 2
Me.Top =...
Thanks i worked it out
Private Sub Timer2_Timer() 'expand
Dim intWidth As Integer
Dim intHeight As Integer
With picOpenOptions
If .Width + 90 > 2025 Then
intWidth = 2025
Else