Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
21% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
11
Posts with Downvotes
7
Downvoting Members
5
6 Commented Posts
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Sunshineserene
Member Avatar for jon.kiparsky
1
521
Member Avatar for gracea

Hi, I am a VB.net greenhorn so my problem might seem trivial but for me it is getting to be a Herculean and confusing task. :sad: My problem is that I am making a project where the user has to give a quiz where he/she has the choice of number …

Member Avatar for mnmw
0
297
Member Avatar for lefraso

I would like to design a programm in visual basic.net meet the following requirements: Fibonacci numbers Input limit is 15 Numbers are 0 1 1 2 3 5 8 13 The program must allow input limit Display all generated Fibonacci numbers The sum of all the Fibonnacci numbers Anyone who …

Member Avatar for mnmw
0
216
Member Avatar for NewOrder

[CODE]import java.io.*; class Dictionary { public static void main(String[] args) { Console console=System.console(); System.out.println("Please enter the next number"); String input; input=console.readLine(); String[] Hebrew={"ehad", "shnaiim","shalosh","arba","hamesh","shesh","sheva","shmone","tesha","eser"}; String[] English={"one", "two","three","four","five","six","seven","eight","nine","ten"}; for(int x=0;x<Hebrew.length;x++) { if(input.equals(Hebrew[x])) { System.out.println(English[x]); } } } { while(!input.equals("enough") ) //i want to make a condition that if the program doesnt …

Member Avatar for NormR1
0
126
Member Avatar for bryandan

hi, hmm guys i want to know what are the common kinds functions is visual basic.net .?? any answer please .

Member Avatar for G_Waddell
0
76
Member Avatar for bizzpu

Hy guys, I'm new here and I have one error... I wanna read from one *.ini file but not clasic read. Here is content of file confing.ini that I wanna read: [Config] String0=some text1 String1=some text2 String2=some text3 .... Read that I wanna get is value of String1 for example, …

Member Avatar for dghervas
0
101
Member Avatar for mnmw

I have been using the code below to edit SQL database fields from the data stored in a dataset. Problem is I have to repeat this long code for each database field to be edited....I find this very tiring...IS THERE A SHORTER WAY OF EDITING SQL Database FIELDS. (Am using …

Member Avatar for mnmw
0
184
Member Avatar for b1izzard

I had created a report using Reportviewer control(VS2008+MS-Access), the report displays all the records from Access Db correctly but i need to sort the records and display. [B]Sorting by Date(Ascending) that too the records prior to Today's date should not be displayed[/B]

Member Avatar for mnmw
0
124
Member Avatar for mnmw

Check out my code on Pascal's triangle using C++. [CODE]#include "stdafx.h" #include <iostream> using namespace std; int pascals(int,int); int fact(int); int main() { int r,e,levels,space; cout<<"Enter the number of lines needed";cin>>levels; space = levels+1; for(r=0;r<=levels;r++) { // std::cout.width(space);//shape for(e=0;e<r+1;e++) { cout<<pascals(r,e)<<" "; } cout<<endl; space--;//shape } cout<<endl; cin>>r; return 0; …

Member Avatar for dohpaz42
-2
189
Member Avatar for mnmw

Check out my VB.NET code to convert numbers entered in a text box to string....It converts upto 99999999 though..... [CODE]Imports vb = Microsoft.VisualBasic Public Class frmFigures Private Function ConvertFigure(ByRef AmountInFigure As Double) As String If Trim(AmountInFigure) <> "" Then If AmountInFigure.ToString.Trim.Length = 1 Then ConvertFigure = getOnces(AmountInFigure) ElseIf AmountInFigure.ToString.Trim.Length = …

0
47