Search results for query: *

  1. A

    Broadcast message to all clients

    hi, I'm trying to develop a pgm that broadcasts the message to all clients except to the sender. At present , every client is talking to the server and get the reply back. i'm using TCP/IP Protocol. Develop. Env. :VS2003. How to implement broadcasting feature? If anybody knows the related...
  2. A

    Deployment Error:"COM Object with CLSID {...} is either not valid or not registered"

    Deployment Error:"COM Object with CLSID {...} is either not valid or not registered" Hi, I developed an VB.NET Application that make use of microsoft EXCEL PIAs. (VS2003) It works fine in the development environment which has MS EXCEL. But actually target machine don't have MS EXCEL. When...
  3. A

    sort datatable and write as xml

    Hi, How to sort the datatable and write it as XML File. I know that, datatable can be sorted using view and bind to datagrid and dataset1.writexml() is used to write data in XML format. But i need to write sorted data into XML file. Meaning that, need to sort the datatable in the dataset and...
  4. A

    Invalid table number

    Hi, I developed my apps in vs 2003 . my apps utilizes crystal report. In my PC it's working well. I've SQL 2000 database. Now i'm facing problem when i deploy the apps in client PC. It has SQL express 2005. When i open crystal report from client machine, it gives me invalid table number. how...
  5. A

    catch empty list using SQL query

    Hi, I'm trying check the records which satisfies the following condn. select @p1 = su1 from RER where (no=10 and atp ='N') It returns empty list . bcos no match found.that's ok. But i need to write the logic if record is not there. i tried to do as follows if ((@p1 =null) or (p1=' ')) ...some...
  6. A

    vertical scroll bar in listbox

    Got it. Just automatic.
  7. A

    non rectangular buttons

    hi, How to create non rectangular buttons (elliptic or round) in .NET CF? In windows, I used Graphicspath. Any ideas? Thks!
  8. A

    GUI Design

    Hi, Thks for ur response. If i do the image in photoshop, just i can add the image as a backgrond image . Right? What abt round buttons and labels..? GDI+ ---> i don't have any idea. let me see it. Thank U!
  9. A

    GUI Design

    Hi, I want to design the GUI for VB.NET windows apps somewhat like windows media player design .I don't want to use regular rectangular patterns. How to design an attractive GUI in VB.NET (VS 2003)? Any Ideas? If anyone knows related links, kindly share with me. Thank You!
  10. A

    vertical scroll bar in listbox

    hi, how to add vertical scroll bar in listbox in CF environment? Env : VS 2003 - .NET 1.1 Thanks!
  11. A

    WriteXML issue

    hi, I'm facing a strange pbm while converting excel file to xml. If excel file has decimal datas, then some of the decimal datas will be appeared in converted xml file as shown below <?xml version="1.0" standalone="yes"?> <NewDataSet> <Attendance> <Mas>M</Mas> <CustG>X</CustG> <PT>0</PT>...
  12. A

    upload pdf file into sql table

    Thanks for ur reply. I've gone thro'the example. quite good. It partially satisfies my requirement. Pdf file may have 4 columns of data. for example, custID, Custname,Address,tel 12,xxxxxxxxxx,yyyyyy,5425456 13,rttttttttt,uuuuuu,8679879 how to load this...
  13. A

    upload pdf file into sql table

    hi, How to load a pdf file data into sql table programmatically (using VB.NET) Any ideas? Thank You.
  14. A

    Need third party controls

    Hi, I'm looking for some third party controls (especially buttons) for CF. Any idea? If anyone knows the link ,kindly forward me. If u used it before, kindly suggest me a good one. I'm using VS2003. Thank You!
  15. A

    how to find serial buffer is empty?

    hi, I'm using the following read method to get the data from serial device. Public Function Read() As Byte Dim rd As Integer Dim ovl As New OVERLAPPED Dim dt As Byte() dt = Array.CreateInstance(GetType(Byte), 1) 'Initialize the buffer If Opened = True Then ReadFile(hPort, dt, 1, rd...
  16. A

    substring from a string

    Hi, Can anyone show me the simplest way to retrive the data between #1 from the given string. #1XYZXYZ#1#2UVWUVW#2#1AAABBBED#1#1SSSSWDWD#1 Result will be like XYZXYZAAABBBEDSSSSWDWD Note: String is variable. Generated at runtime. Need to look two "#1" and extract data between them...
  17. A

    convert byte array to ASCII

    Solved! I solved it . Dim b As Byte Dim s As String = "" For inttemp As Integer = 0 To strhex.Length - 2 Step 2 b = System.Convert.ToByte(strhex.Substring(inttemp, 2), 16) s &= Chr(b) Next Return s. Thank You!
  18. A

    convert byte array to ASCII

    hi, How to convert byte array to ASCII in VB.NET System.Text.Encoding.ASCII.Getstring(y) it gives the data like 52414D41 . but i need "RAMA" instead of 52414D41. How? Any help? Thank U!
  19. A

    Sample serial port program needed

    Hi all, I'm developing serial port program in VB.NET. [Just open,read,write and close.] I referred the following article - "How to access serial and parallel ports by using Visual Basic .NET." I used the given code . Getting unhandled exception .It occurs while executing Getcommstate API call...
  20. A

    serial port connection

    hi, I'm facing a strange problem while establishing serial connection. Hyperterminal is always connected. so pgm couldn't make the connection. When i discontinue and minimize the hyperterminal connection ,then pgm is working. but not continuously. (If i close my hyperterminal,it automatically...
Back
Top