Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~10.3K People Reached
Favorite Tags
Member Avatar for laura301019

I am creating a web site and have written css postions etc using % so that it will look the same on any monitor size. So when I view the website on my own laptop which resolution is 1366 x 768 it looks perfect however when I view it on …

Member Avatar for veera100
0
190
Member Avatar for laura301019

I have a gridview that displays client details and a button to allow the clients details to be edited. A modal pop up is used to edit the client details with the text boxes prefilled. What I was wanting to know is if there is a way to only display …

Member Avatar for Daemon_CC
0
178
Member Avatar for laura301019

I have an application that uses microsoft access as the database. The application is to allow users to book appointments online. I would like to include an email reminder service so that an email is sent to the user 24 hours or so before their appointment. Not sure how I …

Member Avatar for geniusvishal
0
571
Member Avatar for laura301019

Hi I have a webform to allow users to register this information is stored in a Clients tables but I would like some of the information to be stored in another table that will store the username, security question and answer. I tried using two separate insert commands but it …

Member Avatar for laura301019
0
249
Member Avatar for laura301019

Hi I am creating a database that will help monitor attendance at uni. We were given the following spec. Each course is made up of a number of modules. Students enrol in 6 modules. Each module has a timetable which includes times of classes. Class can be a lecture, tutorial …

Member Avatar for jwenting
0
126
Member Avatar for laura301019

Hi I am currently creating an appointment system for a hair salon. At the minute clients are able to book an appointment by selecting the neccessary options from drop down lists. However I would like it to be an interactive calendar so clients can see available time slots for a …

0
75
Member Avatar for laura301019

Hi I have just completed the opnet CSMA/CD tutorial and my lecturer would like us to run additional simulations and then generate graphs. I know how to do that but what im unsure of is that he wants us to include graphical plots for collision count vs transmission attempts, I'm …

Member Avatar for rubberman
0
256
Member Avatar for laura301019

Hi I have a calendar extender in the edititemtemplate section of a gridview. I need to set the start date to the current day. I did this on another page by writing CalendarExtender1.StartDate = DateTime.Today; However as the extender is in a gridview it isn't appearing in the back end …

Member Avatar for JorgeM
0
848
Member Avatar for laura301019

Hi I have a page for users to edit their details, I've used the following code to prefill the form. protected void loadData() { OleDbConnection conn = new OleDbConnection(); conn.ConnectionString = ConfigurationManager.ConnectionStrings["ProjectDatabaseConnectionString"].ConnectionString; conn.Open(); DataTable dt = new DataTable(); DataSet ds = new DataSet(); ds.Tables.Add(dt); OleDbDataAdapter da = new OleDbDataAdapter("SELECT * …

Member Avatar for JorgeM
0
159
Member Avatar for laura301019

