- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 2
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
42 Posted Topics
Hi, good day, Are there any plugins (free or commercial licensed) with affiliate programs that is able to create a way for members to be able to somehow refer their friends via email/facebook and if that friend signs up, they get a free month of membership. ---------------- Example Scenario: 1.) … | |
Hello, I'm into PHP/Javascript and having some problem here, so just want to seek help from you guys. I have created a page with a textarea. (named Step 1) when the user clicked the "Next" <a></a> link the textarea's value will be stored in a session variable. I've did it … | |
Re: Could you give us some sample data on what kind of data you were searching? -> for example: like typing the Customer ID on a textbox, then perform search and display the customer info. such as last name, first name and middle name on these three texboxes...(Are these is what … | |
Re: For me, It's allegro...and because a lot of tutorials and online forums are scattered over the internet... It's also a beginner friendly tool... you can go here: [url]www.moosader.com/[/url] and here board.moosader.com/ most of their discussion are about Allegro and SDL... Goodluck! :) | |
Re: open first your connection, before executing recordset commands such as Open. GCon.Open "your connection string here" and make sure that the GCon is a global variable so that other forms can access it, and also, make sure that your connection has been opened before your Forms perform recordset operations... I … | |
Hello everyone, I don't where should I post this thread, but since my project (document tracking system) will be using PHP, maybe I just post it here. Would someone tell what should be the features or modules of my project, here are my listing as of now: -a module for … | |
Re: Where is "lista"?, Is it supposed to be "list"? change the !RecordNumber into rs("RecordNumber") and the other fieldnames...respectively -also change you loop, use this instead, this is much faster: [CODE]Dim i as Long For i = 0 To rs.Recordcount - 1 'Your code to populate the listview Doevents Next i[/CODE] … | |
Re: Maybe it's because you place your code at the [B]CloseUp[/B] event of the date picker, it seems that when the CloseUp event is being fired, the [B]Value[/B] property still doesn't have the date selected... why not change the event?, try to put it in [B]LostFocus[/B] or [B]Click[/B] events of the … | |
Re: [CODE] 'Try this after the rs.Open... Set DataGrid1.DataSource = rs.DataSource DataGrid1.Datamember = rs.DataMember [/CODE] | |
Re: Welcome to Daniweb zslwork!, Enjoy your stay here at Daniweb :) | |
I've been thinking about this for a week... Well, I know that this question have been asked so many times, I've also search the forums, but instead of bumping into old threads, I just post a new thread... We are to develop a project, and I just want to seek … | |
Re: Since your Cost variable is a Form-level variable, it's value won't change unless you unload the form, just clear your Cost variable to reset it's value... Cost = 0 ...for your loop....well I really don't know why you have to do it in a loop, as I see in your … | |
Re: As what I understand, you mean is you're trying to populate the combo box, with data coming from the database, there are many ways you can load data within a database... 1.) open a recordset object rs.Open "SELECT * FROM myTable" 2.) then go through the all the records...with a … | |
Re: [QUOTE]can any one help me to write the codings for hospital management in visual basic on basic forms of bloode donation list,admission form,etc[/QUOTE] Yes, we can help you but see to it that we can see what have you done so far with your project, if there's a thing that … | |
Re: You can use this code to check wether a query result returns a macthing record or not [CODE] Dim cn As New ADODB.Connection Dim rs As New ADODB.Recordset 'NOTE: you can use AndreRet's given example above this post... rs.Open "YOUR SELECT STATEMENT HERE", cn, adOpenKeyset, adLockOptimistc, adCmdText If rs.BOF and … | |
Re: why don't you just, convert the input text to lowercase and convert the data from the database into lowercase then compare the two of them... I think you can optimize your code, you may change your SELECT statment into [CODE].Open "SELECT * FROM records WHERE name=" & Trim$(Text9.Text)[/CODE] so that … | |
Re: Your question is not that clear... if you're saying a string value with a newline you can do this: Form2.txtDestination.Text = "My string value" & vbCrLf -> if it doesn't work with [CODE]vbCrLf[/CODE], then try [CODE]vbNewline[/CODE] | |
Re: [B]Question no.1: What are these constants?[/B] These constants are built in or should I say came with the function itself, you can get information about these constants for every functions by looking within the documentation of these functions -> [INDENT]you can look some of these functions in Win32 Programmer's Reference, … | |
Re: For me, since your Payroll system was made in VB6, then you could just use the system requirements(HARDWARE) of VB6. Anyway, it also depends on your system, if your system is capable of, or requires to run in a client/server side, then you must include the necessary equipments to set … | |
Re: I don't really get what your problem is: 1. Is it the code for the calendar control(w/c is stated above) or 2. On how to check if a date selected in the calendar control has already a reservation. Anyway, what control are you using? is it a month control?, datepicker … | |
Re: jeez!!, these problems have been solved many times!! :yawn: I think these questions came from an exam or a homework... post your codes and we will try to help you...:) | |
Re: Yes it's possible, just declare two recordset objects.. and then open those tables on the event that you want... [CODE] Dim rsEmpInfo As New ADODB.Recordset Dim rsTransTbl As New ADODB.Recordset Private Sub cmdSearch_Click() With rsEmpInfo If .STate = adStateOpen Then .Close 'Open the table .Open "SELECT * FROM EmployeeInfo WHERE … | |
Re: if you just want to auto increment the field values then you could: 1.) Open the table 2.) sort the records in ascending order. 3.) move to the last record 4.) get the id field, then add + 1.... This is for simple incrementation., but if you really want your … | |
Re: You might as well try to make the control invisible first, then when all the data has been loaded, set the control's visibility to true, for some controls, it increases the speed... and just to add up if the loop makes your app hang...then try to insert a DoEvents keyword … | |
Re: You can use an API function to play your file.... try to use sndPlaySound function...The computer i'm using has no VB6 installed so I just search the internet...for more details: this link might be useful to you... [url]http://blog.codebeach.com/2008/02/playing-wav-sound-files-in-visual-basic.html[/url] NOTE: files must in .WAV format.... Example: copy and paste this in … | |
Re: Since that your connecting to your database, if the log in is successful, I suggest to store the inputted username in a global variable,..declare the global variable in a BAS module.. Public curUsername as String so that you can access anytime whose the user that is currently logged in... then … | |
Hi everyone, is there a possible way in moving the position of a picturebox anywhere inside an MDI form? [ATTACH]16691[/ATTACH] I tried to use the picturebox's left and top property through code but when the mdi form is loaded, the picture box is still aligned at the top, or at … | |
Re: @psychra: list those search categories in a combobox...then when the user clicks the search button...perform the search for the selected category... then open a recordset query..something like what AndreRet posted above... performing searches in your database, all you just need is to do a select query...and then put some conditions … | |
Hi guys, just wondering, would someone give me some advise of what what kind of software should I develop...maybe just a simple software...or a small software...whatever you call that...a software that would not take a lot of time in the development process...maybe...more or less than 3 weeks...what do you think?.. … | |
Re: Try to use Orbit Downloader.... or if you want it to be online....try KeepVid.com then just paste the vid's url then start downloading... :) goodluck | |
Re: Try this...this will make the report in landscape.. Data Report Landscape (max length: 9 inches.) [CODE] With DataReport1 'Change this to the name of your datareport .Orientation = rptOrientLandscape 'set the orientation before showing the report .Show End With [/CODE] Hope this would help.... Goodluck | |
Hello to All, Good day :) I have developed a vb6 project with Ms Access as it's database. When I use Ms Access as a database, during the package and deployment, I will just have to add the file ".mdb" then all is done... -Ready to install in the client's … | |
Hi to all and good day... I'm still studying about vb 6's data report designer and the data environment...but what i need to know is how can i make or [B]generate[/B] a report at [U]run time[/U]... for example, generate report for the employee names. (names of the employees will populate … | |
Re: Try to change your Provider ,., try to use Microsoft Jet 4.0,.I think it's the latest version..,if there are available service packs on their site...,download it and install it on your machine...My MS Access version is 2003, and my programs works smoothly in both 3.51 and 4.0.... [...Just trying to … | |
Hi guys, good day, just want to ask if there's a function that determines the number of days in a month, In a Roman Calendar, the days in a month are either 30 or 31, but if it's a leap year(every 4 years) the month of February is 29 instead … | |
Hi guys, how can I attach or link a file (an "HTML document") - a saved Web page... that when I click a command button, the "HTML document" will be executed, just like double-clicking it in the explorer window. Just view the attached image file for better understanding about my … | |
Re: You can search it at [url]www.cnet.com[/url] or [url]www.brothersoft.com[/url] if you want to know Visual Basic, you can search some E-books available on the net. It will help you a lot. Visual Basic is a RAD (Rapid Application Design..(if I'm not worng)..) software ..it is where you can just drag and … | |
Re: If you want to use the enter key in you project, for example there is a Log-In form, where there are "username" and "password" textboxes and an "Ok" and "Cancel" button, Then when the user presses the enter key, the Ok button must be activated or the click event of … | |
Re: To: selvaganapathy Is it ok, if i will just use the ReDim Preserve AnArray(10) As Integer does this statement will automatically change the size of the array? so that I will not have to type in the : ReDim AnArray(10) As Integer above it? Thanks in advance...^_^... | |
Re: Go To "File" then at the bottom part of the sub menu bar, you will see the name of your project there like this: [INDENT]Example:[/INDENT] [INDENT][INDENT]"Make Project1.exe..."[/INDENT][/INDENT] There click it then a dialog box will appear, and from there you can set some properties of your program (e.g. The version … | |
Hi! i'm a newbie in VB6, and I'm creating a program that reads arabic numerals and converts the specified Arabic numerals to Roman numerals. Is there a function in Visual Basic 6 that converts Arabic numerals to Roman numerals or vice-versa?:-/ ..,,If none,..would someone , post some code snippets about … |
The End.