1,372 Posted Topics

Member Avatar for NewVBguy

[QUOTE=NewVBguy]Hi, Thanks for your response but i just got the solution of my problem. Cheers!! Newvbguy[/QUOTE] If it's not a bother, would you mind posting how you went about accomplishing this task?

Member Avatar for Comatose
0
161
Member Avatar for william_stam

[CODE] <HTML> <HEAD> <SCRIPT LANGUAGE="Javascript"> url = "http://www.daniweb.com"; </SCRIPT> <BODY> <A HREF="#" onClick="setTimeout('window.location = url', 5000);">Some Link</A> </BODY> </HTML> [/CODE] This should effectively delay the page change by 5 seconds. If you want to change the number, it is in milliseconds, so 1 second is 1000. Also, all you have …

Member Avatar for Comatose
0
95
Member Avatar for Lapari

Give This A Shot: [CODE] Module Module1 Public Sub Main() Dim About As New Help_AboutForm About.topmost = true Dim main As New Form1 main.topmost = true End Sub End Module [/CODE]

Member Avatar for Comatose
0
77
Member Avatar for bennyp

[QUOTE=bennyp]My program is currently 980mb is there any way i can make this smaller?[/QUOTE] What is it that your program does? Is it a game, where you are using a whole bunch of images, and if so, what is their format? Is this a zipped file, we are talking about, …

Member Avatar for NewVBguy
0
113
Member Avatar for TimmyRaa

[QUOTE=TimmyRaa]I have a form where you select a player's name from a drop down list, and there are 6 input boxes next to it for their separate scores and a box at the end for their total score (all the separate scores summed). I want to have the form dynamically …

Member Avatar for TimmyRaa
0
132
Member Avatar for Lapari

Well, changing the form color is pretty easy, it's just: [CODE] Form1.BackColor = vbBlack [/CODE] For example..... you could use RGB [CODE] form1.backcolor = rgb(75, 110, 256) [/CODE] But the key is: form1.backcolor. Use the menu editor to make a menu, then in the click event, change the form to …

Member Avatar for Lapari
0
252
Member Avatar for NewVBguy

When working with the centering portion of this, what you may have to do is figure out how big the form is, and then use spaces in a for loop of some kind... sort of like, figure out how big the form is, divide it in 1/2 and that would …

Member Avatar for NewVBguy
0
150
Member Avatar for CHRISTopherX

If I'm not misunderstanding, you want to make a web page, that works like a guest book right, or a news page or something that is virtually dynamic right?

Member Avatar for smoked_apart
0
159
Member Avatar for stackOverflow

You can't save your files, because as far as knoppix is concerned, your CD IS the hard drive. It already actually mounts the hard drive... so where are you trying to save the files to? If you look around, under the mnt folder... or a similar folder, you may find …

Member Avatar for Thong_Ispector
0
808
Member Avatar for jaso55

:-| I have an idea what you are refering to..... are you talking about adding your own custom menu to a program like excel? So that you can click something along the lines of "My Menu" and get a menu of your own? If This is the case, then drop …

Member Avatar for Comatose
0
92
Member Avatar for tricia

Post the code? Also, I don't recall how much of a difference it makes, but you might consider changing (if it's in a module) public to global. so: global varname as whatever

Member Avatar for tricia
0
178
Member Avatar for shelly121

I'm guessing lblmortgage is a label (not a textbox) and therefore, would require the use of .caption instead of .text and I'm guessing it's not a variable... so you should also add .caption to the others.... such as [CODE] Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles …

Member Avatar for shelly121
0
141
Member Avatar for ian2975

A Couple of us stay in there fairly regularly.... Toba, Myself, Squires, Big K.

Member Avatar for Total NONgeek
0
141
Member Avatar for Kiba Ookami
Member Avatar for Dani

I actaully love the changes, I'm just not used to them. They only one that I have to take with a grain of salt is.... is that I'm now known as a posting whiz.... as opposed to a techie whiz. I liked being a techie :cool:

Member Avatar for Dani
0
270
Member Avatar for sam1

