Search:

Type: Posts; User: Alphonsus

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    4,443

    Re: How to register a component in vb?

    How to: Register a Component for COM Interop

    The Register for COM interop project property specifies whether your managed application will expose a COM object (a COM-callable wrapper) that allows...
  2. Replies
    4
    Views
    2,152

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

    Hi,
    You can assign the shortcut key to label. But the event will not be fired like buttons.
    If you use the shortcut key, the focus will be set to the next control which as higher tab index.
  3. What is the difference between multithreading and multiprocessing?

    HI,

    I want to know what is the difference between multithreading and multiprocessing?
  4. Re: What are the differences between flexgrid control and dbgrid control?

    Hi,

    1. In DB Grid you can do Add/Mod/Del Function in the DataSource Where as in Flex Grid direct these operation not possible.

    2. We have Events for Before or After Editing a Column in DB Grid...
  5. Re: Connecting Ms Excel to vb.net retrieval & storage of data?

    Based on your post, my understanding of your quesiton is that you need to delete the cells or the columns. You can use range.delete method to implement this. For more information about automating...
  6. Re: How can i navigate the HTML pages that i have called into my vb.net application?

    There is a WebBrowser control in .NET that you can use to interact with HTML page.
    Just tell the control to navigate to a web page (or url). The control have properties and method that allow you to...
  7. Replies
    4
    Views
    9,942

    Re: How to open HTML file in VB.net program?

    HI

    You just add microsoft internet control in your component and your form.
    eg.
    webbrowser name to yahoomail, command button
    Private Sub Command1_Click()
    ' u can place html file also
    '...
  8. Replies
    4
    Views
    29,710

    Re: Create MDI form in VB.NET?

    MDI (Multiple Document Interface) Application is an application in which we can view and work with several documents at once. Example of an MDI application is Microsoft Excel. Excel allows us to work...
  9. Re: How can I print a external file using C++???

    There is the Document/View framework that can print .docs for you.
    http://www.functionx.com/visualc/Lesson05.htm

    I am not sure about the .lbl though.
  10. Replies
    3
    Views
    1,113

    re: Variables to use in many forms!

    To declare a variable for all forms you have to declare it as Public.
    Just write Public instead of Dim.
    For Example:
    Public txt$
    Then you can access the txt variable form everywhere in the...
  11. Replies
    3
    Views
    10,075

    Re: VB.NET create Notepad File?

    You can learn it with the help of this pdf file too1

    http://www.elearning.strathmore.edu/file.php/340/PC_September/VB_Textfiles.pdf
  12. Replies
    4
    Views
    11,461

    Re: Powershell zip or unzipp files?

    Please have a look at this webpage!
    http://www.codeproject.com/KB/files/ZipUnZipTool.aspx
  13. Re: Value of textbox1 to automatically display in Textbox3?

    Hi

    Here is solution

    Goto TextChanged Event for Username2 Text Box and write below

    Username.text=Username2.text
  14. Re: How can I display system date & time on my webpage?

    Try this code:

    Private Sub Form_Load()

    ' run every half second
    Timer1.Interval = 500

    End Sub

    Private Sub Timer1_Timer()
  15. Re: How to refresh database after adding a new record?

    You could possibly use the FileSystemWatcher ... have an INSERT trigger on the SQL table that creates a text file in an otherwise empty folder, the FileSystemWatcher in VB recognises this new file...
  16. Replies
    4
    Views
    11,709

    Re: Powerpoint slides on form in VB.NET

    I think this is what you need at this application!
    http://www.bytescout.com/swfslideshowscout_example_vb_net.html
    AND
    http://www.devasp.net/net/articles/display/586.html
    Hope this helps you!
  17. Replies
    4
    Views
    20,509

    Re: How to find the source code of any program?

    Please have a look at this webpage I hope this helps you!
    http://www.sparxsystems.com/uml_tool_guide/code_engineering/generatesourcecode.html

    Regards,
  18. Replies
    5
    Views
    2,100

    Re: Web Server VS Application Server

    A Web Server understands and supports only HTTP protocol whereas an Application Server supports HTTP,TCP/IP and many more protocols. Also many more features such as Caches,Clusters,Load Balancing are...
  19. Re: What is Service Oriented Architecture (SOA)?

    SOA(Service Oriented Architecture) is not an easy architecture. I am sure you are doing some very difficult project that you need its idea. Just to give you an idea, I will say it basically comes...
  20. Replies
    4
    Views
    4,338

    Re: How to test a C# dll file?

    This is the way you can test the dll file.
    In visual studio express edition create another application and add reference to your dll in that application.
    If its a for-play version then you can...
  21. Replies
    4
    Views
    33,296

    Re: C#: Validation inside a Textbox?

    Please have alook at this code which will help you understand the textbox validation in C# .


    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;...
  22. Replies
    3
    Views
    784

    Re: Want to learn Scripting Program!

    I think the best way would be to make something yourself with the code. To get the basics of that language, read some tutorials with example projects and follow along. Once you've learned enough to...
  23. Re: Finding .NET Framework Configuration Tool in .NET SDK (Mscorcfg.msc)

    Hi,
    I think this is what you need & it will help you configuring & finding the .Net framework configuration tool.
    http://msdn.microsoft.com/en-us/library/2bc0cxhc.aspx
    I hope this helps you!
  24. Replies
    4
    Views
    2,063

    Re: Console.WriteLine for dot net?

    well its usually used when you use the emlator. The results go to a console window on your dekstop ahh here is an example
    http://www.codeproject.com/csharp/compacttcptrace.asp
  25. Re: Vista 64 problem installing Visual Studio 2005

    I have had no experience with the 64 bit version of windows vista, but I have installed VS2005 on the 32 bit version of vista. Are you running the installer as administrator? If not, When you first...
  26. Replies
    3
    Views
    2,120

    Re: Self made Button In C#

    Try this code out.


    Rectangle BitmapRect = Rectangle.FromLTRB(0, 0, button1.Width,
    button1.Height);
    BitmapRect.Inflate(-6, -6);
    Bitmap srcImage = new Bitmap(@"c:\test.bmp");...
  27. Replies
    4
    Views
    2,184

    Re: Call hierarchy of procedures

    I think this feature is included in the new version of Visual Studio 2010.

    For current situation what in my opinion you can do is to set a breakpoint in the beginning of the Sub or Function. When...
  28. Replies
    6
    Views
    1,830

    Re: To access a text field from another form

    Use the overload on ShowDialog() and pass in the calling form as the owner.
    Now from the called form you can access a public member on the calling form.


    Dim owner = TryCast(Owner, Form1)

    If...
  29. Re: Disable cell validation on form DataGridView

    Try something like this:


    Private Sub EquipmentValidationByCell(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellValidatingEventArgs) Handles dgvEquipment.CellValidating
    ...
  30. Replies
    4
    Views
    3,466

    Re: C# code : WndProc method

    HEy So Do you want to subclass a native window from managed code? This is not possible.
    Why dont you want the message pump with current .Net Compact Framework?
  31. Replies
    4
    Views
    3,466

    Re: C# code : WndProc method

    Hello Kiran!
    Plz follow this link
    http://blog.opennetcf.org/ayakhnin/PermaLink.aspx?guid=9a05b2dc-c79f-4cd8-af17-aa485fada5c7
    I hope this helps you!
  32. Replies
    5
    Views
    1,912

    Re: C# & bluetooth information required

    Please have a look at this article may be this is going to help you!
    http://www.devx.com/wireless/Article/11511

    Regards,
  33. Replies
    5
    Views
    1,912

    Re: C# & bluetooth information required

    Hey you can try for the bluetooth for C# in the MSDN library.

    Start reading the information there till I find something for you! :)
  34. Replies
    3
    Views
    859

    Re: Error: Unable to connect to remote

    I think that it this problem is related with the
    Security/Permission because I can access the same WebService via a standard
    windows application or web application.
    Since the error comes up only...
  35. Re: Highligting a row in a DataGrid in C# (Sharp)

    if you are trying to find an specific record on a data table the easiest way (for me) is to filter the table or dataview with the specified criteria. If you want the datagrid to show the rows...
  36. Replies
    2
    Views
    2,666

    Re: To read data from dataset in VB

    You can also try this:


    nYearValue = (System.Int16) myTable.Rows[nLoop]["nYear"];
  37. Re: Finding .Net control's instance name from an hWnd.

    Control.FromHandle() is the answer for what you need! :)
  38. Replies
    2
    Views
    640

    Re: To POST http WebRequest!

    Hello RadhaV,
    http://msdn.microsoft.com/en-us/library/debx8sh9.aspx
    This is what you need to go through before understanding encryption.
  39. Replies
    2
    Views
    4,150

    Re: Need to enable JIT debugger

    HERE is the link to download .NET SDK from microsoft.
    http://www.microsoft.com/downloads/details.aspx?familyid=fe6f2099-b7b4-4f47-a244-c96d69c35dec&displaylang=en
    Hope this helps you!
  40. Re: Need to convert string to ascii values with C#

    What you guys think about (int)cSomeChar?

    I hope this works!
  41. Re: Checking the installed version of dotnet framework?

    Hello guys i found a script on this page where you can check the dot net framework and also find out the previous version installed & automatically uninstall the previous version.
  42. Re: Problem reloading MDI child form in main form.

    Int he first part which works you have
    objChild2.MdiParent = Me
    In the second part, which doesn't work, you have
    oForm.MdiParent = Me.ActiveMdiChild

    Don't try to set MdiParent to...
  43. Replies
    2
    Views
    768

    Re: Can't access internet why?

    If wireless network is connected correctly, then you can type following command on command prompt (cmd.exe) to check whether correct IP, netmask, gateway and DNS servers are configured or assigned to...
  44. Thread: V.b. 6.0

    by Alphonsus
    Replies
    5
    Views
    623

    Re: V.b. 6.0

    Well Vinod its good you know the form designing but for coding part you need to go through books on VB.
  45. Replies
    2
    Views
    1,780

    Yes & don't forget to restart your machine when...

    Yes & don't forget to restart your machine when you uninstall & again after the fresh install! Restart is important!
  46. Replies
    4
    Views
    1,266

    There is a product from targus (i think) that is...

    There is a product from targus (i think) that is a fan base for ur laptop, but if the vents are clogged, that won't help.

    Which reminds me, make sure you don't have anything clogging the...
  47. Replies
    6
    Views
    2,076

    I would go for IBM!

    I would go for IBM!
  48. Even i feel the same Raine i have never faced...

    Even i feel the same Raine i have never faced such a problem using Firefox browser!
  49. Replies
    4
    Views
    902

    I am going the red team here, and saying the 780G...

    I am going the red team here, and saying the 780G chipset, a board costs you about £50, has Radeon 3200 graphics on board which I believe are better than my old 6600GT, and for me a very old system...
  50. I hope this helps you!...

    I hope this helps you!
    http://www.microsoft.com/windowsxp/using/tabletpc/getstarted/standby.mspx
Results 1 to 50 of 63
Page 1 of 2 1 2
Page generated in 1,711,710,855.94392 seconds with 19 queries