Search:

Type: Posts; User: amrita

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: How to Make the background form the same desktop wallpaper

    Hi ,

    If you can get the current dektop wall paper image path and set the form's backgroud image to that...

    check this...
  2. Replies
    2
    Views
    693

    VS 2010 Re: datagridview event

    Hi ,

    Have you tried something like...



    Private Sub dataGridView1_KeyDown(sender As Object, e As KeyEventArgs)
    If e.KeyData = Keys.Enter Then
    e.Handled = True
    End If
  3. Replies
    15
    Views
    4,609

    VS 2010 Re: Printing on POS Printer

    Hi ,

    I've done some POS printing with MS RMS and uses the OPOS command for that.


    thanks
    amrita
  4. Replies
    1
    Views
    2,172

    DB Sync with smart application

    hi ,

    When changing the web.config of service lib , getting the following error.

    Unable to obtain a new server anchor. Make sure that you can establish a connection to the server database and...
  5. Replies
    1
    Views
    3,320

    Config file in WCF

    Hi ,

    Currently we are using the Add New Item -> Local Database cache wizard to create the DB details in our application.

    We want these steps in code. So that we can send the DB details in a...
  6. Re: Report this postReply with quoteHow to sync DB in windows mobile app with SQL CE

    Now we are using a different method for this. We are addding a local DB cache and doing the sync using WCF class lib. And as we are adding the local database cache through a wizard..we are facing...
  7. Report this postReply with quoteHow to sync DB in windows mobile app with SQL CE data

    Hi ,

    Has anyone done DB sync in windows mobile app with SQL CE database ?

    We have created WCF service for this and then there was error message of not sufficient disk space. Then we selected...
  8. Re: How to create a ComboBox in an Inputbox

    You can create a custom form , set its properties to appear as a popup window.

    http://www.codeproject.com/KB/miscctrl/simplepopup.aspx
  9. Replies
    2
    Views
    834

    VS 2008 Re: Add Text to Array

    Check this code.



    Public Class Form1
    Dim wordsarray As New System.Collections.ArrayList
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  10. Thread: HTML to PDF

    by amrita
    Replies
    1
    Views
    678

    VS 2008 Re: HTML to PDF

    Add reference to iTextSharp library and convert the html doc to pdf file.
  11. Re: result variable of records instead of showing only query

    Declare a variable and write

    var1 = myCommand.ExecuteScalar()

    now print var1.
  12. Thread: Textbox

    by amrita
    Replies
    3
    Views
    534

    VS 2008 Re: Textbox

    On button click write

    TextBox1.Text = TextBox1.text & vbCrlf & "YOUR STRING "
  13. Replies
    3
    Views
    775

    VS 2008 Re: unable to run the application on Windows 7

    These are few links you can go through . Its said that it MSDE200 will work in Win 7 but will have some issues.
    ...
  14. Replies
    21
    Views
    4,371

    Re: equal sign not recognized

    What is the datatype of Replacement ?
    I guess the error is with Replacement = true
  15. Replies
    1
    Views
    648

    Re: Help with FileSystemWatcher

    Check if this helps

    http://www.pcreview.co.uk/forums/filesystemwatcher-getting-word-temp-file-t1342098.html
  16. Replies
    3
    Views
    881

    Re: doc.Save command not working! Please help!

    Use System.IO.FileInfo and use its CopyTo or MoveTo methods.
  17. Replies
    2
    Views
    638

    VS 2008 Re: Confused

    Use dataset.Readxml method to load the xml file into Dataset.
  18. Replies
    1
    Views
    1,962

    VS 2010 Re: Print Listview or Report

    Try using printdocument controls print method to print whole content as a string.
  19. Replies
    2
    Views
    1,313

    VS 2010 Re: Richtextbox colorizing

    Try this




    Private Position As Integer = 0

    Private Sub RichTextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RichTextBox1.TextChanged
    ...
  20. Replies
    1
    Views
    467

    Re: XML into Dataset

    Use dataset.Readxml(file name) method.
  21. Replies
    9
    Views
    4,360

    Re: what is wrong with my reverse for loop?

    Try this



    For j As Integer = 5 To 1 Step -1
    row &= row.PadRight(j, "*")
    ListBox1.Items.Add(row)
    row = ""
    Next
  22. Replies
    4
    Views
    750

    VS 2008 Re: way to find out the free ram memory

    here is a code sample check , if its help




    Imports System.Diagnostics.PerformanceCounter

    Private ramCounter As PerformanceCounter

    Private Sub Form1_Load(ByVal sender As...
  23. Replies
    3
    Views
    1,363

    VS 2010 Re: Inputbox question

    Instead of input box , create you own customized form as dialog box and get the result as DialogResult.OK or DialogResult.Cancel.
  24. Replies
    7
    Views
    1,170

    Re: Pass User Input From One Form To Another

    Use global (PUBLIC ) variables to pass values within forms.
    Set the variable in one and access it in the other form.
  25. Replies
    9
    Views
    2,061

    VS 2008 Re: Conversion from C# to VB.Net

    Did you try the code suggested in the link ? Let us know your migrated code and at which line its throwing error.
  26. Replies
    2
    Views
    2,706

    Re: Can someone help me!!

    Here is the logic...


    amountDollar = amountDollar = CInt(Console.ReadLine())
    numberofChocolate = amountDollar
    a = numberofChocolate \ 7
    b = numberofChocolate Mod 7
    ...
  27. Replies
    9
    Views
    2,061

    VS 2008 Re: Conversion from C# to VB.Net

    Sorry...

    Here is the link

    http://www.vbforums.com/showthread.php?p=3844867
  28. Replies
    1
    Views
    1,234

    Re: vb.net Interops (Word) Error

    You are opening the file using the code

    ActiveWordApp.Documents.Open(TextFile)

    Change the code like the following



    ActiveWordApp.Documents.Add(TextFile)
    and then SAVEAS command
  29. Replies
    9
    Views
    978

    VS 02/03 Re: Link to Any Excel version

    I would prefer to use LATE BINDING...create the objects of Office components inside code.

    Like CreateObject("Word.Application") etc.
  30. Replies
    3
    Views
    649

    VS 2008 Re: Whats going on? Double linebreak...

    Why do you need the following line ?

    If ResultArray.Item(Loopen5) <> "" Then
    Results.Text = Results.Text & ResultArray.Item(Loopen5) & vbCrLf
    End If

    Its adding VBCRLF to text.
  31. Replies
    9
    Views
    2,061

    VS 2008 Re: Conversion from C# to VB.Net

    Check this ...same issue.Already resolved

    http://www.vbforums.com/showthread.php?p=3973949#post3973949
  32. VS 2010 Re: Create a printer driver to print to a text file

    I don't think its feasible to write code in vb.net for printer driver.:confused:
  33. Replies
    9
    Views
    2,061

    VS 2008 Re: Conversion from C# to VB.Net

    Something like the following (converted using a tool)

    Dim row As Pointer(Of Byte) = CType(bmd.Scan0, Pointer(Of Byte)) + (i * bmd.Stride)

    But you need to import System.Reflection
  34. Replies
    2
    Views
    426

    Re: need help with sql statement

    Try writing table1.[field(0)] and check
  35. VS 2010 Re: Create a printer driver to print to a text file

    Check these links

    http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/cee7b75c-c94d-499a-a087-e0c0704935a2
    ...
  36. Replies
    1
    Views
    578

    VS 2010 Re: Get Network Info of A Process

    Here are the keywords...

    NetworkInterface.GetAllNetworkInterfaces Method (System.Net.NetworkInformation)
    GetIPv4Statistics method and read BytesReceived property

    I'm not sure why the link of...
  37. Re: How do i remove the white lines around my buttons?

    make flat appearance -> border size = 0 and check
  38. VS 2010 Re: [urgent] Project done in VS2010 to use in a VS2008 PC

    Yes try changing that , I'm not sure.

    But the blog says igonre the warning.
  39. VS 2010 Re: [urgent] Project done in VS2010 to use in a VS2008 PC

    Check these links ...it may help

    http://blog.prabir.me/post/Downgrading-VS2010-solutions-to-VS2008.aspx
    ...
  40. Thread: Error in code

    by amrita
    Replies
    5
    Views
    962

    VS 2008 Re: Error in code

    Add reference to [System.Drawing.dll ] and the Write Imports System.Drawing

    and also have ni.Icon = New System.Drawing.Icon("FILE NAME WITH FULL PATH");
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width