- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
171 Posted Topics
hi, I am creating a form for user to update their details which is saved in the database. So far i can show their details in the form where i have a submit button but the updating part doesnt work(it doesnt update at all). here is the code: [CODE] <html> …
hi everyone does anybody know a good java free ebook. if anybody has it plz send it to me or give me the link. or any sort of programming ebook would do. thanx :cheesy:
can you plz show me the simple mutli poll handler example thanks alot!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
I am using jquery tabs in master page to open the aspx files once user clicks on a tab heading. But if I use my page as link it will repeat the "header" part(similar to this:http://stackoverflow.com/questions/9459991/jquery-tabs-and-asp-net-master-pages-issue). Already tried the solution but cannot get my head around it. Can someone please …
hi, I want to pass textbox text from one form to another using Property get and set. I have done it successfully on click event and then when popup window opens (or form2 opens) i get the value after initialization... But i want to learn how to do it with …
Hi All, I have the attached worksheet. I wanted to copy the IDs from Column A to Column L but only after comparing it with what is already in Column L and excluding anything already in L from the copy selection e.g. Column L already has ID 877104 so it …
hi, I heard there is a plugin for eclispe that you can use to produce the gui part of application, but i dont know the name. has anyone used it? is it easy to work on then writing the gui yourself? thanks
Currently sending emails and setting the Return-path of an email(System.Net.Mail) works if i put : [CODE]MailMessage msg = new MailMessage(); msg.Sender = new MailAddress("[email protected]"); msg.Headers.Add("Return-Path", sReturnPath);[/CODE] but if I send a successful email it would say delivered on behalf of the email above.... any ideas how to resolve this not …
Hi, Want to remove duplicates from a list so if my list contains: [CODE]www.test.com test.com mytest.com[/CODE] I want the final list to look like below(only selecting the domains with www from the duplicate in front) : [CODE]www.test.com mytest.com [/CODE] I have this linq but it seems to ignore all the …
Hi, I am trying to create a Please Wait message in excel vba. This is to let the user know while processin some sql querry at the background which may take unkown amount of time. I would like to have it displaying in a userform. The situation is: Userform is …
am trying to write an application in c# to lock or freeze all programs until someone enters a value in the app's textbox and clicks 'ok'. The purpose of the app would be to get people to enter their time(by force :) ). As far as I know you can …
hi, I am trying to replace an integer in string or list...what i have done is to use foreach loop..but it wouldnt replace it. The whole idea is that i have few lines of string in list and want to find a line and replace the int with another int,,, …
hi, I have three comboboxes in my windows form. I want to relate them all with each other. the data is coming from database a table which has the following columns: id description ap code seg code now if user selects description then ap code and seg code should change …
hi you know I'm doing a project on java instant messenger. I was thinking how would i implement it. should i use a seperate class for each component of the messenger. for example one class for its gui, one class for its chat diaglog, one for it jtree panel(to show …
Hi, I am trying to output some data from sql db within excel to XML. I am updating the sql db from the excel worksheet and then outputting the records from the db to xml. I have used CDATA to parse html within xml but i can only get one …
Hi, I am trying to output some data from sql db within excel to XML. I am updating the sql db from the excel worksheet and then outputting the records from the db to xml. I have used CDATA to parse html within xml but i can only get one …
I am kind of new to wpf and I searched all over google and couldnt find specific answer to this, but if i have missed it sorry :). Anyway I want to extend the textbox control in wpf and use it in winforms. so basically i did inherit from TextBox …
hi, I was wondering if someone give you an image e.g. [url]http://www.google.co.uk/images/nav_logo29.png[/url].. how do you get one image and include it in your page without using photoshop etc. Say we have a pack of playing cards and all the cards are in one image how do you select one card …
hi, I am creating a form on runtime using the following code. how would i be able to change the icon to something in resources as i dont have access to it. [CODE] Window mainForm = new Window { Height = 340, Width = 315, }; [/CODE] thanks
hi, I am doing an instant chat system using java client and server architecture. currently im implementing the server side of it. my question is: Should i design a gui for the server side as well? if yes what kind of functionality should I include? thanks
Hi, I am new to ASP.NET and have been given a project in asp.net and silverlight. now my question is would i be able to use ajax with silverlight application or not? can someone please explain this to me. thanks
Hi, Have created a simple application for android using 2.2 and eclipse as ide. but whenever i start the project i just get a black screen with white text that says "Andriod ---"(see below) I have create AVD as well. Any help would be appreciated
hi I was wondering which one do you think is the best? I have been using netbeans but have no experience with eclipse, so i can not say which one is best :lol:
hi, I have a table called shoutbox, i created it this way: [CODE]CREATE TABLE `shoutbox` ( `id` INT NOT NULL AUTO_INCREMENT , `ip` varchar(20) NOT NULL , `name` varchar(30) NOT NULL , `url` varchar(30) NOT NULL , `message` varchar(50) NOT NULL , `date` date NOT NULL , PRIMARY KEY ( …
Hi, I have browser embeded, How would i fire and even whenever a browser field is clicked. basically i have this website where when you click on a fieled it will show a button. i want to capture that button's click. any help would be appreciated thanks
Hi, First of all it is not home work or anything lol, creating this project just for fun of it and want to learn more. Anyway, I have decided to create a dictionary from english to my language(farsi). So if I have a textbox for user to enter text and …
Hi, I have come across a strange validation error in windows web browser control. basically i am navigating to a secure website in browser and there is a textbox where when you click a calender pops up. when you select a date and click submit it clears the textbox field …
Hi, is there any source or tutorial i can use to build a voice chat application, it is just for test purpose want to build my skills on php. i searched google and came up with using ajaz and zend framework. but i want your opinion on this ? thanks
hi does any1 knw how to put the path for servlets in netbeans. it is located in src/java/controll/servlet i have this in my code action = "servlet/controll.servlet" but it says directory not found thanx ps I posted it here because nobody is answering it in jsp section!! :rolleyes:
hi, I want to build a technology site for afghan. i want a domain name suggestion, afghantech.com is already taken and i want it to be short and related to technology. can you suggest some. thanks
hi, I want to write one file which is .html to .php extnsion right now i have this [CODE]RewriteRule ^(artist.html*)$ /artist.php?%{QUERY_STRING} [L] RewriteRule ^$ /artist.php?%{QUERY_STRING}[/CODE] but this effects all html files any help please
hi i had this error i think twice. once the footpath wasnt set properly and the other time i compiled a class with no main. so check for these two, :) :mrgreen:
Hi All, I have a web browser control on my Form. I want to get the text lenght of an label element in web browser. what I have done so far is to get the element by id as follow [CODE]HtmlDocument htmlDocument = wbMain.Document; if (htmlDocument == null) return; HtmlElement …
hi, I am trying to validate a textbox that has a value of 1 and up so i am saying : [CODE] if (mytextbox.Text > 0) { //do something }[/CODE] but it is not working any suggestions please bare in mind that the text has 0 as default value so …
hi, I am trying to validate a textbox that has a value of 1 and up so i am saying : [CODE]if (mytextbox.Text > 0) { }[/CODE] but it is not working any suggestions please bare in mind that the text has 0 as default value so i cannot say …
hi, This tutorial helps you step by step: [url]http://elab.bus.umich.edu/how-to-oracle-jsp.php[/url] thank you
hi, i have the following code: [code]#include <iostream> using namespace std; class test{ public:: bool t() { cout<<"enter your answer(y or n)\n"; int answer = 0; cin>>answer; if (answer =='y') return true; else return false; } }; int main(void){ test t; return t.t; } [/code] i get this error: cannot …
hi, Is there a way to include a php file in .tpl file. basically i have a menu (javascript,html and css based) that i want to include in the .tpl file. thanks
hi every1 i am doing my final year project next year and i have decided to do something in java but cant think of it. does any1 have an idea of what to do thanx :) :o :surprised :confused:
hi, I am trying to display a decimal in a textbox as 10.23. right now it is shown as 10.2333. i have created a function that removes the last two digits of the number but sometimes the number is 10.23 so when using this function it will remove the two …
hi, I have tried sending email from .html page, which i converted from microsoft word document and saved in my pc. and it works fine sends the email, but the only thing is i cannot see the images. the images are in another folder in same directory. can someone help …
Hi, I am trying to insert into Access Database using following code [CODE]OleDbConnection empConnection = connection; string insertStatement = "INSERT INTO d " + "([Employee],[Deduction Type],[Number of Hours],[value],[Month],[Year],[Comment]) " + "VALUES (@Employee,@DeductionType,@NumberofHours,@value,@Month,@Year,@Comment)"; command = new OleDbCommand(insertStatement, empConnection); command.Parameters.Add("Employee", OleDbType.Numeric).Value = Convert.ToInt16(txtID.Text); command.Parameters.Add("DeductionType", OleDbType.Numeric).Value = Convert.ToInt16(cmbDedNum.Text); if (txtNoOfHours.Text == string.Empty) { …
Hello, I have an access database with 3 tables. The table i am working on is tblemployee. On a form i have a combo box with the employee numbers. Now, when a user chooses an employee number from the drop down box, i want the initial and name of that …
hi everyone, I am new to google ranking etc. when i type daniweb in google. i get a result where it has links at the bottom for each section of the website(see pic below). i was wondering how do i get this for my website... do i have to pay …
hi, i have a tree view which gets populated using object. if i have 4 nodes and click on top one it gets expanded at the bottom. e.g. node1 node2 node3 node4 if i click on node1 i get node1 node2 node3 node4 node1 children here is my code treeview.add(newnode) …
hi, i have this script, which i want to order by name. but when i say order by name asc at the end i get error: here is the bit i am changing [CODE]$genre_id = $_GET['id']; $items = ITEMS_PER_PAGE; if(isset($_GET['page'])) { $offset = $_GET['page']; $offset *= $items; $query = 'select …
hi, I have this css code [CODE]#leftcol { position:relative; top:-10px; left:-10px; float:left; width:220px; voice-family: "\"}\""; voice-family:inherit; width:200px; margin:0 0 -10px 0; padding:10px; background:#FFFFFF; z-index:100; } #rightcol { position:relative; top:-10px; right:-10px; float:right; width:220px; voice-family: "\"}\""; voice-family:inherit; width:200px; margin:0 0 -10px 0; padding:10px; background:#FFFFFF; z-index:99; } #centercol { position:relative; padding:0 240px; }[/CODE] …
hi, I am trying to learn how to upload multiple Music files to server then save information about them in database e.g. albumname, filename, type and maybe url. i have few questions: 1. would i be able to write the albumname in database as the folder i am uploading to. …
Hi, how do i display all my other pages in my index page content. e.g. i have a menu and when user clicks on a section like music it doesnt go to music page but shows the music page in contents section of index page. thanks
Hi, I have this in my css file i have said the html to be position:abolute but it doesnt when i minimise. if i say absolute in logo same thing nothing happens and the body comes at the top of logo: [CODE]html { height: 100%; overflow-x: auto; position:absolute; } body …
The End.
sam1