Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~8K People Reached
Favorite Tags

11 Posted Topics

Member Avatar for JD69

you can also save a record to the registry. write a date of first run there. then every time your program starts, It checks the record you saved in the registry to find out if the 30days trial has finished. The only problem in this type of licensing is when …

Member Avatar for anand.mahato1
0
4K
Member Avatar for betabasic

Please see the image below: [url]http://img140.imageshack.us/img140/1023/vbpicmove.jpg[/url] as you can see. using a timer. the images (image1 and image2) move from right to left inside the picturebox1. I have an idea on how to do it but I dont know how to code it. here's the idea: @ 0 sec Picturebox1 …

0
58
Member Avatar for MaddTechwf

You want to run a program using another program.:-/ try this: suppose you have: [B]main.exe sub1.exe sub2.exe [/B] and you want to run [B]sub1.exe[/B] by clicking button1 in the [B]main.exe[/B]. and your [B]sub1.exe[/B] is inside the folder named [B]Prog[/B]. the directory should be like this: main1.exe Prog/sub1.exe Prog/sub2.exe then use …

Member Avatar for betabasic
0
101
Member Avatar for betabasic

hi! i want to view an rss file using php.. i found this site: [url]http://www.softarea51.com/tutorials/parse_rss_with_php.html[/url] here's the code: [CODE=php] <?php $doc = new DOMDocument(); $doc->load('http://www.softarea51.com/rss/windows/Web_Development/XML_CSS_Utilities.xml'); $arrFeeds = array(); foreach ($doc->getElementsByTagName('item') as $node) { $itemRSS = array ( 'title' => $node->getElementsByTagName('title')->item(0)->nodeValue, 'desc' => $node->getElementsByTagName('description')->item(0)->nodeValue, 'link' => $node->getElementsByTagName('link')->item(0)->nodeValue, 'date' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue ); …

Member Avatar for sourcebits
0
112
Member Avatar for betabasic

Sir.. I want to get the values from web pages using vb.net.. [U]THIS WORKS![/U] [CODE] [B]PHP[/B] <input type="text" name="sample" [B]id[/B]="sample" value="" /> [B]VB.NET[/B] TextBox.Text = WebBrowser1.Document.[B][COLOR="Green"]GetElementById[/COLOR][/B]("sample").GetAttribute("value")[/CODE] but.. what if there's no [B]id[/B]. [CODE] [B]PHP[/B] <input type="text" [B]name[/B]="sample" value="" /> [B]VB.NET[/B] TextBox.Text = WebBrowser1.Document.[B][COLOR="red"]GetElementById[/COLOR][/B]("sample").GetAttribute("value") ??? it cant read the value since …

Member Avatar for Oxiegen
0
3K
Member Avatar for betabasic

I switch from vb6 to vb.net.. and it's not that easy to familiarize .net syntax :) here's what i want.. 1 webbrowser1 1 button1 ( multiline ) 1 textbox1 how can i view the webbrowser1 source code in the textbox1 by click the button? -------------- this can be done in …

Member Avatar for betabasic
0
128
Member Avatar for betabasic

Hello guys.. Please help me on this.. I downloaded this file: [CODE]http://www.cproxy.com/download/cpsetup_en.exe[/CODE] Then I decompiled it using [B]Form Extractor[/B] Software.. But VB6 is the only programming language I know.. How can I convert Delphi to VB6? :(

Member Avatar for anant26692
0
200
Member Avatar for betabasic

How to Save Web Pages in WebBrowser1 using VB6? It's not about saving the source code to text file.. It's the same as clicking [B]File > Save Page As...[/B] in Firefox. :)

Member Avatar for vb5prgrmr
0
288
Member Avatar for betabasic

Help! :D in firefox .. we use right click then a menu will come out ( like Back, Reload, This Frame .. etc ) in vb6 .. i want to do it the same using a command button .. the command1_click is equivalent to rightclick in webbrowser1 .. help me …

0
52
Member Avatar for betabasic

Hi! Is there a way I can run and close firefox using vb6? I want to create my own proxy switcher program.. But it requires Firefox to restart after changing the proxy settings.. It is not cool if I manually restart firefox.. Help please. :?:

Member Avatar for vb5prgrmr
0
68
Member Avatar for betabasic

Im a total newbie here.. :) I have a file in [B]C:\Program Files beta.txt[/B] inside the file [B]beta.txt[/B]: ------------------------------- Line1 LineUser=12345 LinePass=1234 Line4 Line5 -------------------------------- I have two textbox.. Text1 is for LineUser input (fixed to 5 characters) Text2 is for LinePass input (fixed to 4 charaxters) Example: LineUser: [ …

Member Avatar for betabasic
0
555

The End.