RTB act like VisualBasic 6 Edit Code Mode Programming Software Development by Kevin1991 I'm beginner for VisualBasic 6, please help me! What VB code should I use … "Object" in RichTextBox so it appear just like VisualBasic 6 Edit Code Mode like this picture??:rolleyes: (Automatically change… Re: Microsoft.VisualBasic.PowerPacks.Vs Programming Software Development by pearl.kumar1 Thanks Pritaeas, But actually i already download and install the link after restart..It will give the same error.But my Idea is I check on c:windows:assembly:Microsoft.VisualBasic.PowerPacks is installed.But our error is ' Microsoft.VisualBasic.PowerPacks.Vs '.Is it i found a right thing.Any suggestion. Use Microsoft.VisualBasic functions in c# Programming Software Development by jellybeannn Hi I'm trying to use the Microsoft.VisualBasic IRR function, but to no success. [code] double[] values = new … Re: Use Microsoft.VisualBasic functions in c# Programming Software Development by jellybeannn … Line: 168 Stack Trace: [ArgumentException: Arguments are not valid.] Microsoft.VisualBasic.Financial.IRR(Double[]& ValueArray, Double Guess) +436484 irr.GetTable… Microsoft.VisualBasic; IRR function Programming Web Development by jellybeannn … c# and I'm usiing the IIR function of Microsoft.VisualBasic. I need values for 6 years that's 72months [code… where i can download a visualbasic 6.0 and vb.net Programming Software Development by moonfang9909 where i can download a visualbasic 6.0 and vb.net i NEED it foR my thesis. . i hoping for your reply. ..tnx Microsoft.VisualBasic.PowerPacks.Vs Programming Software Development by pearl.kumar1 Hi, I created an application in VS 2008,If i run my application in Client machine it shows an error like 'could not load file or assembly 'Microsoft.VisualBasic.PowerPacks.Vs Version 9.0.0.0''.Kindly refer any link which is easy to download and install. Microsoft.VisualBasic.dll unhandled exception Programming Software Development by mrbungle …: An unhandled exception of type 'System.Exception' occurred in Microsoft.VisualBasic.dll Additional information: Cannot create ActiveX component. So I'm… vb Programming Software Development by arudhumbu visualbasic assignment how to draw a multicolored worm! pliz help Visualbasic - Timer Interval Help Programming Software Development by cancer10 I want the timer to set the interval in hours or minutes and not in milliseconds. I get the following error when I set the interval as in minute as Timer1.Interval = 60000 * 5 "Run-time error 380, Invalid Property Value" Re: Visualbasic - Timer Interval Help Programming Software Development by Lalo1985 Sorry dude, but the regular timer cannot take values larger than 65535 ms. So my advise, you can try Long Timer, a freeware program. The link is [URL=http://www.safesite.com/category.php%5Baction%5Dbrowse&i=120&id=305&f=%7C%7C%7C%7C&s=product.date_released%7CDESC%5BSiteID%5Ddigibuy]here[/URL] Just scroll down to the download link.… Re: Visualbasic - Timer Interval Help Programming Software Development by cancer10 ^ Thanx lalo, u rock :) Re: Visualbasic - Timer Interval Help Programming Software Development by cancer10 Do you know there is a BUG in the Long Timer, please download the attachment and see for youself :) Re: Visualbasic - Timer Interval Help Programming Software Development by jwshepherd try using globals parameteres for Hours and Minutes and seconds [code] global g_Hour as integer global g_Minute as integer global g_Seconds as integer [/code] Set the timer for 1000 ( one seccond ) [code] Private Sub Timer1_Timer() Dim mySeconds As Integer Dim MyMinutes As Integer Dim MyHours As Integer mySeconds = 21 MyMinutes = 9… Re: Visualbasic - Timer Interval Help Programming Software Development by jwshepherd I forgot to increment g_seconds. here it is again, working this time. [code] Private Sub Timer1_Timer() Dim mySeconds As Integer Dim MyMinutes As Integer Dim MyHours As Integer mySeconds = 11 MyMinutes = 0 MyHours = 0 g_seconds = g_seconds + 1 If g_seconds >= 60 Then g_minutes = g_minutes + 1 g_seconds = 0 If … Re: Visualbasic - Timer Interval Help Programming Software Development by Comatose I would suggest setting your timer to 60 seconds (1 minute) OR every second. Then keep a variable that gets incremented as the timer fires. Then you can check it for the time in question, and fire it accordingly. visualBasic 6.0 setup toolkit entry point not found Programming Software Development by HibaPro the procedure entry part 1stractI could not be located in the dynamic link library MSDART.dll ??? how i can fix this ?? Re: visualBasic 6.0 setup toolkit entry point not found Programming Software Development by AndreRet It seems that you have the incorrect version installed under your system 32 folder... Have a look at [this](http://support.microsoft.com/kb/889114) link for a solution. VisualBasic to C code Programming Software Development by prathiyus I need to write equivalent 'c' code for vb code......... ImageScreen.Graphics.Pixel(i,j) = cmy(0,0,0) how to write a function for cmy in c language Re: VisualBasic to C code Programming Software Development by Adak I doubt if anyone here knows what the specs are for VB graphics to emulate it precisely. Google "graphic libraries for C", and you should come up with something - there are several - some simple, some for only certain operating systems, etc. VisualBasic How to add quantities and display them in a ListBox? Programming Software Development by Stephen_28 Hi, I am currently working on a VB form for a college assignment. I am trying to add quantities from a ListBox and then display the result in a TextBox for a pizza delivery order by using a button. So far, the Listbox shows: pizza type Quantity pizza price Total pizza price The Total pizza price is the value that I want to add together and … Re: VisualBasic How to add quantities and display them in a ListBox? Programming Software Development by ddanbe Try To write a method that extracts the last price from a listbox item. Sum those prices in a loop and fill in the text of your textbox. Re: VisualBasic How to add quantities and display them in a ListBox? Programming Software Development by Santanu.Das You can do it by using a `STRUCTURE`which can give you full functionality to solve your problem. Read [this post](https://www.daniweb.com/programming/software-development/threads/495590/help-with-formating-zones#post2168625) you can get your way to solve the problem by yourself. Re: VisualBasic How to add quantities and display them in a ListBox? Programming Software Development by ibagyei You need a global variable which is outside the subroutine to represent the Total_pizza_price. This will enable you to add the individual prices to Total_pizza_price but it has to be set to zero at the beginning of of the subroutine, so that anytime you start to process a new order, the previous price will be cleared and the variable for … Re: VisualBasic How to add quantities and display them in a ListBox? Programming Software Development by Stephen_28 Im having trouble understanding how to write the code... I should mention that I am at a very begginer level and don't know a lot about coding yet. I appreciate everyone trying to help :) Is there any way you can explain more about the solution. Re: VisualBasic How to add quantities and display them in a ListBox? Programming Software Development by Santanu.Das Post your codes and problems where from we can help you to solve your problem. Re: Use Microsoft.VisualBasic functions in c# Programming Software Development by nick.crane [CODE]B162_Calc = Financial.IRR(ref values, 0.1) * 12; //<-- add ref[/CODE] Re: Use Microsoft.VisualBasic functions in c# Programming Software Development by jellybeannn Thanks, I've figured out that the array is not getting the values. [code] # double[] values = new double[73]; # for (int i = 1; i <= 240; i++) # { # double BW154_Calc = 0.0; # if (i == 72) # BW154_Calc = (C152_Calc * 12 / G169_In) * 100; # if (i == 240) # BW154_Calc = (C152_Calc * 12 / G170_In) * 100; # # num3 += BW154_Calc; # # // … Re: Use Microsoft.VisualBasic functions in c# Programming Software Development by nick.crane Try with a simple set of known data first. E.g: [CODE]double[] testvalues = new double[] { -100, 200, 300 }; B162_Calc = Financial.IRR(ref testvalues, 0.1); [/CODE] Re: Use Microsoft.VisualBasic functions in c# Programming Software Development by jellybeannn Jip, that worked. Why won't my values?