No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Re: try something like this: [CODE]<image id="loading_animation" src="animation.gif" style="display:none"/>[/CODE] [CODE]onclick="document.getElementById('loading_animation').style.display='block';"[/CODE] | |
How can i iterate through all javascript functions defined in a document? And how i call them? | |
Re: With this Code you can write a DataTable into a excel-document: it works very fine for me. [ICODE]using System; using System.Collections.Generic; using System.Text; using System.Xml; using System.Data; namespace Rainbird.Examples.SpreadsheetML { public static void ExportDataTableToWorksheet(DataTable dataSource, string fileName) { XmlTextWriter writer = new XmlTextWriter(fileName, Encoding.UTF8); writer.Formatting = Formatting.Indented; writer.WriteStartDocument(); // <?mso-application … | |
Re: [CODE=VB] Dim r As Regex = New Regex("(<[a-z])+") Dim s As Boolean = r.Match(test_string).Success If (s) Then 'ignore Else 'ok End If[/CODE] | |
Can anyone tell me, which Community Frameworks in ASP.Net exist? I know of Sueetie. [url]http://sueetie.com/[/url] I want to program a Community-Site, with my own needs. thanking you in anticipation | |
When I run this Code, the access is denied for all users, my current login too. [CODE] Dim di As New IO.DirectoryInfo("c:\folder") Dim ds As DirectorySecurity = di.GetAccessControl() ds.SetOwner(WindowsIdentity.GetCurrent().User) ds.AddAccessRule(New FileSystemAccessRule(WindowsIdentity.GetCurrent().Name, FileSystemRights.FullControl, AccessControlType.Allow)) ds.AddAccessRule(New FileSystemAccessRule("Everyone", FileSystemRights.FullControl, AccessControlType.Deny)) di.SetAccessControl(ds) [/CODE] How do I deny access for folder for all users, except … | |
Hello, Is there something similar like this: ? [ICODE]If (obj isSubclassOf(Enum)) Then End If[/ICODE] This is always false: [ICODE]obj.GetType Is GetType([Enum])[/ICODE] I need this for reflection. | |
Re: I had the same problem, and the solution was that i moved the project-files from network drive to local disk. | |
Re: make: [icode]MySqlCommand mysql_db_query=new MySqlCommand(sql);[/icode] to [icode]MySqlCommand mysql_db_query=new MySqlCommand(sql,mysql_db_access);[/icode] |
The End.