132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for karthick_3

Hi, i would like to know what are the technologies used as user interface in spring MVC. example like JSP,Thymeleaf. Please let me know if anything else if used apart from this.

Software Development java user-interface
Member Avatar for jwenting
0
112
Member Avatar for cblock

Hello all, so I was thinking of either creating or downloading a prebuilt C# web bot for one of my business applications. The idea is to provide the web bot with credentials for a password protected site, and have it download zip/text files from probably 3 seperate URLs. I was …

Software Development open-source web-browser
Member Avatar for Suzie999
0
313
Member Avatar for lusito92

Hello guys I need your help im really new in C++ and I need to do easter calculation to get the right easter day, at the moment I could get one year. Example: Year 2015 Easter Day in 2015 is/5/4/2015Year but my professor is asking me to get year range …

Software Development c c# c++
Member Avatar for rubberman
0
209
Member Avatar for scheppy

Hi everyone. Ive finally figured out how to get my JOptionPane always on top no matter what but i cant figure out how to get the results of what button the user has clicked? and how to disable the x on the top left corner? This is what I have. …

Software Development java
Member Avatar for JamesCherrill
0
300
Member Avatar for sirlink99

Hello Everyone! I am wondering about the thory behind the box blur. I have an assignment, and I wrote a program implementing the box blur the way it was described in my assignment which is "When centered on a pixel, its values are multiplied with each corresponding surrounding pixel values, …

Software Development c++
Member Avatar for JamesCherrill
0
566
Member Avatar for Programmer592

