1,372 Posted Topics

Member Avatar for FullCollapse

Hmn.... read this thread: [url]http://www.daniweb.com/techtalkforums/showthread.php?t=40128&highlight=shortcut[/url]

Member Avatar for Comatose
0
102
Member Avatar for punkrockbboy

What's the path to the file? It's on the desktop? Also, are you able to do anything to the folder, such as set attributes (system, hidden, read-only) or can you do absolutely nothing with it?

Member Avatar for punkrockbboy
0
422
Member Avatar for hbmarar

Ok, let's not bump old threads... if you have a question, post a new thread, and we will try to get you answered..... did you read the sticky thread? [url]http://www.daniweb.com/techtalkforums/thread41057.html[/url]

Member Avatar for Comatose
0
138
Member Avatar for ATS

VB can handle it by itself.... and would be easier than learnng the SQL Query's required to generate the kind of data and report that you want to do.... I will say to each his own. How I would do it, is I would build a VB program to handle …

Member Avatar for extofer
0
105
Member Avatar for tinartist

Post a [URL="http://www.majorgeeks.com/download3155.html"]hijack this [/URL]log in the spyware and nasties section: [url]http://www.daniweb.com/techtalkforums/newthread.php?do=newthread&f=64[/url]

Member Avatar for DMR
0
173
Member Avatar for MrScruff
Member Avatar for tycho

The reason that's so crazy, is that the rabbit hole leads to wonderland... *mumbles something about space-time continums and wormholes* "Oh, by the way, if you'd really like to know, he went that way" - Cheshire

Member Avatar for Dani
0
258
Member Avatar for Comatose

is it just me, or is this thread empty: [url]http://www.daniweb.com/techtalkforums/thread47461.html[/url] I have recently answered a post in that thread, and now the screen shows blank..... any ideas?

Member Avatar for Comatose
0
140
Member Avatar for bybruno

You can monitor a directory (it doesn't appear that you can monitor just a single file). But if you monitor the directory that contains the file, whenever any file in that directory gets modified, your program will get alerted. This rely's on an API call to ReadDirectoryChangesW, check this link: …

Member Avatar for Comatose
0
140
Member Avatar for cheng
Member Avatar for patmac_100

Hmn: [url]http://www.a1vbcode.com/app.asp?ID=3102[/url] [url]http://www.cutepdf.com/Products/CutePDF/writer.asp[/url] [url]http://forum.planetpdf.com/wb/default.asp?action=9&read=54924&fid=3[/url] [url]http://www.experts-exchange.com/Web/Graphics/Adobe_Acrobat/Q_21764705.html[/url]

Member Avatar for Comatose
0
181
Member Avatar for texandude

You'll have to post your code, or attach your project.... if I understand you correctly, I don't understand why, when they change the value of the variable, you can't write the new value to the database at the same record location..... then there is no comparison needed, the database has …

Member Avatar for Comatose
0
177
Member Avatar for agrothe

It all depends on what you want to do. If the server's processor (server in context of the computer hosting the server software) is dedicated to running your server app, then I don't see the harm in having the server do it. However, if you are using the server machine …

Member Avatar for agrothe
0
207
Member Avatar for Smooth_411_2000

Are you talking about making VB click one of it's buttons, or do you want to click buttons in another app's program? You can make VB click one of it's own buttons by simply setting it to true. So, pretend you have form1, and 2 buttons (command1 and command2) command2 …

Member Avatar for Comatose
0
73
Member Avatar for jchaike
Member Avatar for cabp

I'm not so sure that an OCX that is out of date would give you an out of memory error (unless the memory management routine that it's using is calling API's or using a method that works differently now). I would like to see the form_load code.... if you figure …

Member Avatar for Comatose
0
2K
Member Avatar for comp_sci_guy

[QUOTE=comp_sci_guy]Hello :) , I am thinking of developing a small peer to peer fire sharing application. [/QUOTE] Cool, I like sharing fire.

