1,130 Posted Topics
Re: See... [url]http://www.daniweb.com/forums/thread226782.html[/url] Good Luck | |
Re: Use the printer object... Printer.Print "Some String" Printer.Line 'look it up in help Printer.CurrentX 'see help Printer.CurrentY 'see help Good Luck | |
Re: As with any database and how you view the data contained therein, it is all in the options... When you open your recordset, whether it be ADO, DAO, or RDO, you have the options of static or dynamic, and client or server side cursors. However, the use of these cursors … | |
Re: If you are talking about the title bar buttons (minimize, maximize, close) then in the forms property you can set the controlbox=false and this will remove all three. If you are talking about a command button then its .visible=false. Good Luck | |
Re: Beyond the books and all the tutorials you can find all over the web, there must be some driving force behind your willingness to learn and that usually comes in the form of what you are interested in. So there is the conundrum... What is it that you want to … | |
Re: [code] Print #1, crseid, crseno + "0" [/code] Good Luck | |
Re: have you searched/looked at [url]http://www.connectionstrings.com[/url] ? Good Luck | |
Re: EnumWindows API should work for you. Good Luck | |
Re: If you are just trying to keep user on website abc.com then when you retrieve the text of the controls/window you are monitoring, do you not only need to be able to check [url]http://www[/url].[B]abc.com[/B]/somepage.asp?somequeryvalue=somethingoranother ? Good Luck | |
Re: 1.) FindWindow API 2a.) EnumChildWindows 2b.) Huh? Good Luck | |
Re: Not that I am going to go to the trouble of a class but... '10 names.. Dim Student(1 to 10) As String 'with 10 grades each Dim Grades(1 to 10, 1 to 10) As Integer 'For identifying student no in array Dim StudentID As Integer 'for looping through grades and … | |
Re: This should get you started... [url]http://visualbasic.about.com/od/standalonevb6/l/blnewieinstance.htm[/url] However use the .Navigate instead of .Navigate2 method and to capture the user navigating to another site you will have to create a beforenavigate event. To see how to create such an event use a dummy project and add the webbrowser control (Microsoft Internet … | |
Re: Not even with an RTB but you could fake it. Easiest way would be to use a mono spaced font like courier new and add the required number of spaces between the two sets of numbers. Good Luck | |
Re: So, from what I can understand, you want to pull values from form1 to form2. If this is correct then you can do this a couple of different ways. One of the easiest is to add a standard module and declare a couple of public variables that you will use … | |
| |
Re: [code] Option Explicit Private Sub Form_Load() Dim I As Integer For I = 1 To 10 List1.AddItem CStr(Int(10 * Rnd) + 1) Next I End Sub Private Sub Command1_Click() Dim I As Integer, Tot As Integer For I = 0 To List1.ListCount - 1 Tot = Tot + Int(List1.List(I)) Next … | |
Re: Quite simple with the URLDownloadToFile API... 1. Use API to download file with file name 2. Open with Open Statement, Line Input Function, FreeFile Function, Close Statement 3. Use API to download named file 4. Continue on with rest of program Good Luck | |
Re: [QUOTE=m_coombes;927820]Hi Fauzan The short answer is "you can't" as SQL only handles text, not images. You can however create a table in SQL where you put the links to all the image files. Then in your report you can link the data that you want with that text link. You … | |
Re: You might want to ask this in a C or Java forum... Good Luck | |
Re: Use the application wizard that you can find under Add-ins Good Luck | |
Re: Use your friends (google, yahoo, ask, answer, bing) with keywords vb6 tutorial Good Luck | |
Re: Google, yahoo, bing, ask, answers,... are your friends as is [url]http://www.planet-source-code.com[/url] plenty of examples out there. Good Luck | |
Re: yes access does as it is part of the ansi standard.... Between...And Operator Determines whether the value of an expression falls within a specified range of values. You can use this operator within SQL statements . Syntax expr [Not] Between value1 And value2 The Between...And operator syntax has these parts: … | |
Re: What is your destination OS? If vista or 7 then you need to do some adjustments to make your VB6 program compatable. See... [url]http://www.vbforums.com/showthread.php?p=2807202#post2807202[/url] Then, you need to download the updated installer from MS for VB6 as the PDW will have problems installing on those OS's... [url]http://search.microsoft.com/results.aspx?form=MSHOME&mkt=en-US&setlang=en-US&q=download+windows+installer+1.1[/url] Good Luck | |
Re: Look in the properties of the ADODC (Database or connectionstring I think?). Copy it, paste it, see the path? Now, remove that setting from the properties box and put it in form load as it is. Make sure it still works. Now you should be able to figure out how … | |
Re: A combination of the webbrowser control, DOM, and the URLDownloadToFile API will do this for you. Good Luck | |
Re: Where is the name??? When you create an ODBC DSN you give it a name. I see where you supply which driver but not its name. Then, since you are using ADO, you could if you wanted, use a DSN Less connection string... see [url]http://www.connectionstring.com[/url] Good Luck | |
Re: See... [url]http://www.connectionstrings.com[/url] to find the DSN Less connection string for both. Then you will need to use ADO to connect to one or the other (I'm thinking MySQL), and use the minimal driver info for an insert into query. Good Luck | |
Re: select into or insert into... Good Luck | |
Re: Google, yahoo, bing, ask, answers, ... are your best friends as is [url]http://www.planet-source-code.com[/url] as there are a few examples out there. Good Luck | |
Re: Looks like .NET code but in VB6 we would use App.Path... Good Luck | |
Re: Not quite sure what you are after but the mouse down and mouse up events have a button argument that allow you to test for which mouse button was pressed. For milliseconds look at the GetTickCount API. Good Luck | |
Re: Use and insert into query (Just saw this somewhere on the web so this is from memory) INSERT INTO TableName FROM (dBase IV; Database=PathToDBF) (might be square brackets []) Good Luck | |
Re: I don't see a reason why you are experiencing these symptoms... What OS? What SP? | |
Re: Yes, see this codebank submission by dilettante at vbforums... [url]http://www.vbforums.com/showthread.php?t=532752[/url] or these by CVMichael... [url]http://www.vbforums.com/showthread.php?t=283785[/url] [url]http://www.vbforums.com/showthread.php?t=237843[/url] Then I believe you should be able to find more examples with your friends (yahoo, google, bing, ask, answers, etc.) Good Luck | |
Re: No, you would have to open the one up that contains the sync macro and the easiest way would be to record a macro that does what you want. Good Luck | |
Re: To get started on learning ADO to connect to SQL Server, first create an ODBC DSN (Administrative tools, ODBC Data sources). Next start a new project and use the Data Form Wizard with the options of code to create a form for you. Then, goto [url]http://www.connectionstrings.com[/url] to replace the ODBC … | |
Re: You have two options... use the... .Left .Top .Width .Height Properties or you could use the... .Move Method Good Luck | |
Re: Since you are only reading a single line, store the license key in the registry. As for debugging purposes, you should also add the value of the parameter passed in to this function to you error logging call. That way you will know if for some reason your passing in … | |
Re: For SMS google and yahoo are your friends as there are plenty of examples out there and I'd bet you could find some at pscode.com. As for the database stuff, you could use the Data Form Wizard with the code option to get you started in learning ADO. Good Luck | |
Re: or if it is a partial product id no then... "Select * from table where productid like '" & sometext & "*'" if it is text or if not remove the single ticks (') Good Luck | |
Re: [code] If Dir(PathFileName) <> "" then Kill PathFileName [/code] Good Luck | |
Re: use the format function on the input of the four numbers to format it the way you want to display. Good Luck | |
Re: Yes it is possible to make a generic subroutine to do what you want to, to reduce your code on the instantation but either way it may increase your code on the other end. Use a module, create a public sub with arguements that accepts the form, the frame to … | |
Re: You are probably actually pulling from your cache, use DeleteURLCacheEntry prior to making your download call.... [url]http://vbnet.mvps.org/index.html?code/internet/deleteurlcache.htm[/url] Good Luck | |
Re: There is no format unless you want to enforce one... Conversion function or formulas can be looked up with your frinds (yahoo/google), after all it is just simple math. If you have a colledge dictionary, you might be able to find the formulas in one of the appendixes. As for … | |
Re: [code] Dim MyArray() As String MyArray = Split(List1.List(1), " ") 'or if tab seperated vbTab instead of " " [/code] Good Luck | |
Re: Several ways... Several Questions... Do you want your program to run as a service? Do you know how to open a file and read it in? Do you know how to automate excel? Do you know how to use excel like a database with ADO? Do you know how to … | |
Re: Clear a table, add the captions, run the report against the table. Good Luck | |
Re: Not quite sure what you are trying to accomplish but... [code]MsgBox Join(MyArray, vbNewLine)[/code] Good Luck |
The End.