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 strongm 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. wsmall73

    Datagrids: Hiding and displaying in same place

    Or using the microsoft tab control... while the support documentation is pretty poor there are a handful of examples out there and again you would skip the post backs.
  2. wsmall73

    Panel and listbox

    put them in a table on your panel
  3. wsmall73

    Windows Data Types (BSTR) Mapping to PB7.

    is it from the User32.dll or some other? I have most of those defined and working.
  4. wsmall73

    Reading log files

    wow... back in the game. So the solution was to utilize javascript... you can use the fso object to read and write files on the client machine... I ended up utilizing this along with a webservice to easily forward the information back to the database... worked like a champ....
  5. wsmall73

    Webservice changes not being reflected

    I not to the point of consuming... simply using the url to view the methods... I have included [WebMethod] before their declaration... the funny thing is that I copied and pasted the asmx file and renamed it and the new version shows the methods but the old version still shows the old one...
  6. wsmall73

    Webservice changes not being reflected

    I have made several changes to a webservice that I am working on... however the methods are not appearing (only the old method) when I view the methods in the browser the only ones that appear are the old ones... I have cleared my vswebcache and rebuilt to no avail.. any ideas?
  7. wsmall73

    popup window

    Why are you using a popup? Why not just populate a datagrid or datalist to the right on save?
  8. wsmall73

    semi-automatic filling dddw field

    If the field was not set to edit this would be the natural reaction of the dropdown window... is there another way that you can have them click a button to edit the row turning the field type to editable at that point?
  9. wsmall73

    Timer query..

    What version of powerbuilder are you running? if you are running 7.0 or above you can use an animated gif and get away from the timer all together... your processing power is better used elsewher...
  10. wsmall73

    Header Control Assistance Please

    try this for giggles.. give the full path of the image that makes up your background...http://www.whatever.com/images/bgheader.gif
  11. wsmall73

    ASP.Net and Javascript and User Control help needed...

    You will need to use Javascript to accomplish this much in the same way you would have had to in classic asp.... you will want to add the attribute to the textbox in question...to help yourself out pass as parameters the clientid of the two textboxes...
  12. wsmall73

    Active reports for .net help required please

    Laura- You will want to look at datadynamics active-reports forum at the datadynamics website as I believe there is a known limitation with shapes but I am unsure of the details.
  13. wsmall73

    Problem with postback in ASP.NET and C#

    Have you considered using panels on a single page instead of navigating between pages and then either show or hide the appropriate panel. I have had much more success with this because you can then access those hidden controls directly and they are maintained through postbacks. Just and idea...
  14. wsmall73

    string.length

    I am trying to write a custom validator using javascript and I am simply trying to determine the length of what should be a string... function ClientValidate(source,args) { alert(""+args.Value.Length); args.IsValid=true; } I added the ""+ to try to ensure that it was forced to a...
  15. wsmall73

    cant acces selected value in dropdownlist

    sorry..was confused as to what you were asking... use findbyvalue
  16. wsmall73

    Deployment of an app with webservice

    Set the property URLBehavior on your web service to dynamic and then it can be edited as part of your web.config file.
  17. wsmall73

    cant acces selected value in dropdownlist

    It's actually ddl.SelectedItem.Value
  18. wsmall73

    Error using C#

    ddl_type.SelectedItem.Text == "COMMERCIAL" should be == not =
  19. wsmall73

    Return lowest value

    It doesn't you are going to want to do something like the following Using the Northwind database as an example.. select c.ContactName, (SELECT min(OrderDate) FROM Orders WHERE CustomerID=c.CustomerID) as MinOrderDate FROM Customers c (NOLOCK) you'll want to use something like.. select...
  20. wsmall73

    How to write Current Date and ime to DB?

    Chip- can you explain how this leaves you open to a sql injection attack? Sorry looking for some education here.. =)

Part and Inventory Search

Back
Top