Member Avatar for comp_sci_guy
0
277
Member Avatar for ArNy

Visual Basic and C++ are entirely different languages. It boils down to syntax and control. For example, a standard test to see if the variable X is equal to 10, will look like this in Visual Basic: [CODE]if X = 10 then msgbox "yes It is" end if[/CODE] While in …

Member Avatar for Comatose
0
148
Member Avatar for RichardSchollar

Hmn... [url]http://www.di-mgt.com.au/strconv.html[/url] [url]http://www.vb.mvps.org/hardcore/html/whatisunicode.htm[/url] and [url]http://blogs.msdn.com/michkap/archive/2005/10/28/486019.aspx[/url]

Member Avatar for Comatose
0
114
Member Avatar for compeat

Programming something more constructive, I might help with..... but virii No.

Member Avatar for DMR
-1
2K
Member Avatar for arunbnair
Member Avatar for NewVBguy

if you don't know how to use VB with Access/Sql, I suggest you read the sticky thread: [url]http://www.daniweb.com/techtalkforums/thread41057.html[/url] to get a stronger understanding of ADO. Once you are comfortable with that information, you would need to use the OpenSchema method to get the adSchemaTables.... I guess it would be something …

Member Avatar for NewVBguy
0
119
Member Avatar for deannaspencer
Member Avatar for Smooth_411_2000

You'll want to look into the "sendkeys" command. This command allows you to send keystrokes to applications (shift-end, ctrl-c, ctrl-v). Keep in mind, sendkeys only sends keystrokes to the currently active (foreground) window. So, you'll want to make whatever window you want to mess with the foreground first, with either …

Member Avatar for Comatose
0
210
Member Avatar for Rikus

Yes, but are you refering to a static IP (like one that is assigned by you, and only changes when you want it to) or a dynamic IP like DHCP?

Member Avatar for Comatose
0
205
Member Avatar for Sinha's

I don't understand what you are asking. If you are asking me how to see if a file exists on the hard-drive, then DIR is the option. If it's not working for you, perhaps you could post some code, or attach your project. If you are asking how to see …

Member Avatar for Comatose
0
142
Member Avatar for arunbnair

You simply can not.... not without changing the stardard font of windows. A msgbox is a modal window that uses the stardard windows system font. Period. I've tried everything known to man to change the font of a msgbox, and it boils down to having to recode. For the future, …

Member Avatar for Comatose
0
88
Member Avatar for ashneet
Member Avatar for Maroll

Check it out, [URL="http://en.wikipedia.org/wiki/Vbscript"]VBScript[/URL] is a scripting language (which means, it does not need a [URL="http://en.wikipedia.org/wiki/Compiler"]Compiler[/URL] in order to run). VBScript was made originally for use on the system, to replace DOS Batch Files (in a sense) with the windows feel of batch files. It uses the same BASIC Syntax …

Member Avatar for Maroll
0
339
Member Avatar for naramis

I'm not sure what you are asking.... are you wanting VB to consolidate the files, or are you wanting VB to control the program that consolidates the files? Are these just text files, or are you getting this from the SQL? Or are there files on the computer that will …

Member Avatar for Comatose
0
121
Member Avatar for TerryWood

This should word: click start click run type in "regedit" (without the quotes) in regedit, find and open "HKEY_CLASSES_ROOT" scroll all the way down to the HTTP folder, and open it. make sure the "open" folder is highlighted [B]right click[/B] on the highlighted "open" folder, and choose the export option …

Member Avatar for Comatose
0
204
Member Avatar for reedtwo

Welcome to Daniweb Michelle aka reedtwo ;) I hope you enjoy yourself, and become a regular!

Member Avatar for reedtwo
0
45
Member Avatar for softwarecaz

Well, the difference between a thin client and a fat client is: thin client: the bulk of processing is done on the server fat client: the processing is done on the client A thin client usually has no hard-drive, and loads it's OS and software from a server.... a lot …

Member Avatar for Comatose
0
114
Member Avatar for warpeace2006

