Jump to content
Xtreme .Net Talk

kulrom

Members
  • Posts

    7
  • Joined

  • Last visited

Personal Information

  • Visual Studio .NET Version
    VS.NET 2003 Enterprise Architect
  • .NET Preferred Language
    vb.net, C#, T-SQL

kulrom's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Ctrl+A sample ... and don't forget that KeyPreview should be set to TRUE Private Sub Parser_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown If e.Control And e.KeyCode = Keys.A Then ' ToDo: something e.Handled = False '/True End If End Sub Sorry if i have missunderstod your question.
  2. I am not sure if these are really free so you should take responsibility for yourself. ALL THESE LINKS OFFER one or MORE FREE eBook
  3. If i understand your question then you are right. Unfortunatelly i cannot run your project as i am working on x64 WinXP so JET is not supported.
  4. Well you can use the HttpWebResponse - HttpWebResponse Classes but as this is VBScript it cannot be directly converted to C#. Rather you can convert it to e.g. JavaScript HTH :)
  5. Ok but i still want to keep the windows app format and if it's possible at all asp.net to goes in background only ... however, thanks for the advices i really appreciate your time ;) Is there anyone else that worked with this kind of app? Thanks in advance :)
  6. Hi guys, Recently i made an app and it works very well so far ... but these days i decided to extend client part's features to remote access the data stored on server machine. Actually, all i need is when my laptop PC is located out of LAN to still able update/select/delete/insert data from within MS Access DB. I've been look around for some useful informations in order to resolve my issue but i found may different opinions ... some people says that i need to go for SQL Server and that it is the best and only solution ... also, some people claimed that i should go for web services as it's most adequate and simplest solution for me ... so, i'm wondering is there someone that could clarify this dilema for me please ?! I'm mostly concerned about if i go for web service where this service will be stored ... do i need a Public IP address or it would work just fine from common server without registered web site? btw, i'm absolute n00b in this section/subject :( I'm waiting for your sugesstions ... thanks in advance :) edit: also i forgot to ask about client part. whether i need to install IIS on client machine/s as well in order to make it able to access certain MSAccess DB remotely?
  7. How to change a font of text object of CR in runtime? actually i'm passing value of textBox (win form) to text Object (.rpt) and i want to set up its font style ... for instance i found that it works well for color property i.e. {...} txtCR.Color = Color.CadetBlue //works but this doesn't: txtCR.Font = Font.Italic //this throws an intelisense warning "font is read-only property" Thanks in advance :)
×
×
  • Create New...