Search:

Type: Posts; User: Matellis

Page 1 of 3 1 2 3

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    2,388

    blackberry radio off

    Friendz,

    I have bought new blackberry curve yesterday I started facing problems with it. I dunno what is happening my Blackberry radio turns off automatically and i am not able to send a sms from...
  2. Replies
    2
    Views
    1,569

    Re: Switch Statement in PHP

    $destination = "Tokyo";
    echo "Traveling to $destination<br />";
    switch ($destination){
    case "Las Vegas":
    echo "Bring an extra $500";
    break;
    case "Amsterdam":
    echo "Bring an open mind";...
  3. Replies
    3
    Views
    7,867

    Re: What is threading in JAVA?

    Please go through this tutorial

    http://www.freejavaguide.com/java-threads-tutorial.pdf

    I hope this helps you!
  4. Re: export data in the bd Mysql to the Excel file

    There is a nice tool for reading Microsoft Excel files called PHPExcelReader. It works with .xls files up to Excel version 2003, which are based on the BIFF format (later versions use OOXML). It is...
  5. Replies
    4
    Views
    2,245

    Re: What is JAR file? Please explain

    A JAR (Java ARchive) file is a file that contains the class, image, and sound files for a Java application or applet gathered into a single file and possibly compressed. When a programmer gets a Java...
  6. Re: What is the difference between Msgbox Statement and MsgboxQ function?

    There is a differance.

    Msgbox statement is only display the message.

    Msgbox() function after displaying the message we pressing any button(yes,no,cncel) then it returns the value.

    Example...
  7. Replies
    3
    Views
    4,439

    Re: How to register a component in vb?

    WIth the Help of Revser32.exe
    Write Following Command in
    Start Menu -->Run
    e.g. Regsver32 C:TestMyOcx.Ocx
  8. Re: What is the Difference between Class and Object?

    A Class is static. All of the attributes of a class are fixed before, during, and after the execution of a program. The attributes of a class don't change. The class to which an object belongs is...
  9. Re: What is the difference between a function and a subroutine?

    VB6 function calls vs. subroutine calls

    In VB6, there is a difference between the syntax for a subroutine call and
    a function call. The function call is a method with arguments in parentheses,...
  10. Re: Is there any way to call windows application in VB?

    There is no control that does that. You either use the 'shell' command (look it up in VB help) or you have to use more detailed windows API calls (see CreateProcessBynum and the various structures...
  11. Replies
    4
    Views
    2,151

    Re: How to set a shortcut key for label in Vb?

    object.KeyLabel(keycode) [= string]
    You would probably create the menu item as follows:
    .Add “keyFile”, , , “E&xit”, , vbAltMask + vbCtrlMask, vbKeyEnd
    The default key label for vbKeyEnd...
  12. Re: What are the advantages of disconnected record sets?

    A disconnected Recordset, as its name implies, is a Recordset that lacks a connection.

    seen that a Recordset that does not have a database connection can be very useful as a tool in your...
  13. Re: What are the differences between flexgrid control and dbgrid control?

    Bound is truly evil - do not let it tempt you just because you can edit the grid...

    Editing a flex grid is very easy by placing a textbox or combo box on top of the cell to edit - the VB help...
  14. Re: How do I make a menu popup from a CommandButton?

    MsgBox "Your Message", vbExclamation + vbOKOnly, "Box Title"

    You can remove the "vbExclamation +", or replace it with vbCritical, vbQuestion... Just select one from the list you get when writing...
  15. Re: How do I create a textbox in vb that lets you insert tabs?

    Hi!

    You want to set two properties of the textbox:

    Multiline = True
    Tab Stop = False

    That should do it.
  16. Re: How to move data from one excel spreadsheet to another automatically?

    Here's the code I would use:



    Private Sub Worksheet_Change(ByVal Target As Range)
    'Determine if the Target is in
    'Column 6 and contains data
    If Target.Column = 6 And Target.Cells.Count = 1...
  17. Re: What is the difference between defining and declaring a variable in java?

    The basic types of variable in C are namely char, int, double and float. First the variables have to be declared. This is done as follows:

    First any of the data type defined above must be...
  18. Replies
    7
    Views
    20,722

    Re: What is JVM in Java?

    JVM (Java Virtual Machine): A Java runtime environment, required for the running of Java programs, which includes a Java interpreter. A different JVM is required for each unique operating system...
  19. Re: What if we declare the main method as private?

    main() is declared as public and static because

    main() : public

    it should be accessable by java interpreter .

    if it is declared other than public it cannot be accessible by jvm...
  20. Re: What is difference between pass by value & pass by reference in java?

    Pass by Reference means the passing the address itself rather than passing the value and pass by value means passing a copy of the value as an argument.

    This is simple enough, however there is an...
  21. Re: Connecting Ms Excel to vb.net retrieval & storage of data?

    How about something like:


    Set objExcelA = New Excel.Application
    Set objExcelW = objExcelA.Workbooks.Open(strExcelSpreadSheet)
    Set objExcelS = objExcelW.Sheets(3)

    '
    ' Lets get...
  22. Re: To delete selected row from datagridview control.

    Use the Remove method, providing it with the index of the selected row.


    DataGridView1.Rows.Remove(DataGridView1.CurrentRow)
  23. Replies
    4
    Views
    10,257

    Re: How to add song to my website?

    From my vb.net project I will just put the logic here:


    Private Sub Form_Load()

    WebBrowser1.Navigate2 App.Path & "\bgmusic.html"

    End Sub

    Here is my web page:
  24. Re: How can i navigate the HTML pages that i have called into my vb.net application?

    I think you need to go through this tutorial to understand the concept of

    http://msdn.microsoft.com/en-us/library/2te2y1x6.aspx

    Hope this helps you!
  25. Replies
    3
    Views
    12,292

    Re: How to create Module in VB.NET?

    Creating Custom Modules

    You can learn creating a module in VB.NET on your own!

    I hope this helps ask me if you don't understand any concept!
  26. Re: To use goto statement or not while coding the program?

    However, it's generally accepted that using goto every now and then to brake out of multiple nested loops is better than creating flags and adding checks to the conditions.

    If you're a beginner,...
  27. Replies
    2
    Views
    15,559

    Re: Using webcam in vb.net application?

    You need to learn it from here!

    http://www.codeproject.com/KB/audio-video/WebcamUsingDirectShowNET.aspx

    Hope this helps!
  28. Re: Sending email to multiple recipients from my6 vb.net application?

    Use code something like


    MailMessage msg = new MailMessage();
    msg.To.Add(new MailAddress("blah1"));
    msg.To.Add(new MailAddress("blah2"));
    msg.To.Add(new MailAddress("blah3"));
  29. Re: Powershell: To check a directory exists or not?

    Add the '-errorAction silentlyContinue' to avoid the error message in case the folder doesn't exist:

    if (Get-PublicFolder "\Locations\$Location" -errorAction silentlyContinue) {
    Write-Warning...
  30. Re: C++ code to check or search if a file exists or not?

    just open the file for reading, if this succeeds, then the file exists, something like this:


    FILE* fp = fopen(path, "r");
    if (fp) {
    // file exists
    fclose(fp);
    } else {
    // file...
  31. Replies
    3
    Views
    979

    Re: C++ coding faster?

    Hey please visit this webpage to improve the mathematical calculations

    http://library.wolfram.com/howtos/faster/

    Hope this helps!
  32. Re: Value of textbox1 to automatically display in Textbox3?

    This is a javascript issue (or at least i can only offer a javascript solution)...

    <input type="text" name="username" value="" onblur="this.form.Username2.value=this.value;"/>
  33. Re: How to connect the web form to Ms Access using ASP.NET?

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/mdacsdk/htm/mdac_deprecated_components.asp

    I see from this page ms recommends using SOAP as an alternative for remote db access.
  34. Re: Display System date & time to VB application

    Please refer to this!
    http://www.thescripts.com/forum/thread738579.html

    and
    ...
  35. Re: Adding Image in SQL database through vb.net application?

    Here is the code to insert images to a Ms Access database!


    File name is Image.vb
    Imports System
    Imports System.IO
    Imports System.Data
    Public Class SaveImage
    Shared Sub main()
    Dim o As...
  36. Replies
    3
    Views
    6,275

    Re: Disabling ALT + F4 in VB.NET application

    Option Explicit

    Private Sub Command1_Click()
    Unload Me
    End Sub

    Private Sub Form_QueryUnload(Cancel As Integer, _
    UnloadMode As Integer)
    If UnloadMode = vbFormControlMenu Then
    ...
  37. Replies
    3
    Views
    1,270

    Re: What is null value?

    Many argue that it should be allowed to have NULL values in a database. The reality is; all database systems I know of, allow NULL values for columns. But is it right; or even better; are NULL values...
  38. Thread: What is QTP?

    by Matellis
    Replies
    3
    Views
    4,025

    Re: What is QTP?

    Quick Test Professional (QTP) is an automated functional Graphical User Interface (GUI) testing tool that allows the automation of user actions on a web or client based computer application.

    It is...
  39. Replies
    3
    Views
    31,110

    Re: Login Page for ASP.NET web application

    You can still use the built in Login control and save yourself some work. If you drop the Login control on your page. Click the Smart Tag and select "Convert to Template". You can then remove...
  40. Replies
    4
    Views
    790

    Re: Finding out the size of an intger in C

    int[] array isn't an object, so the size isn't readily available (unless you make use of a datastructure like a vector).

    Luckily there is the sizeof() operator. Here sizeof() returns the amount of...
  41. Replies
    5
    Views
    2,099

    Re: Web Server VS Application Server

    Web Server serves static HTML pages or gifs, jpegs, etc., and can also run code written in CGI, JSP etc. A Web server handles the HTTP protocol. Eg. of some web server are IIS or apache. An...
  42. Replies
    4
    Views
    1,094

    Re: What is Reverse Engineering?

    Reverse-engineering is used for many purposes: as a learning tool; as a way to make new, compatible products that are cheaper than what's currently on the market; for making software interoperate...
  43. Replies
    4
    Views
    4,337

    Re: How to test a C# dll file?

    you can break your assembly/dll code up into a few more methods, and then reference your compiled assembly/dll in a normal app. Then test each method by calling it to isolate where things are going...
  44. Replies
    4
    Views
    33,294

    Re: C#: Validation inside a Textbox?

    Consider for eg we want to validate for 2 Textbox then we have to write code like this:

    TextBox t1=new TextBox();
    TextBox t2=new TextBox();

    t1+=new CancelEventHandler(Validatingfunction)...
  45. Re: Putting a dropdownlist in the column header of a GridView

    Take a loot at this link:

    http://forums.asp.net/t/1001702.aspx

    It describes how you can dynamically create TemplateFields for the GridView control.
  46. client side framework failed to load ASP.NET ajax

    Hello,

    I am running a website which receives the following error whenever I run it:

    "ASP.NET ajax client side framework failed to load"

    I am using .NET 3.5 and have the Ajax toolkit...
  47. Replies
    3
    Views
    8,629

    Re: VB .net App.Config file in the project

    If you insist on using appSettings read the value using
    OpenExeConfiguration/OpenMappedExeConfiguration

    Configuration config =...
  48. Replies
    3
    Views
    8,629

    Re: VB .net App.Config file in the project

    I don't think you should have any problem with this. EnterpriseLibrary will compile entire project without any problem only it will make it hidden which you can make visible manually.
    Hope this...
  49. Re: Setting Listbox ValueMember and DisplayMember without the code!

    Hello Shashikant!
    Why do you think its not possible?
    It is possible through specifing the DataSource/ValueMember/DisplayMember for a listbox in design mode.
    Hope you understand!
  50. Re: Setting Listbox ValueMember and DisplayMember without the code!

    Well With such question we can't answer you you have to put your problem in detail for solution.
    We can not understand what you are trying to ask with this.
Results 1 to 50 of 115
Page 1 of 3 1 2 3
Page generated in 1,710,820,736.99058 seconds with 23 queries