Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~7K People Reached
Favorite Tags
Member Avatar for mr_scooby

I have an app that I want to run the updating of each datagridview in the background on load concurrently instead of running sequentially on load. The code that gets loaded on app load is. //##############################Movies //update the list of filepaths movieFilePaths_ = manageFilePathsFile.ReadFilePathsTextFile("Movie", filename); //populate the list box manageFilePathsFile.PopulateListBoxWithFilePaths(listBoxMoviePaths, …

Member Avatar for JOSheaIV
0
302
Member Avatar for mr_scooby

Hi guys, I am trying to connect to AD and want to be able to enter a group name and return all the members of that group. I have no idea what I am doing or where to start. I imagine that its not a lot of code I am …

Member Avatar for mr_scooby
0
114
Member Avatar for mr_scooby

I use mediaportal as my mediacenter, with this I use the plugin mvcentral for my music videos. This generates .db3 file, what I want to do is create a .net interface to view this file, with the intention of making it into an exe to have a portal database of …

Member Avatar for Momerath
0
101
Member Avatar for mr_scooby

I have this form that has a textarea that is compulsory, it has a checkbox that allows it to be ticked to show a hidden textarea using css/jquery. What I would like is to know how to do the jquery to force input into the unhidden textarea only when the …

Member Avatar for stbuchok
0
899
Member Avatar for mr_scooby

Hey guys, I need to be able to get a certain value out of the following. [code] Job# : 442254 Contact : TO BE ADVISED Model : BZ500 50GN02630 Purchase Order/Your Reference : Contract Type: C3 CopyPlan - Contract Minimum Job Type: H Audit, Admin, Housekeeping Fault/Problem(s) reported: CHECK SENTINEL …

Member Avatar for mr_scooby
0
129
Member Avatar for mr_scooby

Hey guys, have written a script that goes to an exchange mailbox and searches for unread emails and takes the headers and body data I require and add to an array. What I want to do is check if the body of the email contains images/text or only text, is …

Member Avatar for mr_scooby
0
55
Member Avatar for mr_scooby

Hi, have this function below that gets the name of the pc, the local part works however the part that goes to the htpc fails, permission denied is the message. I have set the same username/password as admin on both machines. there must be some code I can use to …

0
52
Member Avatar for mr_scooby