Using their IP address is generally a bad idea. This stems from the fact that not everyone has a static (permanent) IP address. People who use dial up, for instance, will not always get the same IP (in fact, it's usually different). So, what happens if you get 2, or …

Member Avatar for mcldev
0
117
Member Avatar for ghaney1

Wow. That one made me think. The solution is to use pure API Calls to create the file. Which means, forget about the whole: [CODE] open "yada.txt" for input as #1 'Stuff close #1 [/CODE] You'll Have to use: [CODE] public Const GENERIC_WRITE = &H40000000 public Const GENERIC_READ = &H80000000 …

Member Avatar for ghaney1
0
1K
Member Avatar for cwickam

Simply? Well, no. Is this being done with VB6 or .NET? Is This using Flat (text) files or database systems (ado, sql?). Is there a deadline right now?

Member Avatar for cwickam
0
125
Member Avatar for armygirl2008

If you can remember the name of your other account (probably "owner" or something similar) then you should be able to go to: my computer c drive (or whichever drive it's installed on) documents and settings and then into the account name that was previously used (in the first windows …

Member Avatar for Comatose
0
160
Member Avatar for samwelly

*Cracks His Knuckles* Let's see what I got here: [url]http://www.aftermath.net/~coma/echelon.html[/url]

Member Avatar for Comatose
0
104
Member Avatar for april_er

Look up "sockets" or "winsock" in vb.net at google.com [url]http://www.google.com/search?hl=en&q=%2B%22vb.net%22+%2B%22sockets%22&btnG=Google+Search[/url]

Member Avatar for Comatose
0
95
Member Avatar for Nihar
Member Avatar for tbartoli

The object file is a file of basically compiled binary. You can't view it in an understandable way..... you could use a hex editor, or some other means of numbering to know what is going on, but for most people.... you might as well consider the object file the same …

Member Avatar for Comatose
0
114
Member Avatar for nikkisboricua

Yeah... I can do that for you. Some of the things that you request, are going to require something more than a registry tweak... but I'm sure it's something that can be done.

Member Avatar for sohaib
0
111
Member Avatar for dreyes67

Yeah, Don't close the program.... use a timer control .... you can even use a form to set the "refresh rate" of the timer control. have a box on the form (a textbox) and a button on the form (set rate) and make it in seconds.... then in the code …

Member Avatar for dreyes67
0
197
Member Avatar for Seyha Eng

the problem is you are trying to launch a PDF file, not an EXE file. If you want to open the pdf file, you'll have to use the path to adobe. Something like "c:\program files\adobe\adobe.exe aa.pdf" or something along those lines. the Shell function doesn't decipher extentions. It runs an …

Member Avatar for Comatose
0
395
Member Avatar for ncc1701d

Do you have any code already written, if so, send it to me. Also, are you trying to dock your app TO THE SIDE OF THE SCREEN, or dock your app to the right side of ANOTHER APP? This, I need to know.

Member Avatar for Comatose
0
170
Member Avatar for caperjack

I'm using it.... but in my personal and humble opinion, it sucks really bad. It has a huge library of signatures, but it's been my experience that's it's live shield really is no good. I also found that while it's trying to remove a lot of BHO's and other crudware, …

Member Avatar for caperjack
0
202
Member Avatar for Peter
Member Avatar for lestont

You can READ the files, but I'm pretty darn sure you can't delete or over-write, or anything like that to the files. But You make sure the hard drive is in the computer, (as a slave or something) and boot to fedora. Then you mount the NTFS partion (With mount) …

Member Avatar for TKSS
0
188
Member Avatar for nicole0904

If I understand you correctly, you want to have a sequential file... that file will have a path in it, to a picture file, that you will load, is this correct? [CODE] dim seqfile as string dim tmpvar as string open seqfile for input as #1 line input #1, tmpvar …

Member Avatar for Comatose
0
210
Member Avatar for april_er
Member Avatar for april_er
0
162
Member Avatar for shutupdave

Use a timer control. Set The interval to 20 seconds (20000, it goes in milliseconds), and when the timer control fires, you know 20 seconds have elapsed. Another solution, is to have the timer execute every 1 second (1000), and then keep an integer variable. Set The integer variable to …

Member Avatar for shutupdave
0
101
Member Avatar for huckbird

I'll tell you what, I'm about to send you an e-mail.... I'm going to need the vb source code, and the excel document (I'm not 100% sure what you are trying to accomplish.... are you getting the passwords from an excel document, or are you saving the voted data there?) …

Member Avatar for huckbird
0
167
Member Avatar for si.

To my knowledge, This isn't a very easy task. The Reason is that programs don't always keep all their files in one folder. They put stuff in system and system32, and sometimes a couple of other places. IF, however, you can find all the dependancy files (files needed for the …

Member Avatar for Catweazle
0
141
Member Avatar for garlam

the html page is probably being run as "nobody" or another user of the sort. do an ls -l on the file you are trying to remove, and check the permissions, and the ownership of the file. If the permissions are not set correctly.... it won't remove the file.

Member Avatar for Comatose
0
109
Member Avatar for evil_dude_01

I'm not 100% sure what you are doing, or what you want (I guess I don't understand autonumber) if you want me to write a function in VB for you, to generate a random number between such and such, that's no sweat. If it's something more complex, that's no problem …

Member Avatar for evil_dude_01
0
160
Member Avatar for StephenHancox
Member Avatar for gidgetcracks

I don't have vb.net. I have vb6 (which, in my opinion is better). I realize this doesn't help you with your problem, so take into consideration this idea. While logically, you would expect the LEN function to return the number of elements in your array... in my experience... it does …

Member Avatar for Comatose
0
163
Member Avatar for isundby

It sounds to me like some messed up DLL files. Truth is, I have no idea how to go about fixing the problem, but in my experience, the only thing that has helped me to overcome such problems, is to remove XP (fdisk, delete the partition, make the partition, format …

Member Avatar for isundby
0
154
Member Avatar for dvr

what do you mean .... changed? You altered the EXE? (if so, check out: [url]http://www.users.on.net/johnson/resourcehacker/[/url]), or you went into the registry and changed which program loads as explorer?

Member Avatar for DMR
0
112
Member Avatar for cancer10
Member Avatar for mcclth
Member Avatar for Comatose
0
163
Member Avatar for dazw1
Member Avatar for kernel
Member Avatar for stharmon

I understand what ; does on a command prompt and what not. What I DON'T understand, is how you were able to pass the password to SU with multiple commands (using ; )? So how'd you do it?

Member Avatar for stharmon
0
383
Member Avatar for ian_tec234

Umn, Yes. Control Panel, Edit Options, Messaging and Notification Heading: Default Thread Subscription Mode and change it to Instant E-mail Notification

Member Avatar for ian_tec234
0
47
Member Avatar for rex_b

Truth is, I see a moderator closing thread based on it's content in relationship to what this site is all about. I'll give you my answer, but honestly, I don't expect this thread to live long. I'm a Christian.

Member Avatar for alc6379
0
67
Member Avatar for Dani

I'm not 100% Sure that one form is "more proper" than the other. I do realize that one form is more readable.... but I don't know if one is better syntax than the other?

Member Avatar for knight42
1
4K
Member Avatar for faisyshah

use javascript, give the picture a name, and then change it's .src property?

Member Avatar for Deepa
0
83

The End.