I need to run webservices without installing the framework on a windows XP Pro system. webservices aren't available in IIS 5.1 it seems, is there any way to fix this ?
many thanks
I've been looking everywhere on the net, I don't see what I'm doing wrong.
My query is SELECT link,datum,IP,type FROM visipro2 WHERE datum > #2007-03-08# AND type = 'email' order by datum desc
It doesn't only return the dates in march, but 3-oct. shows up as well.
link datum IP type...
Well I made a function some time ago. It's a huge class in the form_load I call fillSearch() ... and I can call it, it works. I just can't find it anymore. I only have 2 .vb files, I searched through entire current project and it certainly isn't located in a dll. How is this possible ?
is it possible to write a Regex to join the different matches in 1 result ?
ea. I wanna find height and width of a fridge but they're not right behind each other. ea <ID=height>Height = 10</ID>blah blah blah blah blah<ID=width>Width = 30</ID>
I just need height = 10 and width = 30 joined in 1...
Suddenly my entire layout was gone.. so I redesigned it in the same project since the code was still there. Now when I compile I just get the standart square ... blank. Can't even set the name of the form it'll end up ... blank.
When I upload my images with my VB.net application using the FTPClient on http://www.ftpclient.co.uk/ the images once online don't show. When I download them again, I can't see a thing, they are just faulty.
Adobe Photoshop says the JPEG marker is unknown... So basically the upload component...
The code below never triggers the text "out of loop" in txtTest. The program doesn't seem to crash either, it just doesn't execute the code after the for loop. When I comment out the Regex stuff the code behind the for loop is executed. Can anyone help me please, I'm riddled :s
For...
I don't know but here weeks "start" on monday. So that's the order i Place the checkboxes in where you can check on which days you want to place something on the calender (can do this biweekly etc for x weeks), but by default sunday = day 0 and not monday. This is really anoying to work with. I...
I made a custom validator to check if there's items in a listbox. I have a whole bunch of other validators on the form so I don't wanna mix client and server side validation, and since the standard validators all are client side I want my custom one to be client side as well.
The only problem is...
Been looking for this one for a while now, how to layout dynamiccally created controls. Found some C# sharp which looked like this
Form1.Controls.Add(
new LiteralControl("\r\nWhat is your name?\r\n"));
TextBox TextBox1 = new TextBox();
...
Finally I got the picture lol, gotta actually put...
I have to make a page where a user can enter a zipcode and it displays the closest dealer... haven't the slightest idea how to start making this without endless input of how far each zipcode is from one another lol ... Anyone know how I can get a distance between 2 zipcodes from some kind of...
Dim chkWeek(6)() As CheckBox
For j = 0 To 6
For i = 0 To 23
Dim chkBox As New CheckBox
chkBox.Text = i
chkBox.Width = Unit.Pixel(40)
chkWeek(j)(i) = chkBox
I get an error Object reference not set to an instance...
I'm using the following event handler ... which is triggered.
Private Sub DataGrid1_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles DataGrid1.UpdateCommand
Dim txtTb As TextBox
txtTb =...
I have the following stored procedure.
ALTER PROCEDURE dbo.GetTree
@id int
AS
DECLARE @parent int
DECLARE @iLink nvarchar(50)
SELECT @parent = parent from tlkpnavigation WHERE id = @id
IF @parent = 0
BEGIN
SET @iLink = '@id'
END
ELSE
BEGIN
SET @iLink = '@parent'
END...
I writing a database communicatio class, I can get data out of it and return a dataTable but I can't give it back to update.
Public Function sSelect(ByVal strStoredProc As String) As DataTable
Dim mySqlCmd As New SqlCommand(strStoredProc)
Dim daDataAdapter As New...
I'm writing a function to get the members out of an object and using them as parameter for a stored procedure. The problem being I don't know how to get the sqlDbType from the object... is there any way to do this ??
Many thx
I have a procedure to update some values in a table. My question is if it's best to check if a value has changed before updating it, or if SQL already does that by itself. How does MS SQL go about updating a lot of values even if they didn't change.
I'm just using this atm..
ALTER PROCEDURE...
I'm mega noob in ASP.net. What I'm trying to do is read an XML file and make an object of each record. Thus getting the propertys from the XML file and set them accordingly then put the objects back in an array. The prob here is how do I dynamically create the propertys from the data in the...
I have 3 inline editors on one page, and I'm trying to prevent that they can be submitted when they're in source-mode. In the source of the editor is a checkbox
<input class="checkbox" type="checkbox" name="switchMode" id="switchMode" onclick="setEditMode(switchMode)">
The source of all 3...
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.