While I push for pulling out of Iraq, you have to ask yourself.... what happens if we leave? Do you think it would be right to show up, take over, and bail? Do you believe that we have trained enough Iraqi Police and Military to be able to stand up …

Member Avatar for server_crash
0
633
Member Avatar for Dazpenn

Make sure to read the sticky thread: [url]http://www.daniweb.com/techtalkforums/thread41057.html[/url] to get you started. Read this page for info on the error message: [url]http://support.microsoft.com/kb/155666[/url]

Member Avatar for Comatose
0
163
Member Avatar for Captain Haddock

As far as I know you can't. I believe you could port your source to VB6 with minor modifications, and then compile the EXE from VB, but I'm pretty sure that VBA (macro's and such) are interpreted, and must remain that way.

Member Avatar for Captain Haddock
0
116
Member Avatar for candy01

That was freaking awesome, I'm giving rep points for that one Iamthwee.

Member Avatar for candy01
0
459
Member Avatar for mungelwar

Sounds like a homework assignment to me..... or a final year project. Bite off more than you can chew?

Member Avatar for Comatose
0
135
Member Avatar for Fyro

hmn, if you are quick enough, you could hit the print screen key on the keyboard (next to the f12 key). Then you click start, run... type in: mspaint, then click edit paste...... but that's kinda tedius. I'll keep looking around for a better solution (I know that you could …

Member Avatar for Fyro
0
430
Member Avatar for sjklein

well, you can check this way: [CODE] if (top.location != location) { alert("In A Frame"); }[/CODE] But I'm not sure if you can do it like a conditional compiler directive. I know you could write to the page with something fun like: [CODE]document.write("<Script Language='javascript' SRC='http://page.com/somefile.jsp'>");[/CODE] but I know that you …

Member Avatar for tgreer
0
353
Member Avatar for michael123
Member Avatar for TiJay
Member Avatar for TiJay
0
125
Member Avatar for purplegerbil

That's actually a really good way of doing it (if you are doing it programmatically) but I'm sure if you manipulate the word object (create an instance of Word with VB [[INLINECODE]set wordvar = createobject("Word.Application")[/INLINECODE]]) then you should be able to copy everything in it into a variable (using a …

Member Avatar for sosco
0
193
Member Avatar for Smooth_411_2000

You can reference one form from another by simply using it's name. If you want to make form2 visible for example [INLINECODE]form2.visible = true[/INLINECODE] will make form2 visible.

Member Avatar for Comatose
1
102
Member Avatar for Comatose

When I search all the forums (to get kind of an over-view of what's happening on the site) when a thread has more than 1 page of posts, I USED to be able to click onto the other page from that listing directly...... that doesn't seem to be there any …

Member Avatar for Dani
0
196
Member Avatar for sjklein
Member Avatar for eltommyo
Re: Eek!

What kind of internet connection speed are we talking about? What are the buffer sizes set to on windows media player? If you send me the URL, I can tell you how it runs on my box.

Member Avatar for Comatose
0
181
Member Avatar for remeshr

I think on XP (I don't have a password, I just turn it on and get my desktop), but if you are set up to log on, with a user and password, after you zip the file, I think you can go to properties, advanced, and then click "encrypt contents …

Member Avatar for Comatose
0
183
Member Avatar for SYEDHANIF

I'm not 100% sure what is happening in the PHP Script. It looks to me like it defines some variables, and has a constructor function (called Astro), which does nothing but assign the value 0 to the members of the astro class. 1 scalar and 5 arrays. Then, there is …

Member Avatar for Comatose
0
196
Member Avatar for robertlees
Re: Beep

Nothing as simple. Beep is merely a command that plays a sound through the PC speaker. It varies from system to system (though, it seems to have been synchronized by the os), and is usually used strictly for "oops" sounds. You could use the [URL="http://www.allapi.net/apilist/PlaySound.shtml"]Play Sound[/URL] Api Call, which gives …

Member Avatar for robertlees
0
122

The End.