Search:

Type: Posts; User: Astro121

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    1,432

    Re: Thread Management in .Net

    On a computer with only a single core CPU is distributed in the time-slicing method. This allocation of the CPU is made to the many tasks one after another and always for a short period of time (the...
  2. Thread: PhpBB vs MyBB

    by Astro121
    Replies
    5
    Views
    4,197

    Re: PhpBB vs MyBB

    It is for me MyBB, highly configurable, user-friendly administration panel and is next to vBulletin which is better SEO. You are free and navigation made MyBB forums is simple, apart from having...
  3. Replies
    4
    Views
    516

    Re: Deleting records using the application?

    Good in that case if a query in question and delete the other two trips to the server, if you try to remove without question is just a trip, also if your database is relational and is well designed...
  4. Re: Using stored procedures and stored functions in MySQL

    The SQL SECURITY clause determines whether, at the time, the procedure will use the permissions of the user that is running or the user who created it (the default is DEFINER). Lets see a concrete...
  5. Replies
    5
    Views
    743

    Re: Character sets in MySQL

    Not indicate the collation would be irrelevant, because utf8_general_ci is the default to utf8. Does not indicate it would mean to use utf8 as default for the database, the values of the server. Keep...
  6. Replies
    4
    Views
    1,684

    Re: How to create procedures in VBScripts

    Often the same lines of code to write on a page. To delete these repetitions, you can use the functions. A simple example might be a function that prints the date when prompted.

    <script...
  7. Re: What are the physical and logical format in XML?

    To enable the processor to validate a document from a grammatical point of view, you must provide a series of written statements by using special markers. These can be included directly in the...
  8. Re: How do we write exit procedure or function in javascript to exit middle of the program?

    I'm not sure if I agree with you here. I was always under the impression that the break statement can be used to break out of a while, if, switch, or for statement. I hate to suggest this but how...
  9. Re: How to convert Double data type value into Integer one in Java

    DecimalFormat is a concrete subclass of NumberFormat that formats decimal numbers. if you really need exact representation of decimal fractions (usually the case only for financial applications), use...
  10. Replies
    3
    Views
    986

    Re: How to get Image Positioning In CSS

    Does the banner company use a z-index you have to almost counteract? OR can you absolutely position it? It looks like you have one list for your nav items, and another list for your arrows. You...
  11. Re: What are the differences and similarity between a class and a structure in VB.NET.

    A struct cannot inherit from another struct or class, and it cannot be the base of a class. They are user-defined and provide a method for packing together data of different types. There is no...
  12. Re: What are the services provided by Common Language Infrastructure?

    It does make it possible for programmers to examine the implementation details of many .NET libraries and to create modified CLI versions. Microsoft provides the Shared Source CLI as a reference CLI...
  13. Re: How to Handle the Error Control Operator in PHP

    If the track_errors feature is enabled, any error message generated by the expression will be saved in the variable $php_errormsg. Operator precedence is working against you in this instance. The...
  14. Re: what is the difference between PHP and HTML

    Trying to program in PHP before knowing HTML is kind of like trying to read a book and not knowing the alphabet. The .php extension is important, since it tells the Web server that the page may...
  15. Replies
    3
    Views
    2,726

    Re: How to call a C functions within PHP?

    PHP has many native functions that have the same name as C functions and which act in similar ways but they are not C functions they are PHP functions. If you are using Windows and the API is...
  16. Replies
    3
    Views
    2,667

    Re: How to Parse CSV file using PERL

    I tried hand earlier in the day and was able to download and install the module. And it worked well too. But now i have to parse the XML file instead of csv. I guess the actual problem is that you...
  17. Replies
    3
    Views
    3,895

    Re: How to set hspace and vspace in firefox CSS

    The margin CSS, hspace creates a horizontal padding around an image; vspace, a vertical. I had used vspace to vertical align (to middle) an image. If you want a 15 pixel margin around the iframe, you...
  18. Replies
    3
    Views
    10,723

    Re: How to Draw An Arrow in Photoshop

    Before to apply arrow in photoshop you need to select an image file in Photoshop and create a new layer. In the line menu you need to select the line tool from the tool box. Then you need to select...
  19. Re: How to develop java application for Blackberry device

    JumpStart Program for RIM Blackberry Application development is a packaged service to ISVs and System Integrators who need help getting started with their application development. Ever since the dawn...
  20. Replies
    3
    Views
    3,265

    Re: How to put background color for html cell

    In my experience, reliable printing of HTML pages "in the wild" is impossible. Some browsers do not display a table cell's background color unless the cell contains some HTML content. One solution...
  21. Replies
    3
    Views
    1,016

    Re: Tag div and keep style visibility

    Allocate its space to other elements, which is what I think you want to do) then use "display: none". I wouldn't risk putting links in noscript either, but it seems that a lot of stat sites use it...
  22. Re: How to implement the INITCAP equivalent function in SQL Server

    As long as there is way to do it..it's OK, For those who are not familiar with this Oracle string function, InitCap is a string function that changes the first letter of a string to uppercase. The...
  23. Replies
    3
    Views
    756

    Re: office 2003 smart tag demo

    The Microsoft Office 2003 Smart Tag SDK contains documentation, tools, sample code, and XML schemas useful for developers who are working with smart tags. Office 2003: When Microsoft Word recognizes...
  24. Replies
    3
    Views
    529

    Re: What is Domain specific Modelling?

    Domain-Specific Modeling raises the level of abstraction beyond programming by specifying the solution directly using domain concepts. Domain-specific languages (DSLs) are special-purpose languages...
  25. Replies
    3
    Views
    986

    Re: How to set up RSS feed for your site

    Decide where you will put the file on your Web site. You may want to have multiple feeds in the future, so consider putting it in a directory called "rss."Use a RSS syndication tool built into the...
  26. Re: How to provide .net url converted string to search engine

    Load it into a memorystream(i.e., Use the FileStream object).
    Decode the image using the Bitmap constructor for a stream object.Several ways to do it, here is an article on loading image files. Just...
  27. Replies
    3
    Views
    5,842

    Re: How to create comment text block in HTML

    In order to properly format the text on a web page, you’ll need to master simple HTML block tags for various style elements. Open the HTML tag by typing a left alligator bracket after the previous...
  28. Replies
    3
    Views
    5,842

    Re: How to create comment text block in HTML

    The HTML is quite straightforward. To make it look better, I want the message to support some text format, and I want it to be changeable at runtime, but it seems impossible using TextBlock. Then I...
  29. Replies
    3
    Views
    799

    Re: How to create javascript dump newline

    I've updated this here to use internet "screen-scraping" rather than just the local file system. If the contents of fp are encoded with an ASCII based encoding other than UTF-8 (e.g. latin-1), then...
  30. Replies
    3
    Views
    818

    Re: How to set IIS httpmodule events

    The HttpModule does not replace the target of a request, however the HttpModule receives notification at various processing points during the lifespan of a request. The integrated pipeline allows...
  31. Re: java code example set time_zone oracle session

    The database time zone is set by the TIME_ZONE database parameter. The setting of the TIME_ZONE parameter is in init.ora or spfile.ora file. Listing 1 shows the SQL I used to display the valid time...
  32. Replies
    3
    Views
    5,071

    Re: How to put html tag to color text

    To create a class in your css, use this .subtitle { color: #000000; } You can also change the font color. The common colors being red, green, cyan, brown, black, white, yellow, grey etc.

    <BODY>...
  33. Replies
    3
    Views
    1,398

    Re: How to read xmlhttprequest file

    The general idea is that a user can log in to a service, and using that login information, I can then create an individual folder for the user. It provides an easy way to retrieve data at a URL. ...
  34. Re: How to sort numeric and string value in dataview

    Could you please check if the SCE agent on those problemaic Windows XP is 6.06278.0? You will find this information from add/remove program. In VB.NET, the syntax for sorting is :
    Dataview.Sort =...
  35. Replies
    3
    Views
    1,963

    Re: C# getting running Excel Application

    To fill a multi-cell range without populating cells one at a time, you can set the Value property of a Range object to a two-dimensional array. The standard way to create an event handler is to use...
  36. Re: How to retrieve data from a jTable in Java and MS access

    Typically you don't know the number of rows in the table so you would create your DefaultTableModel using a Vector. You would populate the Vector with data from the ResultSet.Data is an object that...
  37. Replies
    3
    Views
    1,404

    Re: How to swap image with hyperlink

    The swap image behavior does just only swaps an image only by dynamically change the source of the image that is loaded into a certain spot on your page. if you must use javascript that uses onload...
  38. Replies
    2
    Views
    17,927

    Re: How to use getContentPane() method in Swing

    The swing top-level containers all have a single root component (JRootPane, see here) which holds several, layered sub-containers (content pane, layered pane, glass pane). getContentPane(): frames...
  39. Replies
    2
    Views
    1,696

    Re: .net datagridview mouse position

    I am displaying records in datagridView control when the form is loaded in the Windows Application.later i found that we need to attach an event handler to the DataGridView's MouseDown event. Because...
  40. Re: How to Automatically access the fields of an Access 2007 forms

    you can apply one of the AutoFormats installed with Access, Access provides a convenient spreadsheet-style datasheet view for entering data into form, it isn’t always an appropriate tool for every...
  41. Re: How to create collection of dropdownlist, datatextfield ?

    I think you should declare a method and put he code inside the method.


    DropDownList.DataSource = CreateDataSource();
    DropDownList.DataTextField = "ColumTextField";
    DropDownList.DataValueField...
  42. Replies
    3
    Views
    14,712

    Re: Convert byte[] into image using ASP.Net

    If you have not properly coded your image flushing then data is not being recognized as an image format. and to check that you may try using a System.Drawing.Bitmap method instead of an Image, to...
  43. Re: How to create .Net custom checkboxes for listview

    To have nice checkboxes in a list view control need to have custom graphics if you could make it so and it would be 16x16 px bitmap image and draw it over the original check box. You also need to...
  44. Re: How to call stored procedure using do while Loop

    A stored procedure is a group of SQL statements that form a logical unit and perform a particular task. Is a parameter in the procedure. One or more parameters can be declared in a CREATE PROCEDURE...
  45. Replies
    3
    Views
    1,828

    Re: How to set Autosize Label .NET Framework

    while searching for how to set Autosize Label on the internet I found this. Try this in your application.


    public void Resize(Label label1)
    {
    Graphics P = Graphics.FromHwnd(this.Handle);
    ...
  46. Re: moviecliploader the multiple swfs unable to load

    I will suggest you the following code which i have used in my own development which allows me to develop the multiloading the images, i want you to also load the same to your actual programing.

    ...
  47. Re: AS3-How to remove all children from Display Object Container

    Something like this would remove all children of a displayObjectContainer.


    while( nameOfContainer.numChildren > 0 )
    nameOfContainer.removeChildAt( 0 );
  48. Replies
    9
    Views
    8,933

    Re: How to compare 2 XML files using Java

    You might have to remove all irrelevant whitespace from both XML documents to make the exact comparison between two Java files to remove trivial differences such as additional whitespace. Then you...
  49. Re: Error Microsoft OLE DB Provider for ODBC Drivers

    DSNs make code harder to maintain. Well, unless you can log into the ISP's machine with remote software, and to avoid this define your ODBC connection not with "Microsoft Access Driver" but with "Jet...
  50. Re: How to use the concept of sessions in Project development

    when a user makes a page request to the server, the server creates a temporary session to identify that user. So when that same user goes to another page on that site, the server identifies that...
Results 1 to 50 of 99
Page 1 of 2 1 2
Page generated in 1,711,640,128.15525 seconds with 21 queries