Forum: ASP Jan 2nd, 2007 |
| Replies: 3 Views: 1,609 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 Views: 957 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 |
Forum: ASP Jan 2nd, 2007 |
| Replies: 3 Views: 2,192 |
Forum: VB.NET Sep 21st, 2006 |
| Replies: 8 Views: 4,862 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 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 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 |
Forum: MS SQL Sep 14th, 2006 |
| Replies: 1 Views: 11,665 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 |
Forum: VB.NET Sep 14th, 2006 |
| Replies: 8 Views: 4,862 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 |
Forum: MS SQL Sep 14th, 2006 |
| Replies: 3 Views: 5,858 |
Forum: MS SQL Sep 14th, 2006 |
| Replies: 1 Views: 2,380 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 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 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 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 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 |
Forum: ASP Sep 13th, 2006 |
| Replies: 2 Views: 1,020 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 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 Views: 871 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 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 |
Forum: ASP.NET Sep 13th, 2006 |
| Replies: 2 Views: 1,515 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 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... |