2,155 Posted Topics
Re: This is a VB.Net question, I have asked the mods to move it from here (vb4/5/6) to .Net. | |
Re: I'll try and paste the solution here tomorrow, I'm going home now.:) Thanks for opening a new thread and marking the previous. | |
Re: Software is a wide based platform. Are you going to develop only, sell software, is it web based or desktop based etc? | |
Re: It seems that you are trying to add a new record to your table, but there is nothing (no data) to add. You need to show us what code you have used to execute the INSERT statement. | |
Re: Try to change your form Redraw property to true. This should eliminate most of the flicker. The problem is that the flicker is created by your timer, it loads the pic every time the call is made, hence the flicker. A quick work around would be to add another timer … | |
I'm not sure how to write this in php, so any help will be appreciated - In vb6, I would have had a function similar to this code - [CODE]Function GetReserve() Dim xAmount As Integer, xValue As Integer Select Case xAmount 'Where xAmount is an Integer Case Is = 0 … | |
Re: To read from a text file, try the following - [CODE]Private Sub Reading_Click() Dim variable1 As String Open "c:\My Documents\sample.txt" For Input As #1 Input #1, variable1 Text1.Text = variable1 Close #1 End Sub[/CODE] At Text1.Text you can now check if a word exists etc. The above is a sample, … | |
Re: I'll work on this by converting my vb6 code to .net and i will post as soon as I can. Feel better now?;) You guys gave me a good laugh!:) | |
Re: Use the exact same code you have under cmdAddEntry button WITHOUT the .AddNew - [CODE]With DataEnvironment.rsDataTable 'Remove AddNew here... !Date = txtDate !CodeNo = txtCodeNo !DealerName = txtDealerName !TruckNumber = txtTruckNumber !Product = txtProduct !Quantity = txtQuantity !NetPrice = txtNetPrice !Commision = txtCommision !Rent = txtRent !Labour = txtLabour !ReturnExpense … | |
Re: :) Small things normally causes the worst headaches. Glad you could solve this. | |
Re: The "3D" look of charts can be used in vb6 by making use of the excel API and chart modules (2003 versions and up only, Excel 11 -->). The coding behind it is however somewhat involved, I suggest you read up on this before attempting to use it. | |
Re: Maybe your name and email has been banned.;) I did not experience the problem, only the delayed mails. I have noticed that i do not receive all the mails if there was a few replies, only the one directly after my reply. I then have to scroll or load the … | |
Re: You select command button from your components list and add it to the form. What exactly do you need to do. With the current information we can not help you. | |
Re: @Daniweb2011, please open your own thread with your question. You will receive no answers from here because this thread is very old AND it belongs to another member. You also need to give us much more information of what you need, just asking for code will not get you any … | |
Re: Just remember that Sendkeys will NOT work in Vista or Win7. I took the entire long route which works wonders. If someone knows what they are doing, they can still use task manager.... This will disable it until the application is closed. [CODE]Public Declare Function SystemParametersInfo Lib "user32.dll" Alias "SystemParametersInfoA" … | |
Re: You HAVE showed some effort, so follow my link to the same question a while back. The code sample is there which will disable taskbar etc. Find the link [URL="http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/341779"]here[/URL].:) | |
Re: As Jamie mentioned, you already have a feel for it, try and get at least one language under your belt, the rest will follow. Good luck with your career.:) | |
![]() | Re: I for one will not miss a game. We have started with our Super 14 series here, we'll see what will come from that. Here is the fixtures if anyone wanted it - Date KO (GMT) Home Score Away Venue Links Fri 4th Feb 11 19:45 Wales v England Millennium … |
Re: So true. You see a member, give them a hearty welcome, HELPED them and then get a kick in the a** for it. The real members here is much more than 10 000 though I'm sure.:) | |
Re: [QUOTE]Are you people just genuinely good human beings?[/QUOTE] Most definitely we are. We do not get paid, spend more time here than what is good for us, yet we are here.;) It boils down to the satisfaction I suppose, and for some, a building of a reputation which can be … | |
Re: Reaching out towards other people in need can never be seen as "breaking the rules". Thanks for your ploy to help. I am however sure that we do not want to start a tendency here, so I suppose the mods will monitor this.;) Thanks Jon, we'll help where we can.:) | |
Re: Try the following - [CODE]If Combo1.Text = "Product" Or Combo1.Text = "Size" Then MaskedEit1.Enabled = False End If[/CODE] Do this under your combo_click event. | |
Re: I would rather write a sub to get the Date and then the Time seperate - [CODE]Dim xDate As Date Dim xTime As Date Dim xBoth As Date xDate = Format(YourDateHere, "YYYY/MM/DD") xTime = Format(YourTimeHere, "HH:MM:SS") xBoth = xDate & " " & xTime[/CODE] | |
Re: Nice link, not for me though.:) Thanks for sharing. | |
Re: Encryption not so sorely for usernames but for passwords. Usernames can not really give you access to anything, it's the passwords that play the main role. @Michelle, have you considered starting the use of a database or text file? | |
Re: It is most definitely a component, but not by MS or Apple, which makes it a third party component. I could not find anything related to it and I have never heard of it either. In what application did you see it? | |
Re: Very true. As Ancient stated, we will probably be the cause of our own extinction, maybe before 2012... My motto, drink as much as you can, watch as much sport as you can before 2012, just in case!:) I know this is a serious thread, but so is all other … | |
Re: Nah, no supernatural stuff for me, although my wife does look like a monster if I had too many at the pub and got home late. Maybe I should compare photos of Loch Ness and her... mmm;) | |
Re: Welcome to Daniweb.:) I have asked the mods to move this post to Community Feed back where we will answer all you need to know.:) | |
Re: The index out of bounds error is because The Chosen copied and pasted your code as is. If there is a call to more columns than what exist in the list-view, the error is raised. @The Chosen, you need to modify Das's code OR paste some of your own so … | |
Re: Pito has opened his own thread after that JX, thanks.:) | |
Re: Paste your code. It all depends on whether you are using a control, adodc etc. What sql statement are you using? Post some code so we can help. | |
Re: That code is normally used in a printing function. You need to tell us more about your problem, we can't do mind reading here... ;) (Although we CAN code) | |
Re: @Das, the link gives a sample of saving as a blob to sql, mysql. It will not work for the poster.:) @Pito, the following code will help. The size does not matter, what does matter is the breaking down into bytes to save it successfully.;) [CODE]'Just add the controls as … | |
Re: Keep in mind that most web hosting companies do not allowed asp server pages, only php. This might affect you in the future.:) | |
Re: The above code is incorrect AND all the lables will not be visible except for the last one added because the top and lefts is in exactly the same place, defying the object... Add one label to your form and set its index to "0", its visible property to False. … | |
Re: I have no idea what you require. Please be more specific about your question. | |
Re: I suppose there is a two sided way of looking at it. Some people will benefit, others will loose out. Yes it is cheaper to outsource, but who's smiling in the end, not the permanent employed people about to loose their jobs. The only ones laughing to the banks is … | |
Re: Try the following - [CODE]Dim mailmwo As Excel.Application Dim mwoBook As Excel.Workbook mwonum = txtScan.Text Set mailmwo = New Excel.Application Set mwoBook = New Excell.Workbook[/CODE] | |
Re: [QUOTE]What Does Implied Volatility - IV Mean? The estimated volatility of a security's price. In general, implied volatility increases when the market is bearish and decreases when the market is bullish. This is due to the common belief that bearish markets are more risky than bullish markets. Implied volatility is … | |
Re: @Jaseem - Use the combo box List index number to set the recordset to that record - [CODE]Dim xIndex As Integer XIndex = Combo1.ListIndex Rs.AbsolutePosition = xIndex Text1.Text = rs!Description[/CODE] This will display the record as was selected from the combo.:) | |
Re: On which line did the error occur AND what was the error description? | |
Re: Dani is busy tweaking the site and she is also changing the entire sites URL. There were quite a few hickups, but its getting solved as we go. Have a look at [URL="http://www.daniweb.com/community-center/daniweb-community-feedback/threads/350652"]THIS[/URL] post where most of the hassles is being discussed. You can add your question there and I'm … | |
Re: Nothing as good as your own ideas.;) Some kudos for solving your own.:) |
The End.