2,155 Posted Topics
Re: Thanks for posting a new thread Zeb. Below is a link to a full on tutorial on how to setup a datareport, add labels and textboxes to report and view and print the report. It shows you how to step by step. [URL="http://visualbasic.freetutes.com/learn-vb6/lesson22.15.html"]http://visualbasic.freetutes.com/learn-vb6/lesson22.15.html[/URL] I hope this helps. Please mark the … | |
Re: I found quite a few InStr functions for vb.net, good luck. Thanks for the new thread. | |
Re: Welcome Grant. You will however have to post your question in the WebDevelopment Forum for an answer. Hope you get the answer soon. The forum link is right at the top of this page. | |
Re: As far as I know it should. I have tried a small app a while back on an apple mac and it worked fine. I suppose you just need to ensure that all the run time files for vb6 is included AND if any reference has been made to Windows … | |
Re: You need to determine the X and Y coordinates of your mouse and let the pop up message (hover label) appears where you choose in your code by using these coordinates. | |
Re: Nice way of manipulating strings. There are some easier ways to encrypt and decrypt though. Nice code as well. | |
Re: Hello Nirajs, welcome to Daniweb. I am sure you will find your answers under the relevant forum. Happy coding. | |
Re: Welcome Kermit. I am sure we will hear much more from you in the future. As far as your question is concerned, please post a new thread under Hardware & Software under the OS you currently run. I'm sure someone will be able to assist over there. | |
Re: Amatur, I have asked that your post be moved to Hardware & Software under Windows. I think you need to specify which browser you are using, IE5,6,7,8 chrome etc. I'm sure we can help over there. | |
Re: I have asked the moderators to move your post to PHP, you will find it there in the future where I am sure someone will be able to help. Happy coding. | |
Re: I would think that you would have to get the dates from access, write a function to convert this to gregorian and THEN only show the result. Look at the link below's source code (Right click and select "view source") There is a little function there that you can use … | |
Re: You are referring to a label in a module. Add the form name where it is located - lblresult.Text = result.ToString 'a Label has a caption and not text... frmMain.lblresult.Caption = result.ToString | |
Re: Please post us your query that you use in both forms, with their connection strings. It might be that your connection string in one form is fine whilst on the other form it is non existent or incorrect, resulting on an error on the second page. Also, if any error … | |
Re: Good luck in your studies and in getting that top job. Hard work will get you there. | |
Re: I agree, way to much time on their hands. Awesome with the amount of dogs used though. Some training went into this video for sure. | |
Re: Use the following links search engine to search for whatever terminology you need if not found in the page itself. [URL="http://en.wikipedia.org/wiki/Relational_database"]http://en.wikipedia.org/wiki/Relational_database[/URL] | |
Re: Depends what kind of computer shop, i.e. retail, repair, software, hardware, all combined etc. Give us some more detail to answer your question. | |
Re: You do not have to, although it is much easier to use third party installers as installshield. Just make use of all their features as in creating folders into specific paths you select as well as naming them as you wish. | |
Re: As Tim said above, first determine if there are any files with example in the paragraph, thus using the SELECT statement first. If BOF or EOF is true, there is no record to delete, else if there is a return, THEN delete the file until the EOF has been reached. | |
Re: I for one vote for Sabine as well. She is really good at what she do. But I guess we will never know will we? There was a possible 12 drivers nominated as the Stig before Collins was revealed, including Schumi.... I suppose in another 2 to 3 years the … | |
Re: You at least need to tell us what you and your team has planned thus far. What kind of data, for what kind of store will it be needed etc. Help us to help you.... | |
Re: Welcome. I'm sure you will find everything you need right here. Once you started helping others, you can not stop yourself... LOL | |
Re: a Big hearty welcome to you. I hope you enjoy your stay with us and find all the answers you need. | |
Re: Ryan, do you need to add the data from id, first name to grade in one line, then load the next data line, or do you need it one item to the next? in other words --- [QUOTE]id first name last name degree grade[/QUOTE] OR [QUOTE]id first name last name … | |
Re: Select components, then Microsoft Common Controls 6.0. This will add the status bar amongst other controls to your tools list. In code the following - [CODE]StatusBar1.Panels(1).Text = txtMyUsername.Text StatusBar1.Panels(2).Text = txtMyPassword.Text[/CODE] To add more panels to the status bar, right click on it and select properties. | |
Re: Welcome Bill. Hope your health permits many more visits to our site. Enjoy your stay. | |
Re: Welcome to Daniweb. I am sure you will learn much from this site. We cater for basically every platform. Enjoy. | |
Re: Welcome Vaughan. You are more than welcome to ask. Trust me, there are some funnies some days that requires answers. If you do not feel like asking, maybe help with answers. Enjoy your stay. | |
Re: Welcome to Daniweb. You will find a forum for php/mysql. Hope you find all your answers. | |
Re: Welcome to Daniweb. I am sure you will find all your answers here and help others. | |
Re: Try adding a field to your database where the equipment gets booked out stating "Available" or "Not Available" When you check the availability through data, book it out if the field says "Available" or not... | |
Re: You will have to use the DateDiff function to subtract the In date from the Out date. If the Out Date is a negative, your client is overstaying. There are tons of sample code on the above, google DateDiff in vb6 and a sample closest to your request. | |
Re: I actually don't. Never really got pointed in that direction sooo, will try it out. What I do have is a daily news letter from the Code Project, which covers so many facets of IT and outside AND it comes with loads of humor (see below todays letter), and advertisement … | |
Re: You can use the DateDiff function as in - [CODE]Dim iNumberOfTheWeek As Integer iNumberOfTheWeek = DateDiff("ww", "Jan-01-2010", Now()) MsgBox iNumberOfTheWeek[/CODE] Or the datepart function to return the current week number as in - [CODE]Dim iNumberOfTheWeek As Integer iNumberOfTheWeek = DatePart("ww", Now())[/CODE] | |
Re: This is assuming (TMOAF) that you are saving every loan approved by a user/CO Maker in a database, you can get its recordcount as such - [CODE]Rs.Open "SELECT COMAKER FROM LoansApproved WHERE COMAKER = shaileqs90" Text1.Text = Rs.Recordcount 'LoansApproved will be your database name and COMAKER will be the user … | |
Re: Yes you can - [CODE]Dim objXL As Excel.Application Set objXL = New Excel.Application MsgBox objXL.Version[/CODE] | |
Re: :cool:Welcome Terry. I see we are getting more and more bike lovers here, very cool... | |
Re: Welcome Techie, I'm sure you will enjoy Daniweb. It has so many facets to it, you can get help as a newbie, post your help or just chat in the lounge. Enjoy your stay with us. | |
Re: I am assuming that you are using a data control with the form? If so then you would search as follow - [CODE]datBooks.Recordset.FindFirst "'MySearchCriteria'" 'Notice the hyphens ', this for finding the first record if there might be more than one, or - datMembers.Recordset.FindNext "'MySearchCriteria'" to go to the next … | |
Re: Nice to hear from you again Jemz. As Kinwang said, do it that way will solve your problem, but you will need access to the users PC. Rather make sure that when you compile, the msflexgrid is in your compilation file. Also make sure that the tickbox is selected to … | |
Re: Welcome, and enjoy your time with us. Play around with the menus, Daniweb offer a lot besides the normal help asked/given. | |
Re: Ancie, please show us the loop code you are using to load the grid. Your problem might lie there. | |
Re: Welcome Stephanie, no nickname..:pretty: I love your lifestyle, same here, living it to the fullest. Enjoy your time here at Daniweb. I think you will like our Geek's Lounge, some nice topics popping up from time to time. | |
Re: Welcome Davide. I am sure you will enjoy Daniweb as much as we do, no matter your IT line. Check out our geeks lounge for some relaxation... |
The End.