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. wendas

    Help with Window forms Package and Deployment

    I am working with Visual Studio 2010. I have a SQL Express database. I have packaged & deployed asp.net without database many times no issues. But the Window Forms seem frustratingly elusive. 1) I have found little documentation on it. Like no one uses it. 2) I found something about creating a...
  2. wendas

    undocking a docked Find/Replace tool

    As soon as I entered this, I clicked one more place and found it. I found that the opp. click in the toolbox didnot work, nor on the tab, but up top where the tabs run, if you opp. click in the empty gray area, if offered a choice to get it to float again. Then once floating I did not see the...
  3. wendas

    undocking a docked Find/Replace tool

    I don't know how, but my normally small floating find tool suddenly just takes up the whole screen and sits with a tab as if it is an open table or stored procedure. Problem is I can't see the stored procedure it is finding stuff in, unless I tab back and forth from the find to the SP. I did...
  4. wendas

    bypass RequiredFieldValidator if hit Exit button

    Is there a way to tell the system to bypass the RequiredFieldValidator if the Exit button is hit? It seems that on other websites You are required to enter a name or address, but if you hit cancel, or return to shopping, it doesn't force you to enter the info before you can get out.
  5. wendas

    Class Library will not update in one project.

    Hmmm.. Either the removal of the compiled version from the myDocuments area worked. Or my shutting down of the computer and giving it a rest did. Today, deleting the reference and referencing the dll, worked. So Yeah no rebuild of the entire project!
  6. wendas

    Class Library will not update in one project.

    Thanks, but I did try that. That's was what I did in step #2. I have not moved the library in months and changes to it were working fine earlier in the day. I am going to try deleting out the temp compiled version in the my documents area. If that doesn't solve it the only thing I can think to...
  7. wendas

    Class Library will not update in one project.

    I have a class library and two projects reference it. One project showed the updates by simply doing a build on the library & on the project. The other one refuses to references the newer version. I have... 1) hit build on the library & project many many times. 2) deleted the library from the...
  8. wendas

    How project notes changes in a Library

    Thanks, Well I am glad when I created the library in VB my IDE didn't know that. I spent months developing two libraries by coding a little in the library, then testing it in the project then fixing or coding more in the library. It would have been a real pain if the builds of the two project...
  9. wendas

    How project notes changes in a Library

    Thanks, but the library is seprate from the project as the library will be referenced by many projects. Also the build is successful. It has 0 errors, 0 warnings and 0 messages. I tried building both the project & library 3 or 4 times, I then logged out of both & back in.. I finally gave up...
  10. wendas

    How project notes changes in a Library

    I am switching from VB to C#. In VB if I made changes to a library, I just hit the build in the Library, then hit the build in the project and they were in sync with each other. It seems that with C# this is not the case, I ended up deleting the library dll out of the project then readding the...
  11. wendas

    converting list<name> in C# to VB ??

    thanks, I also had to add an Imports System.Collections.Generic for VB when c# it was automatically included.. But other then that that worked.
  12. wendas

    converting list<name> in C# to VB ??

    I have in C# List<DateList> holidaysPassed = new List<DateList>(); I tried Dim holidaysPassed As List<DateList> and that doesn't work. I also have some sites that show differences between C# & VB, but none show List..
  13. wendas

    Debugging a class library

    I am lost somewhere with this. I have a class library and a program tha references the class library. Both are progresses in the works. I did read something that I could point my class library to an .exe or url, but my calling project is not at that point. But I found I can just run the...
  14. wendas

    Easy.. add a library to a web site

    Additional I got it to automatically put the 3 necessary files into the project bin folder.. But.. No custome controls automatically added to the library. (by the way, this is before I try creating my own custom controls. These are controls the book example gave me.) Anyway I went to Add...
  15. wendas

    Easy.. add a library to a web site

    This is easy.. Just learning and the book has me frustrated becaus I can't get there from here. I created a project as a web control library, added code, tested it created a dll and no errors. I created a new website Book says to usr file / Add / Existing Project command, then locate and...
  16. wendas

    Accessing data on content page in Master page

    Well standardizing presentation is something it does also, all 50 reports should look the same in title, buttons to choose to do PDF, excel, or display to screen (and other various things) and the placement of the CR report. All that may be different about it is the prompts comeing from the...
  17. wendas

    gridview CommandField using imageURL

    Thanks, But fiddling around with your idea, gave me the answer. I think the solution it was so easy, you didn't see what I was asking. All I needed to do was make the command button, not be a link or a button, but an image.. Then the imageurl worked just fine.. Just something not covered in...
  18. wendas

    Accessing data on content page in Master page

    Thanks, I guess what I am doing I can't see how to more simplify it. I decided to pass a public parameter when calling the specific content page, that way my master page can figure out what it needs from there. My master page is for binding, displaying to screen or exporting crystal reports to...
  19. wendas

    gridview CommandField using imageURL

    Seems like the gridview lets you choose between a button that reads "Edit" (or whatever text you want) or appling an image that depicts Edit. But when I try to alter to ImageURL, it doesn't seem to work, I have tried clearing the text field, I have gone to the html code, and took out the info...
  20. wendas

    Accessing data on content page in Master page

    I figure I can use your logic in load to tell me what content page I have. The program might not care, but if I am responding on the master page to what's passed in the content page, I need to have an idea what fields were on the page. init & load come b4 anyone can change the textbox, unload...

Part and Inventory Search

Back
Top