Hey guys. So I'm currently building an app and I'm having a bit of trouble. So I have an Excel file and it reads it and opens it fine(I imported microsoft.office.interops.excel but what I want to know is how to loop through column A and pick out the rows that …

Software Development microsoft-office vb.net visual-basic
Member Avatar for Programmer592
0
417
Member Avatar for prgmmgbgnnr

i was given an assignment to create a word construction game where the program will randomly picks a combination of vowels and consonants and the user will build as much words as possible from the choosen letters. my prog will check for the correctness of the words and gives the …

Software Development c
Member Avatar for David W
0
303
Member Avatar for naz1234

is there possible to simplify this statement ? There are same if I using the case statement and while loop. void decode (unsigned char* msg) { if (strstr (msg, "DO=0x00") != NULL) // 0 { //00000 LATGbits.LATG1 = 0 ; //DO1 OFF LATGbits.LATG0 = 1 ; //DO2 OFF LATGbits.LATG13 = …

Software Development c
Member Avatar for 0x69
0
219
Member Avatar for Cory_1

I am trying to work on a code for extra credit in my Programming class. The question asks for the user to input a text file, and display all the words in that file(including duplicates) in ascending order. After writing the code several different times over the course of four …

Software Development display file-system java
Member Avatar for JamesCherrill
0
2K
Member Avatar for simran_5

Create a teacher class (teacher name, ID, department, subject currently handled)and student class(student name, regno, subjects, teacher, marks(cae1,cae2,assignment), log) such that the teacher class id made a friend of student class. Allow the teacher class to update the student information like marks and also maintain an entry in the student …

Software Development c++
Member Avatar for David W
0
169
Member Avatar for toneranger

Hi, I'm trying to compute a moving average of length 20. I've got a vector of structs that's read into my function and I'm using an iterator to read through as follows: int length = a; int count = 0; double sum = 0; while (itr!= priceinput.end()) { sum += …

Software Development c++ microsoft-access
Member Avatar for toneranger
0
190
Member Avatar for ParPau

All, I am wanting to be able to "read" hand writing. I have managed to get the hand written characters from papers. I now - to the computer - have just pixels on paper (output is in .pdf format). I want to have the computer be able to convert the …

Software Development c++ open-source pdf
Member Avatar for LaxLoafer
0
500
Member Avatar for Brandon Hatch

I have no idea how to create a Gui from another Gui using python. What I have so far is simply a basic Gui which you select one of the options from a dropdown menu and create another Gui. Here's what I have so far... import sys from tkinter import …

Software Development gui python tkinter
Member Avatar for Brandon Hatch
0
2K
Member Avatar for AbstractEden

Hello, I was hoping to get some input from anyone in the Java section. My professor gave us a practice problem about two weeks ago and I have been running into an out of bounds error. The program seemed simple enough, take in two arrays of binary numbers from a …

Software Development java
Member Avatar for AbstractEden
0
281
Member Avatar for digiway

Hi, I select S.No, name and mark from sql database table. This table contain n number of rows. I want to add(+)/Plus the mark and display in the (n+1) row of datagridview how can i do this. Thank You

Software Development vb.net
Member Avatar for ddanbe
0
228
Member Avatar for sciprog22

Hello, I have a question about ascending order sorting using the Comparabe interface: When I add the keys of my Hash Map to a TreeSet object and implement the compareTo as below, I get descending order of sorting of names: public int compareTo (Accounts a) { return a.name.compareTo(this.name); } // …

Software Development java
Member Avatar for sciprog22
0
166
Member Avatar for hari_10
Member Avatar for jwenting
0
116
Member Avatar for directorabbey

#include <iostream> using namespace std; int main() { const int password=123; const string username = "abc"; int pass; string user; cout<< "Enter your username"<<endl; cin>>user; cout<< "Enter your Password"<<endl; cin>>pass; if (pass==password) && (user==username) { cout<< "Access Granted"<<endl; } else{ cout<< "username And Password Incorrect"<<endl; } cout << "Hello world!" …

Software Development c++
Member Avatar for zelrick
0
126
Member Avatar for Anthony_9

Hello everyone I am new to assembly and currently taking an online class over assembly. I am using x86 intel machine with AS. My project would like me to complete the following: - Show how decimal 65 would be stored in register EAX in 8, 16, and 32 bits using …

Software Development assembly
Member Avatar for Anthony_9
0
273
Member Avatar for surfingturtle

/* Am not able to understand the operation happening in function showbits(), please help*/ #include <stdio.h> void showbits (unsigned char); int main() { unsigned char num=225,j,k; printf(\nDecimal %d is same as binary", num); showbits (num); for(j=0; j<=4; j++) { k=num<<j; printf (\n%d left shift %d gives", num, j); showbits(k); } …

Software Development c
Member Avatar for surfingturtle
0
202
Member Avatar for mridul.ahuja

I have a website with the url to be entered in TextBox2 . I want to extract names, email ID and mobile numbers of people from the website. The url in TextBox2 contains the names and the email IDs, however the mobile numbers are present on another webpage (profile page) …

Software Development vb.net
Member Avatar for mridul.ahuja
0
424
Member Avatar for Tcll

basically, I have some code defined to be executed in a restricted namespace: code = ''' def func(): print 'success' ''' NS = {} NS.update(__builtins__) exec code in NS try: f = NS['func'] print f # should print a function object f() except KeyError: print 'failure' as you can guess... …

Software Development ide python
Member Avatar for Tcll
0
544
Member Avatar for JohnMcPherson

Hello, I am having a problem with a C cursor screen that I am developing. The screen compiles without a problem, but when I try to run the screen, it does not come up, and no error message is shown on the screen. Also, there is no file created with …

Software Development c display
0
170
Member Avatar for Affan Ahmed

#include <stdio.h> int main(){ int k=0; char q1[0],q2[0],q3[0],q4[0],q5[0],q6[0],q7[0],q8[0],q9[0],q10[0],q11[0]; char a[0]={"b"},b[0]={"a"},c[0]={"d"},d[0]={"c"},e[0]={"d"},f[0]={"c"},g[0]={"b"},h[0]={"d"},i[0]={"c"},j[0]={"a"}; printf(" MCQS TEST PAPER \n \n \n Total ten question each of 1 Marks \n \n \n1.What is your country name? \na)India \n b)Pakistan \nc)Srilanka \nd)America \nEnter your correct option : "); scanf("%s" , &q1); printf("\n \n2. What is your …

Software Development c
Member Avatar for Moschops
0
247
Member Avatar for Medusa Tomsin

when naming the constant in C++ program, WHY DOES IT IMPORTANT TO NAME FOR EXAMPLE INCHES_PER_FOOT ?

Software Development c++
Member Avatar for 0x69
0
106
Member Avatar for Swathi_3

Project Decription: The user gives from and to destination from which he needs to get all the trains availabe at that route in all timings. I dont know where im wrong. Pls help me

Software Development java
Member Avatar for jwenting
0
187
Member Avatar for Cory_1

I am attempting to use generics that will sort an ArrayList in ascending order as extra practice for my upcoming mid-term exam. I am given the main method body, and the method header for the sorting method, and am asked to write the method body for the sort method. However, …

Software Development java
Member Avatar for JamesCherrill
0
4K
Member Avatar for Mace_1

I want an idea on how to make online chatting network in perl, just like a messenger where if there's an online people you can chat him/her. I know how to create a chat network in perl but everyone can chat in an single network like a public chat room, …

Software Development perl
Member Avatar for mcglk
0
329
Member Avatar for Modini

How to read input from a textbox and store the data as first element in 3D array? Please help!!

Software Development vb.net
Member Avatar for Mr.M
0
183
Member Avatar for Victor_10

hi guys, how do i create a simple server that ships alongside my windows app during installation which will be used as local server to host web pages that ships along with the Windows app.

Software Development c# client-server
Member Avatar for overwraith
0
152
Member Avatar for surayanbo

how to develop a prog in cpp that asks the user to enter numbers and sort them ascendingly using arrays.

Software Development
Member Avatar for gusano79
0
116
Member Avatar for srider1969

How can I change the signature of my Action delegates to NOT use void methods in my Dictionary<bool, Action<UrlParts, List<UrlParts>>>? public static Func<UrlParts, List<UrlParts>, bool> LacksDomainPage = (up, lup) => !lup.Contains(up); public static Action<UrlParts, List<UrlParts>> LacksUrl = (up, lup) => dicAddDomainPage[LacksDomainPage(up, lup)](up, lup); public static Dictionary<bool, Action<UrlParts, List<UrlParts>>> dicAddDomainPage = …

Software Development
Member Avatar for srider1969
0
306
Member Avatar for Cap'nKirk

Hi, I am trying to add a new xElement to an existing xDocument but it needs to be added to a specific place in the structure. Here is a snippet of the current structure, you can see that I have added ID xAttributes to the xElement td in order to …

Software Development
Member Avatar for lithium112
0
4K
Member Avatar for alan_123

I am new to perl. In a string How do I replace a backward slash with a forward slash? when I call the following perl api $FindBin::Bin; I get the path as follows $myPath = c:/perl/test I would like to covert this to c:\perl\test I did try the following and …

Software Development api perl
Member Avatar for Taywin
0
6K
Member Avatar for Ali_51

using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO; namespace Genesis_Solutions_CRMS { public partial class formNewAccount : Form { public formNewAccount() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Information info = new Information(); info.Name = txtName.Text; info.Occupation = txtOccupation.Text; info.Dob = double.Parse(txtDob.Text.ToString()); info.Nic = …

Software Development xml
Member Avatar for lithium112
0
301
Member Avatar for anisha.silva

Hi, i have a string that i want to match to a regular expression. The string is methodName(paraT1 para1, paraT2.name2 para2, paraT3.name3 para3) Inside the () there can be multiple of "aaa.bbb ccc" and "ddd eee" patterns The regular expression i wrote was : (\w*)(\s*)\((((\w*\.\w*)\s*(\w*))|((\w*)\s*(\w*)))(\s*\,\s*(((\w*\.\w*)\s*(\w*))|((\w*)\s*(\w*))))*\) and the I get the …

Software Development java regex
Member Avatar for srider1969
0
311
Member Avatar for Anupam_4

Will u plzz help me for displaying the content from the database in datagridview in vb with backend mongodb?

Software Development mongodb vb.net
Member Avatar for Rakhmat_1
0
898
Member Avatar for surayanbo

pleas give me a good book to understand cpp more.

Software Development c++
Member Avatar for NathanOliver
0
109
Member Avatar for professor123

Good Day, I wanted to ask that is it possible to develop a system which does image comparison or recognition, whereby you input or upload an image and then the system tries to match this image with the ones in the database until it finds an image which resemble the …

Software Development image
Member Avatar for professor123
0
279
Member Avatar for prgmmgbgnnr

i was given an assignment to create a word construction game where the program will randomly picks a combination of vowels and consonants and the user will build as much words as possible from the choosen letters. my prog will check for the correctness of the words and gives the …

Software Development c++
Member Avatar for prgmmgbgnnr
0
238
Member Avatar for clife

Hi, I would like to view the source code( the current line it has executed/going to do) in gdb while i am debugging, and i know list and other commands will display the code. what i would like to know is do i need to set some path or something …

Software Development c
Member Avatar for rproffitt
0
320
Member Avatar for shadowrider

if i want to read some integer what command i must use how to do i read and save value in multi dimensional array?? urgently needed:-|

Software Development c#
Member Avatar for ddanbe
0
9K
Member Avatar for wilsonchama

Hi guys, I am trying to save the items in a listview to Access database. The listview has two columns; "Description and Price". For example, If a user adds three Items (products) in a listview and clicks a command button, I want these items to be saved in a database …

Software Development listview microsoft-access vb.net
Member Avatar for jwenting
0
621
Member Avatar for cblock

I am in a situation where I have to take a bunch of Visual Studio projects which are scattered across the file system on a computer, and put them all in one self contained solution folder, under the same file in the file system. Are there any automated tools which …

Software Development file-system visual-studio
Member Avatar for cblock
0
714
Member Avatar for Lev_2

HI, With Win32::GUI - need to create a window with scroll bar , within a main window. This second window (child of a main window) will hold different buttons/checkboxes ,etc , and will have a scroll bar . Did not find so far any package in win32::GUI that will enable …

Software Development gui perl
Member Avatar for Taywin
0
402
Member Avatar for Philip_5

I am a beginner programmer and have been learning about how to use Java since February 2015 of this year. However, I just started learning how to write code in the Python Language, a few weeks ago and find it to be much easier to work with. My goal here …

Software Development github gui python
Member Avatar for Lardmeister
0
419
Member Avatar for deibaby03

so i have 2 tables here CREATE TABLE tblAcctPrd ( strAPCode VARCHAR(50) NOT NULL, datAPStartDate DATE NOT NULL, datAPEndDate DATE NOT NULL, PRIMARY KEY (strAPCode) )Engine=InnoDB; which is the parent table and CREATE TABLE tblEntry ( <----the child table strEntCode VARCHAR(50) NOT NULL, datEntDate DATE NOT NULL, strEntType VARCHAR(50) NOT …

Software Development gui java mysql
Member Avatar for Taywin
0
249
Member Avatar for can-mohan

Hi Guys, In my current task , I need to read the read the approximately 10,000 recoreds from database and need to store the same in container.Now i need to select container to store all this records inorder to generate the report.Could you let me know whether i need to …

Software Development c++
Member Avatar for can-mohan
0
168
Member Avatar for Sara_13

Hello , I've been working for an hour now searching for a solution for a problem i have for tomorrow's workshop so I wanted to be ready for it and here was the question : Write a program that reads 3 integers. Then, display:  The count of positive integers …

Software Development c++
Member Avatar for David W
0
289
Member Avatar for Sn

hey guys i have a code for auto generation of id in my project... when i add another id the number repeats itself... i recently tried to change the code and then the save codeing didnt work... so i went back with the old one... a lil help pls... Dim …

Software Development visual-basic
Member Avatar for Reverend Jim
0
8K

The End.