Hi I've ran into this error and have been looking at it for about an hour now and can't get it fixed. cmd.CommandText = "INSERT INTO Appointments (ClientName, Period, Time, Treatment, Stylist) VALUES (@cName, @cDate, @cTime, @cTreat, @cStylist)"; cmd.CommandType = CommandType.Text; cmd.Parameters.AddWithValue("@cName", txtCName.Text); cmd.Parameters.AddWithValue("@cDate", txtDate.Text); cmd.Parameters.AddWithValue("@cTime", DDLTime.SelectedValue); cmd.Parameters.AddWithValue("@cTreat", DDLTreat.SelectedValue); cmd.Parameters.AddWithValue("@cStylist", …

Member Avatar for Ranjitrathod15
0
229
Member Avatar for laura301019

I keep receiving this error and I'm unsure how to fix it. The code I have is protected void AddUserToDatabase(String username, String Password, String Email) { OleDbConnection conn; OleDbCommand cmd; using (conn = new OleDbConnection(ConfigurationManager.ConnectionStrings["ProjectDatabaseConnectionString"].ConnectionString)) { using (cmd = conn.CreateCommand()) { cmd.CommandText = "INSERT INTO Users(username, password, emailAddress) VALUES(@username, @password, …

Member Avatar for aneri28
0
397
Member Avatar for laura301019

Hi I am new to using Microsoft Access as a database for Visual Studio (previously I used SQL Server) so I am unsure how to go about the usual tasks such as accessing the database. At the minute I am trying to write code to check if a username already …

Member Avatar for kvprajapati
0
146
Member Avatar for laura301019

Hi, I have a gridview that takes information from a MS Access database. The gridview is populated with information that is inserted into the database via a form. I would like to give the user the option to edit the row's if there is a mistake or something needs to …

Member Avatar for newbie26
0
153
Member Avatar for laura301019

I'm pretty new to coding with Python and I am trying to save a users username in a session variable which should be a new entry in the session dictionary. The code I have is from bottle import route, request, debug, run, template session={'logins':0} def checkLogin(name,password): if name==password: return True …

Member Avatar for slate
0
364
Member Avatar for laura301019

I have the following web crawler code and would like to add a limit as to the depth of the search but unsure how to implement this. import urllib2 def getAllNewLinksOnPage(page,prevLinks): response = urllib2.urlopen(page) html = response.read() links,pos,allFound=[],0,False while not allFound: aTag=html.find("<a href=",pos) if aTag>-1: href=html.find('"',aTag+1) endHref=html.find('"',href+1) url=html[href+1:endHref] if url[:7]=="http://": …

Member Avatar for Gribouillis
0
433
Member Avatar for laura301019

I am creating a page scraper and would like to include a text file that contains the words such as 'a', 'the', 'on' etc. But not sure how to do this, i think I have created the file fin=open("ignorelist.txt","w") for line in fin: but not sure how to go about …

Member Avatar for vegaseat
0
191
Member Avatar for laura301019

I am attempting to code an electronic appointment system in C#. What I was hoping to accomplish would be a web page that would display times down the side and dates along the top (3 days at a time). when a user selects a time on a date it will …

Member Avatar for laura301019
0
144
Member Avatar for laura301019

Hi I am creating a webcrawler and would like to set a limit for how many steps from the original seed can be taken, when the limit is reached the web crawler should terminate. Not sure how or where abouts to add it to my code import urllib2 def getAllNewLinksOnPage(page,prevLinks): …

0
80
Member Avatar for laura301019

I am creating a php page that allows users to add a new letter to a letter archive that is saved to an XML file. One of the form elements is recipient with a text box. I would like to add a button that when clicked it will bring up …

Member Avatar for EvolutionFallen
0
112
Member Avatar for laura301019

Hi I am beginning by final year project which is an appointment system. I had planned to use Visual Studio and SQL Server for this but at the end of the year I have to submit my system to the uni on a disc, I was just wanting to know …

Member Avatar for dany12
0
168
Member Avatar for laura301019

I have a javascript table that displays contents from an XML file(that stores letter details), I have at each row a view button which I would like the user to be able to click and it will display the letter details for them. Is this possible? The javascript I have …

Member Avatar for GliderPilot
0
256
Member Avatar for laura301019

In my XML file each record of letter has an ID such as: <letter id="1"> <title>Test</title> <author>X</author> <recipient>X</recipient> <text>testing</text> </letter> <letter id="2"> <title>Test</title> <author>X</author> <recipient>X</recipient> <text>testing</text> </letter> I have an html page or I can change it to PHP whichever is easiest to do this, but I would like to …

Member Avatar for gusano79
0
133
Member Avatar for laura301019

Hi I have a web application that stores detail about letters in an XML file such as recipient, sender, title etc. On my HTML page for creating a letter I have given an option to include a URL which is then saved to the url element in the XML file. …

Member Avatar for laura301019
0
151
Member Avatar for laura301019

Having trouble getting my XML schema to work with my xml file. The layout of the xml file is: <catalogue> <nextID>02</nextID> <letters> <letter> <title> </title> <sender> </sender> <recipient> </recipient> <text> </text> </letter> </letters> </catalogue> the xml schema layout I have is: <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:element name="catalogue"> <xs:complexType> <xs:sequence> …

Member Avatar for pritaeas
0
97
Member Avatar for laura301019

Hi I have an XML file that is storing numerous books and their details, I then have a PHP page that is to search the XML list by Author. This I can do but I was wondering how I can style the page for when the search button has been …

Member Avatar for cmps
0
161
Member Avatar for laura301019

Hi I am starting my final year project and was wanting to know how to connect visual studio to my database. I am using phpmyadmin which is on the uni's server so I can work on it at uni and at home but I am having trouble finding out how …

Member Avatar for laura301019
0
270
Member Avatar for laura301019

Hi, I am starting my final year project and was looking for some advice on what more experienced coders think the best database for me to use would be? On placement I was using visual studio to code and sql server for stored procs, is this the best way for …

Member Avatar for IIM
0
252
Member Avatar for laura301019

Hi, ive a piece of code which i have to modify so that the output is modified to appear as a table. The code is to do with buying songs etc, the output is Beatles Abbey Road Come Togeher Something Revolver Taxman Yellow Submarine Eleanor Rigby Oasis Be Here Now …

Member Avatar for LastMitch
0
214
Member Avatar for laura301019

Hi have this piece of code to display images of cameras and a caption underneath which states what type of camera it is. However I cant get the caption to change, i posted this piece of code before and some responded stating i need to '==' not just one. I …

Member Avatar for AleMonteiro
0
169
Member Avatar for laura301019

Hi I have an array $months which holds the months of the year. I have a funcion echoArray($theArray) which contains a for loop to print out the months as month 1 is January, month 2 is February etc. I now have to create another function reverseArray which will output the …

Member Avatar for blocblue
0
189