Search Results

Showing results 1 to 40 of 147
Search took 0.03 seconds.
Search: Posts Made By: adatapost
Forum: ASP.NET 4 Days Ago
Replies: 3
Views: 182
Posted By adatapost
You might want to read the ASP.NET and IIS Configuration (http://msdn.microsoft.com/en-us/library/ms178477.aspx).
Forum: C# 5 Days Ago
Replies: 1
Views: 139
Posted By adatapost
Create/Define report parameters. Take a look at this article - http://www.codeproject.com/KB/vb/MicrosoftReports.aspx
Forum: VB.NET 6 Days Ago
Replies: 1
Views: 270
Posted By adatapost
Take a look at code snippet,

Dim dt As New Data.DataTable
dt.Columns.Add("Name")
dt.Columns.Add("Status")
dt.Rows.Add("A", "Paid")
dt.Rows.Add("B",...
Forum: Java 6 Days Ago
Replies: 1
Views: 130
Posted By adatapost
Use split() method of String.


.....
String []items=null;
boolean found=false;
while (!found && (text = reader.readLine()) != null)
...
Forum: C 7 Days Ago
Replies: 2
Views: 190
Posted By adatapost
I think probably you don't understand what an enum (http://publications.gbdirect.co.uk/c_book/chapter6/enums.html) is. You can think of it as a sort of compile time #define. Take a look at this...
Forum: C 7 Days Ago
Replies: 2
Views: 263
Posted By adatapost
Hi,
Take a look at this article - http://linuxgazette.net/111/ramankutty.html
Forum: C# 7 Days Ago
Replies: 12
Views: 344
Posted By adatapost
Hi,

Please follows these steps:

1. Create a sub-class of System.Data.DataSet

Example,

namespace test
{
Forum: C 9 Days Ago
Replies: 5
Solved: char in c?
Views: 298
Posted By adatapost
In C language, char (http://en.wikipedia.org/wiki/Primitive_data_type#Characters_and_strings)value is stored in 1 byte. A char type may contain a single letter, digit, control character or special...
Forum: ASP.NET 10 Days Ago
Replies: 4
Views: 364
Posted By adatapost
From MSDN article - http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.commandfield.causesvalidation.aspx

SUMMARY:
Use the CausesValidation property to specify whether validation...
Forum: C# 10 Days Ago
Replies: 8
Views: 252
Posted By adatapost
Welcome annaqah.

Handle Paint (http://msdn.microsoft.com/en-us/library/system.windows.forms.control.paint.aspx) event of Form and use GDI classes to draw a vertical line onto the Form.

...
Forum: C++ 11 Days Ago
Replies: 2
Views: 205
Posted By adatapost
To use CSS files, JavaScript files and images in resource, you must convert all links in HTML file to be the resource numbers. Take a look at this article -...
Forum: ASP.NET 13 Days Ago
Replies: 1
Views: 250
Posted By adatapost
Welcome,

Use classes from ADO.NET (http://msdn.microsoft.com/en-us/library/h43ks021(VS.71).aspx) to execute stored-procedures. Take at look at this link -...
Forum: C++ 14 Days Ago
Replies: 3
Views: 405
Posted By adatapost
As the error says, the name getch() is deprecated, and _getch() (http://msdn.microsoft.com/en-us/library/ms235446(VS.80).aspx) is recommended instead.
Forum: VB.NET 17 Days Ago
Replies: 8
Views: 411
Posted By adatapost
Set SelectedIndex property,

listBox2.SelectedIndex = 0;
Forum: Java 17 Days Ago
Replies: 2
Views: 427
Posted By adatapost
JavaOS (http://en.wikipedia.org/wiki/JavaOS) - JavaOS is an operating system with a Java virtual machine as a fundamental component. It is developed by Sun Microsystems. Unlike Windows, Mac OS, Unix...
Forum: VB.NET 17 Days Ago
Replies: 2
Views: 365
Posted By adatapost
Take a look at this tutorial - http://www.dreamincode.net/forums/showtopic37361.htm
Forum: C# 23 Days Ago
Replies: 4
Views: 484
Posted By adatapost
Hi danny.
You have to handle formclosing event along with singleton (http://hashfactor.wordpress.com/2009/03/31/c-winforms-create-a-single-instance-form/) - single instance of Form.
Forum: ASP.NET 23 Days Ago
Replies: 3
Views: 359
Posted By adatapost
Show us your code work please. You will find some useful information from this MSDN page - http://msdn.microsoft.com/en-us/library/aa479339.aspx
Forum: PHP 24 Days Ago
Replies: 20
Views: 452
Posted By adatapost
You can use AJAX to post form data. Take a look at this link http://www.captain.at/howto-ajax-form-post-request.php
Forum: Java 24 Days Ago
Replies: 1
Views: 141
Posted By adatapost
You may increase to 4GB on a 32 bit system. If you are on a 64 bit system you can go higher.

use the cmd-line flags.

>java -Xmx6144M -d64
Forum: Java 25 Days Ago
Replies: 18
Views: 523
Posted By adatapost
You could use HTML Parser (http://htmlparser.sourceforge.net/), which a Java library used to parse HTML in either a linear or nested fashion. It is an open source tool and can be found on...
Forum: VB.NET 25 Days Ago
Replies: 3
Views: 323
Posted By adatapost
Try it,

Dim s As String = "This is an example"
s = String.Join(" ", s.Split(" ").ToArray().Reverse().ToArray())
Forum: C# 25 Days Ago
Replies: 3
Views: 162
Posted By adatapost
You are developing a email client. I think you will find some more information from this link - http://anmar.eu.org/projects/sharpwebmail/
Forum: C# 26 Days Ago
Replies: 4
Views: 285
Posted By adatapost
Take a look at this article - http://www.c-sharpcorner.com/UploadFile/harishankar2005/Reflectionin.NET12032005045926AM/Reflectionin.NET.aspx
Forum: VB.NET 26 Days Ago
Replies: 2
Views: 231
Posted By adatapost
Take a look at this thread - http://www.daniweb.com/forums/thread211516.html
Forum: C# 26 Days Ago
Replies: 3
Views: 360
Posted By adatapost
Reset the stream position before instantiate the reader.

xmlStream.Position = 0;
XmlReader reader = XmlReader.Create(xmlStream);
reader.MoveToContent();
.....
Forum: Java Oct 25th, 2009
Replies: 3
Views: 223
Posted By adatapost
Take a look at - http://www.softsynth.com/jsyn/
Forum: VB.NET Oct 17th, 2009
Replies: 3
Views: 235
Posted By adatapost
xfrolox,

I think you want to code which allows single instance of an application. Please take a look at this article - http://www.codeproject.com/KB/vb/sing_inistan.aspx
Forum: C# Oct 16th, 2009
Replies: 6
Views: 850
Posted By adatapost
For checkBox, use Checked and CheckState property.
List and ComboBox; use SelectedValue property.
Forum: ASP.NET Oct 9th, 2009
Replies: 2
Views: 573
Posted By adatapost
Yes, there are number of ways.

Take a look at this tutorial - http://livedocs.adobe.com/flashremoting/mx/Using_Flash_Remoting_MX/usingFRNET3.htm and a very good book Two-way ASP.NET/Flash...
Forum: JSP Oct 7th, 2009
Replies: 1
Views: 463
Posted By adatapost
Your code has some bugs. Have a look,
1. Variable var xmlhttp; must be placed outside the function.
2. Callback method,
xmlhttp.onreadystatechange=XLNAME;


<html>
<head>
...
Forum: C# Oct 7th, 2009
Replies: 6
Views: 224
Posted By adatapost
If your are working with asp.net web application then it is easy and fast in asp.net using httpmodule.
Read this article -...
Forum: XML, XSLT and XPATH Oct 4th, 2009
Replies: 1
Views: 770
Posted By adatapost
I think here is the best answer - http://p2p.wrox.com/xslt/76405-xslt-header-footer-word.html
Forum: C++ Oct 4th, 2009
Replies: 8
Views: 287
Posted By adatapost
Missing typename of argument in method definition,

int stringClass::wordCount(string line){
.....
//(n+1) = total; // <---------------Remove this
....
}
Forum: C++ Oct 4th, 2009
Replies: 2
Views: 232
Posted By adatapost
My suggestion and favorite are,

Effective C++ (http://www.amazon.com/Effective-Specific-Addison-Wesley-Professional-Computing/dp/0321334876/ref=pd_bxgy_b_img_b)
The C++ Programming Language...
Forum: ASP.NET Oct 1st, 2009
Replies: 4
Views: 575
Posted By adatapost
It's a sticky footer.

<html>
<head>
<style>
* {margin: 0; padding: 0}
html, body, #wrap {height: 100%}
body > #wrap {height: auto; min-height: 100%}
#main...
Forum: C# Sep 30th, 2009
Replies: 25
Views: 906
Posted By adatapost
Setup and Deployment system won't help you to set expire date/time or some restrictions of an application. You have to write some code. Please have a look at...
Forum: C# Sep 29th, 2009
Replies: 25
Views: 906
Posted By adatapost
Serkan, we are in need of your help.

@VibhorG,
Here is a great link (suggested by serkan:) ) - http://www.simple-talk.com/dotnet/visual-studio/getting-started-with-setup-projects/
Forum: C# Sep 29th, 2009
Replies: 25
Views: 906
Posted By adatapost
You have to add Custom Action, User Interface, and Setup Registry.

Take a look at http://msdn.microsoft.com/en-us/library/9cdb5eda.aspx
Forum: C# Sep 24th, 2009
Replies: 4
Views: 248
Posted By adatapost
Here is a service provider - http://portforward.com/. You will find some useful details.
Showing results 1 to 40 of 147

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC