User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 423,470 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 4,746 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 26 of 26
Search took 0.01 seconds.
Posts Made By: chmonalisa
Forum: ASP Jan 2nd, 2007
Replies: 3
Views: 1,609
Posted By chmonalisa
Re: Asp+xml+mssql

hey buddy,

try this

open a sqlcommand object and execute your search query.
take those results in a dataadapter and assign to a dataset
then load the dataset to an xmlfile. you can do that. it's...
Forum: ASP Jan 2nd, 2007
Replies: 2
sms
Views: 957
Posted By chmonalisa
Re: sms

vb6 is gud enough for mobile applications.

What you need to do is an SMS Engine which acts as a mediator between your vb application and Mobile.
Generally all the Cell Operators buy these Engines...
Forum: ASP Jan 2nd, 2007
Replies: 3
Views: 3,117
Posted By chmonalisa
Re: Radio button value in asp

Hi,

Attached is the code.

find the attachment and shoot out ur queries.:)

gud day

bye
Forum: ASP Jan 2nd, 2007
Replies: 3
Views: 2,192
Posted By chmonalisa
Re: Read Data from Website

Thanks Muhammad.

This is really a gud article.

Regards,
chaitanya
Forum: VB.NET Sep 21st, 2006
Replies: 8
Views: 4,862
Posted By chmonalisa
Re: vb.net project tile

hey buddy,

When I said an Internal chat application, you can clearly relate it to a thing like Yahoo.

But only with few features like
add buddy, delete buddy, invite buddy, send message etc.
...
Forum: MS SQL Sep 15th, 2006
Replies: 1
Views: 2,094
Posted By chmonalisa
Re: sql server 2000 on win-xp pc

buddy,

You can install Sql Server edition in Windows XP.

So what you might have installed is the server edition.

Try to remember while installing you might have selected
windows authentication...
Forum: MS SQL Sep 14th, 2006
Replies: 1
Views: 1,396
Posted By chmonalisa
Re: Views in SQL

hey buddy,

you can update the views with a single update statement

update dbo.view1

set col1='washington'

where country='USA'
Forum: MS SQL Sep 14th, 2006
Replies: 1
Views: 1,650
Posted By chmonalisa
Re: Question about SQL statement

michael,


in this case you should write this.

SELECT * FROM table WHERE charindex('abc',field)>0

this should work

thanks,
Forum: MS SQL Sep 14th, 2006
Replies: 1
Views: 11,665
Posted By chmonalisa
Re: Join 3 tables

buddy,

here it is


select t2.loginname,t2.wrknum,t1.time,t3.description

from table2 t2

left outer join table1 t1 on t1.loginname=t2.loginname
Forum: VB.NET Sep 14th, 2006
Replies: 3
Views: 4,347
Posted By chmonalisa
Re: how to create table to database when program is running

hello

Please correct me If i am wrong.

What you need is to create a table in ur database and store the details whenver a user runs the test .

right? if it so then here it is

simply use a...
Forum: VB.NET Sep 14th, 2006
Replies: 8
Views: 4,862
Posted By chmonalisa
Re: vb.net project tile

buddy,

Try developing an internal Chat application for you college.

You better take c# or vb.net to code this. This should be a challenging task for you.

Thanks,
Chaitanya.
Forum: C# Sep 14th, 2006
Replies: 2
Views: 7,374
Posted By chmonalisa
Re: Searching a String in DataGridView FW 2.0

hey Balaji,

Try this
use dataview to filter your table
and assign this dataview to your datagridview control.


DataView dv new...
Forum: MS SQL Sep 14th, 2006
Replies: 3
Views: 5,858
Posted By chmonalisa
Re: Can we call a User defined Function using Linked Servers ?

hey buddy,:lol:

first you need to add up the linked server

EXEC sp_addlinkedserver
@server = 'server1',
@srvproduct = '',
@provider = 'sqloledb',
@datasrc = 'LocalServer'
Forum: MS SQL Sep 14th, 2006
Replies: 1
Views: 2,380
Posted By chmonalisa
Re: Fulltext search with MS SQL

Hi Mark,


Here is the code. I never tried this before as I didn't need it till now.
But as I have seen ur query I thought I should do this.

See the code
Just copy and paste and see whether it is...
Forum: C# Sep 14th, 2006
Replies: 1
Views: 1,921
Posted By chmonalisa
Re: How to COmpare a word file and an XML file

hi mayur,

This is pretty tough to implement unless you have to time to write down the code.
use xmldocument to load the xml file.

use selectsinglenode() method and loop through all the nodes.
...
Forum: C# Sep 14th, 2006
Replies: 1
Views: 2,154
Posted By chmonalisa
Re: xml appending

hi plazmo,

You can only edit an xml file by loading it completelely.

Since many users hit this xml file , there is every possibility of data loss.

If you want to view only a small content from...
Forum: ASP Sep 13th, 2006
Replies: 2
Views: 2,766
Posted By chmonalisa
Re: Copy file with a name change

hey andrew,

Try this,


save the file name with a unique no.

and the unique no. is

day() & month() & year() & hour() & min() & second()
Forum: ASP Sep 13th, 2006
Replies: 1
Views: 987
Posted By chmonalisa
Re: recordset problem

sameera,


you better use this..

dim rs

set rs = rs.nextrecordset

'' do ur operations
Forum: ASP Sep 13th, 2006
Replies: 2
Views: 1,412
Posted By chmonalisa
Re: how do I control multiple instances of the client browser

hi kumaran,

You can do this by capturing the user's ip.

get the client's ip by using Request.ServerVariables("REMOTE_ADDR").

also assign a unique id to this client and save it in the...
Forum: ASP Sep 13th, 2006
Replies: 2
Views: 1,020
Posted By chmonalisa
Re: searching and paging..plz help..

Hi Kumiko,

Your code is very lengthy and it's difficult for me to go through it completely.

I suggest something for ur problem..

You want to keep paging intact while you search. right?
if this...
Forum: ASP Sep 13th, 2006
Replies: 2
Views: 1,582
Posted By chmonalisa
Re: Login failed

hello,


try this :!:

conn.open "Provider=SQLOLEDB.1;Persist Security Info=False; uid= ikim; pwd=ikim;Initial Catalog=ol;Data Source=localhost"

Note that u mentioned "pasword" instead of...
Forum: ASP Sep 13th, 2006
Replies: 1
Asp
Views: 871
Posted By chmonalisa
Re: Asp

hey karthik :cheesy:

You have to save the image to ur server. Unless you do this you cannot do anything with that image. If the user presses "save" then you get the saved image path and do you...
Forum: ASP.NET Sep 13th, 2006
Replies: 3
Views: 6,441
Posted By chmonalisa
Re: Default Website Stopped

you can start the default website by

typing "net start w3svc" in the command prompt.

You can also do this one:

write net start w3svc in a text file and save it with extn .bat

keep this file...
Forum: ASP.NET Sep 13th, 2006
Replies: 1
Views: 2,296
Posted By chmonalisa
Re: Need Suggestion regarding sending sms through asp.net app

HI Siya,

You cannot send an SMS through ASP.NET unless there is an external host which processes your requests.

There are two way you could do this.
1)prepare an XML message and dump in a public...
Forum: ASP.NET Sep 13th, 2006
Replies: 2
Views: 1,515
Posted By chmonalisa
Re: all .NET pages not working

hello,

You didn't specify the exact error you got..:p

Neverthless try these:

1)in the command prompt type IISRESET and click ok
2)in an IE window address bar write http://localhost and check...
Forum: ASP.NET Sep 13th, 2006
Replies: 7
Views: 1,462
Posted By chmonalisa
Re: 2 dropdownlists problem

hello

try this
;)
Const strSQLD As String = "select distinct deptCode,deptName From view1,table2 where deptCode like '" + strV + "%' order by deptcode"

You have to keep strV outside the quotes...
Showing results 1 to 26 of 26

 
All times are GMT -4. The time now is 3:23 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC