Search results for query: *

  • Users: srdva59
  • Content: Threads
  • Order by date
  1. S

    right cab to use

    hi, i have a movile device runing windows ce 5.0 the cpu is a: intel ARM920T-PX i try to install the right cab for: Sql Server Compact Microsft Net cf 2.0 microsoft sql client 2.0 i can´t deploy using activesync because the usb connection for some reason don´t work :( thanks for your help :)
  2. S

    datagrid change columms width

    hi, i using vb.net for creat a pocket app i using the datagrid for display data now i need change in runtime the width of some datagrid columm. how can i do that? thanks a lot for your help :)
  3. S

    XML problem with special characters

    hi, i try save/load a XML with special characters like this: ão ção ólá when i save nothing goes wrong but when i try open using internet explorer or any software they result in a error in that characters. the header that i using is this: <?xml version="1.0" encoding="UTF-8"?> <dataroot...
  4. S

    how change height of a datagrid colunm

    hi, how can change a height of a datagrid colum in vb.net compaq framework? i load a result to a datagrid using a query but some results don´t fit in column and i need change the height manualy, so there is a way to auto arrange that height for display all text? thanks a lot for your help :)
  5. S

    hasp dongle in pocket?

    hi, i have a dongle key working in vb6 and vb.net windows now that i nee buy a app for mobile device the hasp dongle also work in pocket pc? thanks a lot for your help :)
  6. S

    see what key was pressed

    hi, i have a pocket pc that have some special keys and i need detect when a key is pressed in my program. how can i detect the keys that is pressed? i have tested in a textbox change function the box detect all keys except that special keys there is some api to look for alk keys that´s is...
  7. S

    read and write values in registry pocket pc

    hi, i looking for a way to read and write values in registry pocket pc using vb.net so far i have this: Public Const HKEY_LOCAL_MACHINE = &H80000002 Public Const REG_SZ = 1 Public Const DELETE = &H10000 Public Const READ_CONTROL = &H20000 Public Const SYNCHRONIZE = &H100000...
  8. S

    sql server ce query question

    hi, i have two tables products that have the name and code and stock_products that have the current stock and i want in a single query see the especific value of the table stock_products for example from table one: code of product and from table two the stock of the product in secund table i...
  9. S

    convert pdf to jpg

    hi, i looking for a way to convert a pdf file to a jpg file. solutions as vb.net or free batch utility are welcome any one know one? thanks for your help :)
  10. S

    webrequest login apache with folder username/password

    hi, i have the following code working fine: Dim request As WebRequest = WebRequest.Create("mysite.com") Dim byteArray As Byte() = ASCII.GetBytes(query) query ="data=1" ' Dim byteArray As Byte() = Encoding.UTF8.GetBytes(query) request.ContentType =...
  11. S

    read and save xml

    hi, i try to read and save xml file using vb.net CF any one have a sample that show this for Compaq Framework? i have some samples but for normal framework that simple don´t work in Compaq Framework. thanks a lot for your help :)
  12. S

    how pass text to a var number?

    hi, when i try do this: ListView1.Items(a).subitems(TextBox1.Text).text i receive this error: Object variable or With block variable not set. the number in the textbox exist this occor because the var type is not a valid number but how can i convert? in other language i don´t have this...
  13. S

    see multi images like thumb viewer explorer

    hi, what is the best way to see many images like we see in the explorer when we want see all images? use a listview? or other component? thanks for your help :)
  14. S

    resize all content at exact size of screen?

    hi, i working in a pda developed how can i resize all content at exact size of screen? thanks for your help :)
  15. S

    enable/disable screen saver

    hi, how can i enable/disable screen saver by vb.net? i have found only samples to do this with vb6 with a api but in vb.net there is some way to call the same api? thanks for your help :)
  16. S

    query with "special" character to save

    hi, i need perform the following query to save into db the problem is sometimes the user enter some characteres that interfer with the sql command for example if the user enter this word: 'hello' when i try save this result i error because the final query is this: insert into x (v) values...
  17. S

    upload file and send value

    hi, i looking for a way to upload a image or file and a value too using the vb.net so far i found this that can send the image i have tested and is fine :) but i can´t understand how put a value to be returned by this: $_POST["value"] i have other code that can send the value by post and...
  18. S

    log in joomla using WebRequest

    hi, i have tryed to log in in a joomla system using WebRequest but the system dont accept my login any one know a way to login in a page using the joomla system? thanks for your help :)
  19. S

    how creat a cancel form / multi task

    hi, i have a function to export data with some loops now the problem is that when he is exporting the data the program stop responding and only respond when the job is done, and i need a option to cancel the job when it is running but the problem simple block all forms that is opened how can i...
  20. S

    upload image using the WebRequest

    hi, i need to upload a image to a site by using the WebRequest so far i have this for send values: Dim request As WebRequest = WebRequest.Create(site_name) request.Method = "POST" Dim byteArray As Byte() = Encoding.ASCII.GetBytes(post_value) request.ContentType =...
Back
Top