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
~7K People Reached
Interests
databases, oracle, sql, web developing, programming, soccer...but i suck at all of them.
Favorite Tags
Member Avatar for super-duper

Hey, what's up guys, Can anyone explain what ADT is? How do you know when you are using it? When? Why? I mean, in a simpler way than some books define it. P.S. I am not even sure if my questions are valid :D Thanks!

Member Avatar for rucha_1
0
2K
Member Avatar for super-duper

Hey, everyone. I am writing a batch script (.bat program) to automate some tasks. And when that certain task is complete, I would like it to send an email to the admin saying if the task was completed successfully or it failed. It will figure out if the task was …

Member Avatar for r4ravi
0
1K
Member Avatar for super-duper

Hi, I am working on a Sharepoint 2007 site. It has 2 lists: calendar and contacts. I was wondering if there is a way to connect/link those 2 lists to a table in a database, from where they could pull out the necessary data and stay updated. To make it …

0
108
Member Avatar for super-duper

I am trying to access "My Network Places" on my work desktop via cmd prompt. However, when I do listing on any directory, "My Network Places" does not show up. Is there a way? Thanks,

Member Avatar for JorgeM
0
127
Member Avatar for super-duper

Hi I am trying to access my "My Network Places" through cmd window. Is that possible? So far, when I do the listing using the "dir" command, "My Network Places" is not showing up anywhere. I can get to it using the mouse and gui. Thanks,

Member Avatar for JorgeM
0
248
Member Avatar for super-duper

Hey guys, I am trying to write a batch script that GETs the user input for location and a name of the file, STOREs/SAVEs it somewhere (in this case, in those 2 text files), and goes and grabs them for future use. This is gonna be a part of my …

Member Avatar for Reverend Jim
0
228
Member Avatar for super-duper

I have been working on my batch script for a while now. I am working on a .bat script that will automatically deploy/execute stuff. For that, it will just ask for user input for once. That user input will be consist of 2 parts: file directory (where the file is) …

Member Avatar for Mocabilly
0
246
Member Avatar for super-duper

Hey, everyone. I am writing a batch script (.bat program) to automate some tasks. And when that certain task is complete, I would like it to send an email to the admin saying if the task was completed successfully or it failed. It will figure out if the task was …

Member Avatar for Habitual
0
164
Member Avatar for super-duper

Hey everyone, I am working on this huge excel sheet, actually 2-3 sheets. I am trying to make a master list of everything. Let's say Sheet-1 has columns "Name", "Description". I have to go and look at the "Name" column, copy the row under "Description" column, and put it under …

0
75
Member Avatar for super-duper

Hi, I am trying to learn some XML. I am getting confused, or should I say, getting lost while trying to understand the DTD, SCHEMA, PCDATA and CDATA. Can someone, please, explain them the simpler way...if there is any? :) I think I am having hard time understanding especially the …

0
65
Member Avatar for super-duper

[CODE]<?php include('dbconnect.php'); Print "Database was found and connection was successfull!" $fname = $_POST['fname']; $lname = $_POST['lname']; $address = $_POST['address']; $city = $_POST['city']; $state = $_POST['state']; $zip = $_POST['zipcode']; $sql = "INSERT INTO `demoform` VALUES ('$fname', '$lname', '$address', '$city', '$state', '$zip')"; if(!mysql_query($sql)){ die('Error: ' . mysql_error()); } Print "Your information has …

Member Avatar for baig772
0
181
Member Avatar for super-duper

I'm trying to create a delete button that lets a user "delete" an entry from mysql database. I have a demo.php page, where my php connects to my database and inserts data into it. And I have a demo-form.php which is to display the form and when "submit" button is …

Member Avatar for vaultdweller123
0
823
Member Avatar for super-duper

Hey guys, I was just installing the PHP on my laptop. And, on one of the windows, it is asking me if I want the wizard to setup a web server. Do I need one? There is a list: IIS FastCGI, Other CGI, or Do not setup a Web Server. …

Member Avatar for diafol
0
285
Member Avatar for super-duper

Hi, I'm working on my time complexity understanding in C++. Right now, I'm trying to figure it out, and kinda got some of them, such as: constant O(1): [CODE] int first(int N){ int i = N; int x = 0; x++; return x; } [/CODE] O(n) [CODE]int second(int N){ int …

Member Avatar for Narue
0
143
Member Avatar for super-duper

Hey guys, I'm reading this thing about "Time Complexities". But I'm having a hard time wrapping my mind around it. I know that it's all about the different algorithms that take different amounts of time for different amounts of instructions and stuff. What I don's understand is that how to …

Member Avatar for super-duper
0
112
Member Avatar for super-duper

my switch statement is not working properly. it works fine till case 'C', after that nothing is happening. Any ideas? [CODE]void processData(List<Movies>& myList, Stack<Movies>& myStack, Queue<Movies>& myQ){ Movies movieObj; int numInStack = 0, numInQ = 0, num2process = 0; fstream inFile("newReturns.txt"); if(!inFile){ cout << "Unable to open Returns.txt." << endl; …

Member Avatar for Fbody
0
180
Member Avatar for super-duper

This is part of my linked list program. I need to change the data(node) with a new one when it is found (using the find function. And in other case I need to delete the found item using deleteNode() function, once the matching item is found. But, it is not …

Member Avatar for super-duper
0
168
Member Avatar for super-duper

Hi, I'm working on this program where I have to do some updating. In this case, I have to add a new item to the linked list, and it should be in a sorted fashion (ascending). I am trying to use my find() function, which returns the previous node (*ptrPrev). …

Member Avatar for Greywolf333
0
124
Member Avatar for super-duper

I need help with this problem, here. I have 2 functions: "find4update" is supposed to compare the incoming parameter "item2" to the item that is already in the linked list, and return the value of "found". And my second function "deletNode" should use that "find4update" function and delete the found …

Member Avatar for Narue
0
90
Member Avatar for super-duper

[CODE]//************************************************************************************ // // This program keeps track of speakers' bureau. // It displays a menu, where the user can add info, // view the info of another speaker that's already in there, // and etc. //************************************************************************************* #include "stdafx.h" #include <iostream> #include <iomanip> #include <cstdlib> using namespace std; //************************************************************************************** // function …

Member Avatar for Fbody
0
391
Member Avatar for super-duper

i'm trying to count the number of people (i called speakers) that are on the list. But, in order to do that, I have to know that there is actually some name is written in that person's spot. In other words, I want the "for" loop to skip/don't count the …

Member Avatar for embooglement
0
164
Member Avatar for super-duper

//************************************************************************************* // This program keeps track of speakers' bureau. // It displays a menu, where the user can add info, // view the info of another speaker that's already in there, // and etc. //************************************************************************************* #include "stdafx.h" #include <iostream> #include <iomanip> #include <cstdlib> using namespace std; //************************************************************************************** // this is …

Member Avatar for super-duper
0
180