Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

DigiOz Multimedia

@DigiOz Multimedia
About
Posts
137
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • php code compiling (close source code)
    D DigiOz Multimedia

    You can try "HipHop for PHP", which is a PHP Compiler developed by Facebook that is now open source: http://en.wikipedia.org/wiki/HipHop_for_PHP[^] There is also Phalanger which is a compiler developed by Charles University in Prague which is supported by Microsoft: http://www.php-compiler.net/[^] There are certainly others, but those are my two favorites. :) Pete

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    Linux, Apache, MySQL, PHP java php help

  • Visual Studio for PHP!!
    D DigiOz Multimedia

    Hello Jassim, If you are looking for something free, you can either use eclipse along with XDebug. Take a look at this article: http://devzone.zend.com/1147/debugging-php-applications-with-xdebug/[^] If you are willing to spend a few bucks, I highly recommend Nusphere PHPED. You can download a trial version from here: http://www.nusphere.com/download.php.ide.htm[^] Personally I prefer Nusphere PHPED over Eclipse, NetBeans, or even Zend Development Environment because I find it a lot more user friendly and Visual Studio like, speaking of which there is also a PHP Visual Studio add-on which let's you develop PHP solutions inside Visual Studio. Take a look at that here: http://www.jcxsoftware.com/[^]

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    Linux, Apache, MySQL, PHP visual-studio csharp php question

  • Unzip, Zip file in asp.net
    D DigiOz Multimedia

    I recommend SharpZipLib which is free and can be downloaded here: SharpZipLib Download And here is an example on how to use it to unzip files: http://geekswithblogs.net/azamsharp/archive/2006/08/24/89268.aspx[^]

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    ASP.NET csharp asp-net dotnet com

  • Linux Distribution
    D DigiOz Multimedia

    I think this is a matter of preference to a certain degree, but personally I prefer Ubuntu Desktop 11.10 because it is the most windows like of all the distributions, and makes it very simple to add and remove modules. Also the Mono Develop Software Development Application makes it easier to develop applications in Linux environment for developers without a deep knowledge of the Operating System which makes a difference for some. Pete

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    Linux, Apache, MySQL, PHP linux question learning

  • Sharepoint 2010 External list
    D DigiOz Multimedia

    Do you mean attachments (aka attach files to an external sharepoint site)? If so here is a code that should do the trick for you:

                try
                {
                    WebClient loClient = new WebClient();
                    loClient.Credentials = new NetworkCredential(Utility.GetConfigKey("SharePoint ACCOUNT"), Utility.GetConfigKey("SP Account Password"), "Domain Name");
                    byte\[\] myDataBuffer = loClient.DownloadData(new Uri(Utility.GetConfigKey("SharePoint URL") + lsFileName));
    
                    // Clear all content output from the buffer stream
                    Response.Clear();
                    // Add a HTTP header to the output stream that specifies the default filename
                    // for the browser's download dialog
                    Response.AddHeader("Content-Disposition", "attachment; filename=" + lsFileName);
                    // Add a HTTP header to the output stream that contains the 
                    // content length(File Size). This lets the browser know how much data is being transfered
                    Response.AddHeader("Content-Length", myDataBuffer.Length.ToString());
                    // Set the HTTP MIME type of the output stream
                    Response.ContentType = "application/octet-stream";
                    // Write the data out to the client.
                    Response.BinaryWrite(myDataBuffer);
                }
                catch
                {
                    lblFormError.Text = "Unable to add document to sharepoint list location";
                }
    

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    SharePoint sharepoint tutorial

  • the item 'mysharepoinit site url' cannot be found. rsitemnotfound
    D DigiOz Multimedia

    This error ususally means that SharePoint Reporting Services were not configured properly. Please take a look at these guidelines: http://msdn.microsoft.com/en-us/library/bb326356%28v=SQL.100%29.aspx[^] If you are on SQL 2008, please also review this page: http://msdn.microsoft.com/en-us/library/ee384252%28v=sql.100%29.aspx[^] Pete Soheil DigiOz Multimedia http://www.digioz.com

    SharePoint help sharepoint sysadmin

  • Gridview Updating Event Not Firing in Production!
    D DigiOz Multimedia

    Yep, its running the same version of .NET as my Dev Machine. I am just as confused as you as to why it would be executing differently on the server.

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    ASP.NET css wpf sysadmin json question

  • Gridview Updating Event Not Firing in Production!
    D DigiOz Multimedia

    Hello Chris, The code is deployed into production correctly. I did a remote debugging of the code on the server and stepped through the code. It does not even hit the "Updating" routine. The only routine that does fire after the user clicks on "Update" link is the "Page_Load" event. :( Thanks, Pete

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    ASP.NET css wpf sysadmin json question

  • Gridview Updating Event Not Firing in Production!
    D DigiOz Multimedia

    Hello All, I have a Gridview control that is working on my development machine, but in Production (Win 2003 Server) the Updating Event is not firing after the Edited Values have been changed and the user clicks on the "Update" link (Auto Generated). Does anyone see anything that may be preventing the "_Updating" event from firing? <code><asp:GridView ID="gvRate" runat="server" AllowPaging="true" AutoGenerateColumns="false"                               AllowSorting="true" OnPageIndexChanging="gvRate_PageIndexChanging" OnSorting="gvRate_Sorting"                               EmptyDataText="No Data Found" CssClass="StyleSheet.css" PageSize="50" OnSelectedIndexChanged="gvRate_SelectedIndexChanged"                               DataKeyNames="RateMasterId" ShowFooter="true" OnRowCommand="gvRate_RowCommand"                               Width="100%" CellPadding="2" HeaderStyle-Font-Bold="true"                               OnRowEditing="gvRate_RowEditing"                               OnRowCancelingEdit="gvRate_RowCancelingEdit"                               OnRowUpdating="gvRate_RowUpdating"                               OnRowDataBound="gvRate_RowDataBound"                               OnRowDeleting="gvRate_RowDeleting" <!-- Rest of the Templates --> </asp:GridView></code> Here is what the code behind looks like: <code>protected void Page_Load(object sender, EventArgs e) {             if (!this.IsPostBack)             {                 &n

    ASP.NET css wpf sysadmin json question

  • How protect a .EXE againt Process Termination ?
    D DigiOz Multimedia

    Sunil123 wrote:

    I want to make some kind of Process/application/EXE that cannot be terminated using the task manager. for the security purpose.

    Sounds to me like you are trying to create some sort of a virus. If not I agree with the previous reply, in that you should change your security strategy.

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    .NET (Core and Framework) security question

  • Any Idea ?? (runtime error in a webpage)
    D DigiOz Multimedia

    Some common things you could check: - Make sure your application is market to run as an application (not a simple folder). - Check web.config file for any unusual keys or configuration setting. - Check to make sure IIS is running the correct version of .NET, i.e. if your application is ASP.NET 2.0, make sure your IIS is not running 1.1 or 1.0. - Make sure that the user under which your ASP.NET is running has read and execute permission to your application folder.

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    ASP.NET help question

  • Help Needed
    D DigiOz Multimedia

    That can only mean that your query is wrong, and/or you didn't take a foreign key relation or something along those lines into consideration.

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    .NET (Core and Framework) database help

  • Embedded .NET Beginner. Any guidance?
    D DigiOz Multimedia

    As you can read at this link on MSDN, eVB is considered obsolete technology now: http://msdn.microsoft.com/mobility/windowsmobile/downloads/evb.aspx[^] I recommend that use a standard Mobile .NET Application instead, but if you are still set on using eVB, you can download and use it for free at the link above. Pete

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    Mobile csharp asp-net hardware tutorial question

  • Mobile Software
    D DigiOz Multimedia

    Socheat.Net wrote:

    What type of programs that i can make mobile software?

    Sounds like you need to pick up a good book and read about this. But the short version of the answer to your question is that you can create most common / every day type .NET Applications on a mobile device as well (even database driven).

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    Mobile question

  • does any one know?
    D DigiOz Multimedia

    learningman wrote:

    Does anyone know how to filter image nudity in a online photo application?

    Yeah, I don't think there is a cheap solution for this problem. Manual inspection would be my best solution as well.

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    ASP.NET tutorial question

  • Query String
    D DigiOz Multimedia

    Just google it and you should find plenty of examples: http://www.google.com/search?q=passing+values+between+asp.net+pages&rls=com.microsoft:*:IE-SearchBox&ie=UTF-8&oe=UTF-8&sourceid=ie7&rlz=1I7DKUS[^]

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    ASP.NET database help tutorial

  • Any Idea ?? (runtime error in a webpage)
    D DigiOz Multimedia

    Why don't you put a break point on the Page Load Event of one of those pages that are giving you error and step through the code to see what's causing it? Unless its a pure HTML page, in which case your message should not have been posted in the ASP.NET forum.

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    ASP.NET help question

  • Help Needed
    D DigiOz Multimedia

    Arunava35 wrote:

    constr is the conecction string

    What is the exact connection string you are using?

    Arunava35 wrote:

    but not being able to get the desiered result can anyone hrlp

    In what way? Is it giving you an error message? If so, what is the error message. Or is it giving you a blank screen?

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    .NET (Core and Framework) database help

  • plz help me, how to give print option in vb.net
    D DigiOz Multimedia

    velan wrote:

    i had worket vb.net project.i am using msaccess database.how to give print in the form. plz give the sample code advance thanks for your valuable replay

    So are you trying to print the Form itself (screenshot type thing), or are you trying to get the data from the MS Access Database into a Print Document, build a report, and then print it out (or is it something completely different)?

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    Visual Basic csharp database help tutorial

  • How to suppress a column in datagrid? (vb.net 1.1)
    D DigiOz Multimedia

    infotools wrote:

    While displaying contents of a datatable / dataview in a datagrid, I wish to suppress some columns (foreign keys, few admin fields) which user is not concerned with.

    You could build a query and only select the columns that you want to display using that query, before you bind the datatable to the grid, i.e: SELECT column1, column2, ... FROM [tableName] WHERE ...

    Pete Soheil DigiOz Multimedia http://www.digioz.com

    Visual Basic question csharp tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups