Hi
I have a P4 3.6ghz with 3 GB RAM and a Sony DVD RW DW-Q30A. I use Nero to burn with. When I burn a DVD, it says that it burn in 8x, but a file that is 4 GB take me 1 hour to burn, that is obviously not correct. There must be something wrong. Beacuse when I do the same thing on a P4 1.5 Ghz...
Hi
I have a form that holds a textfield, this textfield get its value from a sql server database, and the datatype for that specifik column is ...
Decimal
Precision: 18
Scale: 2
When I then try to update that value with the textfiled from the form, a value can for example look like this...
Hi
I have a database that looks like this....
NodeID ParentNodeID Text NavigateUrl
1 books #
2 1 book 1 page.aspx
3 1 book 2 page.aspx
4 3 pockets page.aspx
5...
Hi
I try to run the following query..
SELECT
(SELECT DISTINCT Artno, L, D, CreatedBy FROM dbo.tbl_Art WHERE (L = N'SE')) AS SE,
(SELECT DISTINCT Artno, L, D, CreatedBy FROM dbo.tbl_Art WHERE (L = N'GB')) AS GB
FROM dbo.tbl_Art
But I get a error message telling me..."only one expression...
Hi
I would like to create a function that check inside a folder if a file exsits, and if so return True. Could anyone help me out here in vb.net
Regards
Hi
I have a form that has x number of values in itself. It is filled with data from a database, each row from the database make a new position in the form. And each position has a checkbox to it. The checkboxes has a javascript assigned to it, so if all checkboxes that has the same name is...
Hi
I have this sql question...
SELECT DISTINCT FileName, Lang, Artno
FROM dbo.tbl_ArticleFiles
WHERE (Artno = N'123456') AND (Lang = N'SE') OR (Lang = N'GB')
This give me 2 rows that looks like this...
FileName Lang Artno
file1_se.txt SE 123456...
Hi
Is it possible to check if a value in a stored procedure is "" and if so not make an update.
UPDATE
tbl_database
SET
txt1 = @txt1,
txt2 = @txt2,
WHERE
(ID = @ID)
Lets say for example that @txt1 is "" then I don't want to make any update for txt1...
Hi
I have 2 database tables with a common column, I would like to find all records that exsists in table2 but not in table 1. I guess this is a easy task, but I'm lost right now.....
Regards
Hi
I have a page that generate a pdf and send it to the web browser through Response.BinaryWrite. The asp page runs on a Windows 2003 IIS 6 server, and since this file tend to be larger that 4 MB I get an error from the server. I realize that I have to change settings in the machine.config...
Hi
I have added a drop downlist on the aspx page and filled it with items. It looks like this....
And in the codebehind I have this code...
<asp:dropdownlist id="ddl" runat="server" Width="144px" AutoPostBack="true" SelectedIndexChanged="Selection_Change">
<asp:ListItem...
Hi
I try this code in VS..
Private Sub Submit1_ServerClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Submit1.ServerClick
If Not File1.PostedFile Is Nothing And File1.PostedFile.ContentLength > 0 Then
Dim fn As String =...
Hi
I have a database table that contains theese columns...
Name Language Trans Description
Book 1 US Y US Book
Book 1 GB Y GB Book
Book 1 ES Y ES Book
Book 2 US Y US Book
Book 2 GB Y GB Book
Book 2 ES Y...
Hi
I try to use this code in a vb.net application but I get a an error on the "MyCommand.ExecuteNonQuery()" line.
I dont see any faults in this code, am I missing something here?
Dim MyConnection As SqlConnection
Dim MyCommand As SqlCommand
Dim MyDataReader As SqlDataReader
MyConnection = New...
Hi
Is there a way to replace null values in different columns in a database table with ''?
I know I can run a update on the table, updating each column. But I would like to it in one action
Regards
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.