199,114 Archived Topics
Remove Filter ![]() | |
Well I have a doubt about where can I find some examples about this funcion, I need to use it on a program. Any ideas are welcome xD | |
hi. at first: i'm sorry for my poor english. i want to Convert a string into a varibale like these: dim a as string="this text must be show" dim b as string="a" 'in my application b's value read from an excel sheet and must point to a variable that exist … | |
Hello again, I'm trying to create a text field that only accepts numbers, a single decimal, and a dash (for negatives) but only as the first character. I have conquered everything except for pasting, and have no idea on where to begin. Below is the current code (working!) code that … | |
i wish to print sll the combinations of digits of a number eg 123 gives 321 132 231 132.... [code] class numbers { public static void main(String args[]) { int num=123; int x=num%10; int y=num/10; int z=100*x+y; System.out.println(z); } } [/code] this is all my brain is letting me to … | |
I'm taking a stab at multiprocessing and I need one process to tell the other to run a given function. On the receiving end, I'm trying to figure out how to interpret the message it gets. I could set up a big nest of if/elif to test for every possible … | |
I want to make sniffer in C++.So can anybody help me out by providing codes?? | |
For some reason, my numbers aren't adding in correctly and it's taking the -1 sentinel value and adding it into the total. [code=C++] // worthless testing.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using std::cout; using std::cin; using std::endl; int main() { int … | |
Good morning, I have been trying to research the net on the subject of "how to set a folder view utilizing a VB.form button", I've found references to the "IFolderView : SetCurrentViewMode Method", but no concrete examples I could work with. I haven't been able to find what I need … | |
Hey guys, Although I decided against using a listbox and simply just using a subform, I did spend a lot of time trying to figure out how to get the listbox to store more than one values for that field. If the listbox multiselect property is on "None", it stores, … | |
import java.util.*; class Array { Scanner in() { return new Scanner(System.in); } void out(String n) { System.out.print(n); } int[] getarray(int n) { int a[]=new int[n]; for(int i=0;i<a.length;i++) { out("Enter A["+i+"]: "); a[i]=in().nextInt(); } return a; } void showarray(int[] a) { for(int c:a) out("Array: " +c); out("\n"); } void sortinc(int[] a,int … | |
Dear Sir, It is a simple example using a string. [code] program dowhile; {$APPTYPE CONSOLE} uses SysUtils, OurCrt; var my_words : string; begin my_words := ''; writeln('Enter some words (type "stop" to finish):'); readln(my_words); while (my_words <> 'stop') do begin clrscr; Writeln('You typed:'); writeln(my_words); writeln; writeln('Enter some words (type "stop" … | |
hi, i want to connect two machines using C# as peer to peer connection so that teh files are shared with privacy.. through ther Ip addresses how do i do it plz help | |
I had a hard drive crash and stupid me haven't made backups for at least a year. I had several projects for which I used Delphi 5 and have lost all the code. Is there any way of getting the code back by un compiling the exe file? | |
[code] i want a program which asks the user to type the password. If he goes wrong three times exit.this is my code import java.io.*; class password1 { public static void main(String args[])throws Exception { String pass="samarth"; boolean flag=false; BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String [] password=new String[20]; int i; for(i=0;i<3;i++) … | |
Can some one please do a small XML / ASP coursework for me... I have no idea in the topic.. Had been sick for a couple of weeks and now the cw is due in August.. I am ready to pay for it as well... Please email me on [email]sk1017@mdx.ac.uk[/email] … | |
hi guys i just want to perform custom paging in which at the footer of the grid view ,there must be a pager 'pervious/next with numeric' this is what i did [B]in aspx page[/B] [code=asp.net]<asp:GridView ID="TableGridView" OnPageIndexChanging="TableGridView_PageIndexChanging" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" > </asp:GridView> <asp:Button ID="btnConnect" runat="server" Style="z-index: 113; left: 260px; … | |
Hi all! Does anybody know how to generate a makefile from a visualStudio project? I kind of remember this was possible years ago, but can't find this option on the VisualStudio Express edition 2008 I am using now... I have to transfer projects from VS to eclipse and need the … | |
Hi all. Is it possible to apply a checkbox in column header? If yes, how can this be done? And also can different types of options be provided to the user like in Win Vista ? Please reply soon I need it badly. Thanks. | |
hi i am working in vb.net 2005, i am woring network system (my system is client system) how to get my server drive and dir list for the purpose of database backup any one help me. thanks | |
hi im again,,,,,, thanx for daniweb i get the solution to my 1st problum. now the second problum; i have a textbox on my windows form and i need to validate it. rule is user must not able to press any A-Z && a-z && !-* keys on the key … | |
I am new for PHP language I dont know how to run PHP files on out machine so please anyone tell me how to do it thanks ![]() | |
For instance, let's say I have two images preferably jpeg/bmp that are 128x128 - I would like the code to stitch them together so the resulting image is 256x128. I want a c++ program for it..is it possible using files in c++. | |
I have implemented a log-in routine that I thought captured SESSION variable to use through out all my PHP pages of my site. Here is the snippet of code which sets the session variables: [CODE] if($result) { if(mysql_num_rows($result) == 1) { //Login Successful session_regenerate_id(); $member = mysql_fetch_assoc($result); $_SESSION['SESS_MEMBER_ID'] = $member['id']; … ![]() | |
hye all....currently im developing a system using active expert sms and pager toolkit. i need to do automation code for receive and sending SMS. Anyone out there can help me out?? im really cant figure it out?? thankz | |
Hello, i need help in some subject i can't handle with for few days. lets say i have form that handle with some rent order (like....billiboards) after the user choose the number of the billboard and the Location and everything else, he need to choose 2 dates. one for the … | |
hi guys , i got a solution at [url]http://amitkumarmca04.blogspot.com/2009/03/custom-paging-in-grid-view-control.html[/url] but i dnt knw which code has to be written in aspx ,which has to be written in code behind and which has to be written in class file and how the how has to be written can any one help … | |
Hello Frndz i m in complete mess... i have to a table with Add/Remove rows features... it should look like this - [code]textbox1 | textbox2 | Add Button[/code] after clicking the add button Row will append and Disable the textbox with values...!!! It looks like this after clickin Add Button.. … | |
I am writing a method that has to do with strings and I was stuck on how to go about coding this. Any help getting it started or tips at all would be great. Thanks. MyString::MyString(const char* s) This constructor takes a pointer to a constant C-style string as its … | |
I am making a script which manipulates ID3 tags. I want a certain function to be used on every file in a directory recursively. I have written the script but it is not behaving like I would expect in some cases. If I give it exec perms and put it … | |
hi guys, i have a php page with java script embed in it , i have 3 forms in a [B]single page [/B]... namely form1, form2, form3 . form 1 and form2 have a text box , these text boxes get input from users. Now my task is to get … | |
I was looking through the source code to a game, and I came accross this line: [code=c++] static ConCommand name##_command( #name, name, description, flags ); [/code] I was wondering what all the hashes(#) do ?? | |
I want to be able to find a class with a variable in it: [code=c++] for(int i=0;i<classes.size();i++) { if(class[i].name == classes[i]) return class[i]; } [/code] I think class would be a list of classes that are instanced. where classes is a vector of strings. Is this possible? | |
Hi all, Been at this for a while now and finally gave in to seek help. Basically, I'm trying to setup a regular expression for a decimal. Where there's 1 to 7 integers in front of the decimal point, and 1 to 2 after the decimal point. This is what … | |
Hi! I have added an action listener for a button. When i click this button it should go to the second tab in the tabbed pane which i have created. I have created two tabs as follows: [CODE] tab.addTab("Change Password", panel1); tab.addTab("Add new User", panel2); [/CODE] and the action listener … | |
I have problem with the responseText property in Safari, Google Chrome and IE. Line 68 - the responseText is empty. This works fine in Firefox and Opera. Also i have this problem with the responseText only in the block that starts at line 61. I don't have problem with the … | |
i am a al atudent...i hv to do a pjt about creating a database of sports day...although i hv learnt some sql about database...but i really don't know how to start to create a database.....eg...use wt software..wt have to include inside.....how can i show my product to my teacher...the pjt … | |
hi, there, I am coming up with a registration form. I want to know how to come up with a readonly form. Firstly, the user has to register themselves on this form, then once the user has pressed the submit button, the user will be sent to the next page, … | |
Hi, I'm somewhat new to C# and I've created a numbers (backspace, delete, negative, and decimal) only text box. However the way I'm testing whether to allow for negative numbers only allows them to be added if they are typed as the first character. Below is in an if statement … | |
Hey I just got this book Accelerated c++ and it seems pretty good, but I'm having one problem in chapter 4. When I compile my grading program in chapter 4. I can't get the final version to work. I believe I'm supposed to enter a students name followed by grades, … | |
Howdy, I am quite unskilled on UI but have been tasked with looking at behavioral problems on our site. It has been observed that the app acts differently when a user clicks on a submit button with a mouse versus tabbing to it and the pressing Enter on the keyboard. … | |
I can't get MiniFrames to work and I really have no idea how to. I'm a complete noob when it comes to wxPython as I just started learning today. Heres the code for my GUI so far and I want to add a mini frame as a vertical toolbar along … | |
Hi, I am trying to schedule a python compiled file to run using windows scheduler. But it does'nt run successfully The script writes to a SQL server database installed on the same machine as python and the script resides on the same machine. The script imports the urllib, sys, threading, … | |
Does anyone know a way to guarantee that a copyright has not been removed from a script. An example would be this. I put a copyright notice on page one, when the page is loaded it checks with page 2 to see if the copyright is there or not. If … | |
what do u mean by this code below? 1)vector<int> V(alpha); 2)vector<int> V(vector<int>) Whats tat declaring? Its not normal vector declaration. Plz help. Thnx | |
Hi, I have a DropDownList (filled in the rowCreated method) in a TemplateColumn in a GridViewRow. A user can add a row to select another value in the new dropdownlist created. I need to trigger a validator (I need this because this is only a small part of a site … | |
hi guys, i want to be able to have three different names for one program. to do that i can create two other setup projects and change the product name, but i dont feel like it is proper way of doing that. so i need to run setup project with … | |
i have register form with some information about users, there is few textbox, some dateTimepicker, and some combo box that takes the data from a database (ODBC). the textbox and the datepicker works fine and insert into the data but i cant handle the data bound combo box. PLEASE HELP … | |
Hi; I want to add a string of numbers(e.g 9999) which are stored in a text file. [code] #include <conio.h> #include <stdio.h> #include <stdlib.h> void main (void) { clrscr(); char ch; int x=1; long sum=0; long integer; FILE *fptr=fopen("thousand.txt","r"); while (ch!=EOF) { ch=fgetc(fptr); ch= .....................I AM STUCK HERE.............. } fclose(fptr); … | |
Hi all, I am making a web page in which i want to use to dates one for "FROM" field and other for "TO". But i want to for this calendar should not show backdate means it will show all dates after today but it will not show yesterday date … | |
I am new here..i don't really know how to go about this site but guess this is a start and i hope i can be corrected..i need couple of answers to the questions i have below: 1- Discuss any 6 application areas of Computer Graphics? 2- Explain briefly what you … |
The End.