1,372 Posted Topics
Re: [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? | |
Re: [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 … | |
Re: 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] | |
Re: [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, … | |
Re: [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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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? | |
Re: 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 … | |
Re: :-| 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 … | |
Re: 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 | |
Re: 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 … | |
Re: A Couple of us stay in there fairly regularly.... Toba, Myself, Squires, Big K. | |
Re: 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: | |
Re: 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 … | |
Re: 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 … | |
Re: 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? | |
Re: 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 … | |
Re: *Cracks His Knuckles* Let's see what I got here: [url]http://www.aftermath.net/~coma/echelon.html[/url] | |
Re: 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] | |
Re: 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 … | |
Re: 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. | |
Re: 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 … | |
Re: 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 … | |
Re: 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. | |
Re: 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, … | |
Re: 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) … ![]() | |
Re: 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 … | |
Re: could you elaborate a little more on the subject you are refering to? | |
Re: 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 … | |
Re: 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?) … | |
Re: 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 … | |
Re: 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. | |
Re: 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 … | |
Re: txtDocumentPath = file1.path & "\" & file1.filename ;) | |
Re: 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 … | |
Re: 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 … | |
Re: 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? | |
Re: ;) HKEY_CLASSES_ROOT\http\shell\open\command In VB or VBS, This is real easy to do. | |
Re: To Easy... when I get out of work, I'll let you know. | |
Re: 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? | |
Re: Umn, Yes. Control Panel, Edit Options, Messaging and Notification Heading: Default Thread Subscription Mode and change it to Instant E-mail Notification | |
Re: 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. | |
Re: 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? | |
Re: use javascript, give the picture a name, and then change it's .src property? |
The End.