Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ganjafarmerIT

    HOWTO Declare a crystal report in .NET 2005 just like in .NET 2003

    Hi folks, I just started using .NET 2005. I've been trying to use some old code(.NEt 2003) in .NET 2005, and it's giving me a headache 1. I can't declare a crystal report just like in .NET 2003. 2. I'm trying to export my crystal report to pdf trough a memory stream. This is one of the most...
  2. ganjafarmerIT

    How to get a reference to my selected divelement

    Hi guys it's me once again, struggeling with a dammned html editor. I can't figure out how to create a reference to the htmlelement that's being selected. How is it that you can only use mydocument.selection to create a textrange so you can use it to edit the selected text? <Code> Dim...
  3. ganjafarmerIT

    Costum windows form control not working

    I have fixed the problem. I created an GUI usercontrol. Which automaticly had the *.Location.
  4. ganjafarmerIT

    Costum windows form control not working

    earthandfire, I haven't done it my self. I thought that visual studio automatically creates it when I drag my constum control to the form?
  5. ganjafarmerIT

    Costum windows form control not working

    yes m8, I tried the following <code> Public Property time() As String Get Return myTime.Text End Get Set(ByVal Value As String) myTime.Text = Value End Set End Property </code> myTime.text is one of the tree labels I have inside my...
  6. ganjafarmerIT

    WEBbrowser control in VB.net

    I'm designing an html editor in vb .net. I have to catch onclick event when a div or background is clicked. The browser is put in designMode, which make it possible to type, add pics etc. i found something on devx.com(http://www.devx.com/vb2themax/Tip/18798) The only problem i have now when...
  7. ganjafarmerIT

    Costum windows form control not working

    thanks for your reply m8, I already tried using properties to set the values of the three labels. That didn't work either:(. the problem is that it doesn't display the text on the screen:( and doesn't generate any errors either. reilly weird
  8. ganjafarmerIT

    Costum windows form control not working

    Hi guys, I'm trying to create a costum windows form control that consists of 4 controls: a checkbox, and three labels. I can't seem to get it to work. The problem I'm dealing with is that I can't assign any values to the labels when running my app. the label text doesn't change. Here is my...
  9. ganjafarmerIT

    Crystal report problem exporting to pdf

    hi people, I've encounterd a really weird problem. I've build an application which can export crystal reports to pdf format. now the code is fine cause it works all well on my own computer. But when I install the application on another computer, when I try to export I get blank pages. I don't...
  10. ganjafarmerIT

    how te remove ie temp files trhough code on client

    It worked out after all m8, I used the iis settings to add the expire = -1 header. That worked well. But adding it trough code in my application didn't have any effect really weird.
  11. ganjafarmerIT

    how te remove ie temp files trhough code on client

    hm doesn't seem to be working, even though I set the response.expire to -1 it still seems to be in the cache:S
  12. ganjafarmerIT

    how te remove ie temp files trhough code on client

    Haven't tried that yet, hehe thanks for the tip m8, gonna try it and see if it works. I'll let you know how it worked out.
  13. ganjafarmerIT

    how te remove ie temp files trhough code on client

    I just need to remove a few files cause security policy does not allow the users in this company to set the settings of ie to let ie check for newerbversions of a page. And that is giving me problems when I'm requesting a picture or converting to a pdf from crystal report.
  14. ganjafarmerIT

    how te remove ie temp files trhough code on client

    Hi people, I was wondering how I could cleare the ie temp of a client connecting to my asp. Net web application trough code. any ideas?
  15. ganjafarmerIT

    export to excel problem

    Hi folks, I'm having some weird problems with my application. I'm retreiving data from an mssql db and then I export that data in excel format file. The problem I'm facing is that sometimes when a user opens that excel file, for some reason the data in the file is mixed with old data. Really...
  16. ganjafarmerIT

    export to access caching prob??

    anyone awake?
  17. ganjafarmerIT

    problem in uploading files

    why don't you use the asp.net upload control? it's easy to use this control : <INPUT id="File1" type= "file" name = "File1" runat="server"> and use this code to upload the file in vb: file1.postedfile.saveas(Path+Filename)
  18. ganjafarmerIT

    Creating New project in IIS

    that's your session id m8
  19. ganjafarmerIT

    problem in uploading files

    can I see your code m8? cause it should work. I think the application is searching for that folder on the clients computer instead of searching for it on the server.
  20. ganjafarmerIT

    export to access caching prob??

    Hi folks, I'm having some weird problems with my application. I'm retreiving data from an mssql db and then I export that data in excel format file. The problem I'm facing is that sometimes when a user opens that excel file, for some reason the data in the file is mixed with old data. Really...

Part and Inventory Search

Back
Top