Have the Javascript function below which takes the name of an input on the form passed as a variable so that 1 function can check many inputs as I have up to 3 fields per form that can accept this data range. [code] function contact_number_check(formObj,field) { var obj = document.forms[formObj]; …

Member Avatar for asmira
0
72
Member Avatar for mr_scooby

Hey guys, what I want to do is have a page that only displays if javascript is enabled(or similar) in the sense that it tells users that js is not enabled and how to enable, what were doing is creating web forms and would only like them viewable if js …

Member Avatar for fxm
0
132
Member Avatar for mr_scooby

I have this php based website, that displays a photo and draws data from a db to display on the page. Currently has a link to a live camera(viewed by internet browser) that opens in a separate page. I have heard/read that using jquery you can create a iframe within …

Member Avatar for mr_scooby
0
74
Member Avatar for mr_scooby

Just wondering if someone can give me some insight to understand how the hidden type works on a form. This form has 3 types of controls for storing the value of $id a radio button, check box and a hidden input(which has a button for each loop also). When it …

Member Avatar for mr_scooby
0
114
Member Avatar for mr_scooby

hey guys, I have a 2-3 pc home network all running xp, I'm using an old dynalink router which is connected to a switch(cheap no brains switch) and my pc's run from there. Is there a command line command that allows each pc to get an ip/mac address from each …

Member Avatar for amint01
0
271
Member Avatar for mr_scooby

Hello all, I have a php function that deletes the contents of a database table that relies on a javascript confirm box to tell it what to do as follows javascript function as follows [code] function deleteMasterList() { var outcome = confirm("Delete Master List, you will have to re-enter all …

Member Avatar for mr_scooby
0
147
Member Avatar for mr_scooby

Can ignore other post not sure why i closed it, not solved lol, not enough coffee too much looking at php anyway. I have this form I'm working on and found something interesting attempt1 this way works exactly how I want, which is nothing in the input boxes and no …

Member Avatar for cwarn23
0
187
Member Avatar for mr_scooby

I have this form I'm working on and found something interesting attempt1 this way works exactly how I want, which is nothing in the input boxes and no error messages on loading the registration form, once submit is entered the empty fields have a message appear next to them, the …

Member Avatar for muralibobby2015
0
194
Member Avatar for mr_scooby

hello, I have this form which has 4 fields that must not be empty on submit, I been trying to make an array that checks them. [code] <form action="login.php" method="post" onsubmit="return(checkAll(this))"> <label>Username<br /><input id="input[]" type="text" name="username" /></label><br /> <label>Email<br /><input id="input[]" type="text" name="email" /></label><br /> <label>Password<br /><input id="input[]" type="password" name="pswd1" …

Member Avatar for mr_scooby
0
718
Member Avatar for mr_scooby

I have a table that holds a users id and a cd number, what I would like is to be able to only increment the cd number based the users id not just incrementing it every time a new cd is created table [code] CREATE TABLE IF NOT EXISTS `cdcreation` …

Member Avatar for mr_scooby
0
90
Member Avatar for mr_scooby

hi guys, I would like to be able to take all the output of a order form and the database output of the selected items and return it to a xml document. I tried the file_get_contents and that just took the actual code from the php page. My website is …

Member Avatar for mr_scooby
0
77
Member Avatar for mr_scooby

hi guys, I have 2 tables, one called neworders which stores the part_id and num or parts and a 2nd table called parts which has all the part details including cost. tables are as follows [code] neworder part_id(primary key) number_of_parts parts part_id(primary key) 7-8 more columns, eg size, desc, sup …

Member Avatar for mr_scooby
0
152
Member Avatar for mr_scooby

Hello, I have 2 php forms, the first that takes the input and sends it to the second form which checks to see if the fields are empty. What I have to do is if both fields are not entered is return to the main page and highlight the field/s …

Member Avatar for mr_scooby
0
140
Member Avatar for mr_scooby

Hi, I have 2 tables that I have made using sql create table which seem to work ok until I try to insert data into the 2nd table then it throws a: didn't add 1 record due to key violations. When I use the design wizard and do exactly the …

Member Avatar for mr_scooby
0
100
Member Avatar for mr_scooby

hi guys, done heaps of googling and everything leads me to two outcomes. 1. You can't do it 2. You can do it this way [code] INSERT INTO User(userEmailAddress, userFirstName,userLastName,userStatus,userNickName,userMifrenzPassword,userEmailPassword,userDOB) SELECT 'overthehill@gmail.com','Ben','Hill','U','benny','milk','soccer','20-10-2000' UNION ALL SELECT 'smithy@gmail.com','Tony','Smith','A','smithy','bread','rugby','20-11-1976' UNION ALL SELECT 'hotpants@gmail.com','Sarah','Jane','U','hotty','toast','netball','15-1-2000' UNION ALL SELECT 'traci@gmail.com','Traci','Hill','U','raisins','coffee','hockey','20-10-2000' UNION ALL SELECT 'lol@gmail.com','Ben','Johns','U','stubby','jam','rowing','10-2-2001' UNION ALL …

Member Avatar for sknake
0
2K
Member Avatar for mr_scooby

Was just wondering if anyone here is an Access master have this code that I want too add a CHECK too but keeps on throwing a syntax error [code] CREATE TABLE Email ( userEmailAddress memo not null, timeDate datetime not null, contactEmailAddress memo not null, emailBoxType text(6) not null, readStatus …

Member Avatar for mr_scooby
0
106
Member Avatar for mr_scooby

hey guys am teaching myself html and css and have found something I'm not sure how to fix. I have a 3 page website I'm playing with using exactly the same html on all 3 pages except the title and all 3 linking to the same css sheet yet the …

Member Avatar for mr_scooby
-1
187
Member Avatar for mr_scooby

Im trying to make a simple windows form that records the date based on a click on a month calendar, the distance driven and time taken based on text box inputs. Im ok with arrays in console mode but no idea when it comes to forms/button click events. this code …

Member Avatar for ddanbe
0
105
Member Avatar for mruane

Just a few questions... 1) is C# and visual C# the same language? I downloaded the Visual C# IDE from microsoft, looking to be able to make my own programs using c#. 2) If they are the same, where do I find tutorials to learn to use the language? 3) …

Member Avatar for LizR
0
95
Member Avatar for mr_scooby

I have an array which collects a name and a mark,I want to use a method to get the total of the array, I assume this can be done I have googled it but it doesn't really give me an answer. heres Main [code] static void Main(string[] args) { Student[] …

Member Avatar for ddanbe
0
154
Member Avatar for mr_scooby

Hi, I am trying to add a timer countdown of 30 secs to a form I have made. Here is the code inside the start button [code] timer1.Interval = 1000; timer1.Enabled = true; [/code] here is the code inside the timer_Tick [code] timerlbl.Text = timer1.ToString(); [/code] what happens tho is …

Member Avatar for mr_scooby
0
144
Member Avatar for mr_scooby

Hi Guys, I am trying to make a console based ATM Machine simulator, I have removed all the code that was not relevant to this challenge I am having. What I am trying to do in display the balance which I can do, opening balance is 94.37, then I need …

Member Avatar for mr_scooby
0
166