Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
2 Endorsements
Ranked #621
Ranked #864

42 Posted Topics

Member Avatar for PoisonedHeart

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.) …

0
197
Member Avatar for PoisonedHeart

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 …

Member Avatar for PoisonedHeart
0
768
Member Avatar for problematic:)

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 …

Member Avatar for sai.pawar.p
1
2K
Member Avatar for gunbuster363

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! :)

Member Avatar for maninaction
0
196
Member Avatar for satti

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 …

Member Avatar for reygcalantaol
0
170
Member Avatar for PoisonedHeart

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 …

Member Avatar for PoisonedHeart
0
216
Member Avatar for undersurvival

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] …

Member Avatar for AndreRet
0
1K
Member Avatar for Naveed_786

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 …

Member Avatar for AndreRet
0
214
Member Avatar for Naveed_786

[CODE] 'Try this after the rs.Open... Set DataGrid1.DataSource = rs.DataSource DataGrid1.Datamember = rs.DataMember [/CODE]

Member Avatar for AndreRet
0
147
Member Avatar for createwealthnet
Member Avatar for AirForceOne
0
54
Member Avatar for zslwork
Member Avatar for AndreRet
0
180
Member Avatar for PoisonedHeart

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 …

Member Avatar for AndreRet
0
107
Member Avatar for bob3

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 …

Member Avatar for AndreRet
0
160
Member Avatar for ash07

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 …

Member Avatar for AndreRet
0
211
Member Avatar for saranyashanthi

[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 …

Member Avatar for PoisonedHeart
0
83
Member Avatar for Naveed_786

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 …

Member Avatar for AndreRet
0
259
Member Avatar for nagatron

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 …

Member Avatar for nagatron
0
226
Member Avatar for sureshprg

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]

Member Avatar for PoisonedHeart
0
141
Member Avatar for exception

[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, …

Member Avatar for PoisonedHeart
0
175
Member Avatar for abelingaw

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 …

Member Avatar for PoisonedHeart
0
1K
Member Avatar for problematic:)

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 …

Member Avatar for PoisonedHeart
0
221
Member Avatar for fakhrealam

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...:)

Member Avatar for jhai_salvador
0
266
Member Avatar for ferkevin04

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 …

Member Avatar for PoisonedHeart
0
81
Member Avatar for ferkevin04

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 …

Member Avatar for kinwang2009
0
646
Member Avatar for AncieV

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 …

Member Avatar for PoisonedHeart
0
196
Member Avatar for gertails

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 …

Member Avatar for AndreRet
0
501
Member Avatar for Krs13

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 …

Member Avatar for Krs13
0
179
Member Avatar for PoisonedHeart

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 …

Member Avatar for Aslam Mansoor
0
682
Member Avatar for psychra

@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 …

Member Avatar for PoisonedHeart
0
128
Member Avatar for PoisonedHeart

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?.. …

Member Avatar for vb5prgrmr
0
466
Member Avatar for WeBuyAny

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

Member Avatar for PoisonedHeart
0
201
Member Avatar for gms_019

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

Member Avatar for gms_019
0
86
Member Avatar for PoisonedHeart

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 …

Member Avatar for PoisonedHeart
0
189
Member Avatar for PoisonedHeart

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 …

0
85
Member Avatar for Israelsimba

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 …

Member Avatar for AndreRet
0
165
Member Avatar for PoisonedHeart

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 …

Member Avatar for elkhartlynn
0
158
Member Avatar for PoisonedHeart

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 …

Member Avatar for AndreRet
0
991
Member Avatar for Clueless86

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 …

Member Avatar for debasisdas
0
124
Member Avatar for MansoorAhmedK

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 …

Member Avatar for PoisonedHeart
0
222
Member Avatar for firoz.raj

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...^_^...

Member Avatar for PoisonedHeart
0
217
Member Avatar for lakshay

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 …

Member Avatar for PoisonedHeart
0
92
Member Avatar for PoisonedHeart

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 …

Member Avatar for PoisonedHeart
0
146

The End.