I did see it. They are wasting money / pocketing (corruption) while the people are starving etc...the masses vote for them...nothing we can do.
Hello daar al die afrikaaners!
I did see it. They are wasting money / pocketing (corruption) while the people are starving etc...the masses vote for them...nothing we can do.
Hello daar al die afrikaaners!
Sorry...should have been of the page and find all the tags "
Hi Its a bit a wide question. I hope I am give answer in the right direction, but you can way search through the HMTL of the page and find all the tags "
Hi Have a look at .Net Remoting. http://samples.gotdotnet.com/quickstart/howto/doc/Remoting/nutshell.aspx. There are also tuns of examples on the net. You can binary stream the file to the client using Remoting On the client you can save the binary stream on the Client machine. Hope it helps
Hi all I need do the following based on Boolean Algebra ex 1. (M271/M272/M651)+(450/965)/M642/M646 All possible result M271 + 450 M271 + 965 M272 + 450 M272 + 965 M651 + 450 M651 + 965 M642 M646 ex 2 M271/M646+M006/M651+M013 M271 + M006 + M013 M646 + M006 + M013 M271 + M651 + M013 M646 + M651 + M013 Do somebody no where I can find a code library or code to help me to break up any Boolean Algebra expression into all possible result Thanks in advance PS. I also have more complex expression
Afrikaans (South-Africa). Very simular to Dutch. "Hello Wêreld"
I am from South-Africa..............do I need to say more. We REALLY DON'T LIKE AUSTRALIANS :) ....enjoy the hangover, the sheep and the over grown rodents :-D Blou bulle is baas!
Howzit I am looking for a way of deleting a selected range of page from a word document. Any ideas or code snip bits would be appreciated. Thanks in advance R Blou bulle is baas!
Same message - South-Africa at 2:30 PM (GMT + 02:00). I would like to know how many concurrent users the servers can support? But for the rest everything runs smoothly! Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Thanks for the help I'm already setting the CultureInfo on the thread, but the way the excel interprets the data format results in a total different value. I looking for a way to connect the CultureInfo to the page I am using the render the control . ex. of how I render the control With m_Page .Response.Clear() .Response.AddHeader("Content-Disposition", "attachment;filename=" & Title & ".xls") .Response.Buffer = True .Response.ContentType = "application/vnd.ms-excel" .Response.Charset = "" m_Grid.EnableViewState = False Dim oStringWriter As System.IO.StringWriter = New System.IO.StringWriter Dim oHtmlTextWriter As System.Web.UI.HtmlTextWriter = New System.Web.UI.HtmlTextWriter(oStringWriter) ClearControls(m_Grid) FrontDecorator(oHtmlTextWriter) m_Grid.RenderControl(oHtmlTextWriter) RearDecorator(oHtmlTextWriter) .Response.Write(oStringWriter.ToString()) .Response.End() End With Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Howdy! My web application CultureInfo is forced into a specific Language setting.(en-ZA) My application works perfectly, except if I use the datagrid .RenderControl option to export the grid into excel. The formatting option on the user machine interprets the values (comma's and points) in their current language setting resulting a scrambled data and very interesting results in the excel display. If anybody knows how to force the rendercontrol option into a certain CultureInfo setting or a work around I would really appreciate it. Thanks Regardt Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Hi I'm not sure that this will be answer your question Working with dates is usually a bit of a headache, even more if you are developing international software products.The only advice I can give you is to keep your dates always as date object, never use dates as string ex. dEndDate = "01/01/1900" dEndDate = New Date(1900, 1, 1) This will insure that you will not have date issues between your UI and DB. You would be able to assign a dbnull to RDR("End Date") ,if RDR("End Date") the column datatype is date, and it also nulls. If you retrieve the datatable directly from the DB the rules implied on the table in the DB will apply on the datacolumn If you create the datacolumn on the fly specief the DataType and AllowDBNull ex. Dim oColumn As New DataColumn("End Date") oColumn.DataType = System.Type.GetType("System.DateTime") oColumn.AllowDBNull = True Hope it helps. Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Sleep wont help me anymore...I am already to fare go... My only hope is to start again and hope I out drink the hangover. Not recommend alcohol -- Blue sumbuca -- Everything turns green!! Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Lucky we will be died before the sh*t hits the fan.... Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
....To all that feels like me.......Trying to look busy while not thinking of woting... And all you really want to do is clime underneath the table and hope to die.... but NO!! all possible IT solution will be going ape shit!!!!!!!!!!!!!!!!!!!. I am consider becoming a car guard Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Blank Screen, caused by multi dropdownlist changes before page have time to post. Howzit ! I have a event on a dropdownlist. After changing the dropdownlist selection and the post event kicks off any changes made on any other dropdownlist on the same page results in a white blank screen(This result don't always occurs). I have seen this problem on multiple sites and wonder if there is a possible solution. I have tried using javascript to disable the other dropdownlist but in certain instance it still occurs? Any help on this matter would be appreciated. Thanks :confused: Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Hi I'm in the process of rewriting a access database type of application, but I run into a problem. This is the Access VB code. dn = FreeFile Open matrix For Binary Access Read As #dn Get #dn, dsn, km Close #dn This the VB.Net code FileNumber = FreeFile() FileOpen(FileNumber, filepath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared) FileGet(FileNumber, FindValue) To start, I don't none the structure of the file. I'm sending in a search value which should return a result. The VB.Net function isn't returning the same value as the Access VB function. Any ideas why its happening would be appreciated!. Thanks Regardt Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Thanks for the support, but I have decided to leave this problem for the future. (To much work) Just a summary of the state of the problem for future developers with the same type of problem. The rendering always work, if excel is already opened. The option to save the excel file to your PC also work and the file opens with out any problems. The rendering problem only occurs in some instances, without any sufficient changes on the structure /data of the datagrid or table, when trying to open the excel file on request. Cheers Regardt Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Hope the clear control methode will help. Private Sub ClearControls(ByRef Control As Control) Dim i As Integer 'recursively call this procedure to clear nested controls For i = Control.Controls.Count - 1 To 0 Step -1 ClearControls(Control.Controls(i)) Next Try If Not TypeOf Control Is System.Web.UI.WebControls.DataGrid Then If Not TypeOf Control Is System.Web.UI.WebControls.TableCell Then If Not Control.GetType().GetProperty("SelectedItem") Is Nothing Then Dim Literal As New LiteralControl Try Control.Parent.Controls.Add(Literal) Literal.Text = Convert.ToString(Control.GetType.GetProperty("SelectedItem").GetValue(Control, Nothing)) Catch ex As Exception Throw ex Finally Control.Parent.Controls.Remove(Control) End Try Else If Not Control.GetType().GetProperty("Text") Is Nothing Then Dim literal = New LiteralControl Control.Parent.Controls.Add(literal) literal.Text = Convert.ToString(Control.GetType().GetProperty("Text").GetValue(Control, Nothing)) Control.Parent.Controls.Remove(Control) End If End If End If End If Catch ex As Exception Throw ex End Try End Sub Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--
Thanks for the reply I have try that already without any success. Africa is a tough country --"Hello daar vir die Afrikaans sprekende"--