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 Chriss Miller 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: *

  • Users: dBjason
  • Content: Threads
  • Order by date
  1. dBjason

    Javascript window.open() hangs second time around...

    I'm opening a child aspx page that is opened from a parent page using javascript (listed below). It works GREAT the first time -- but hangs on the second and any concurrent attempts, sometimes resulting in a timeout error. Here's the code from the parent page: function ShowPanel(url) { var...
  2. dBjason

    Moving values from one window to another

    I have a child window (aspx page) opened from the parent application (using window.open). The child window has some controls, and a textbox. When the user is finished, s/he clicks a button and the following code takes the value from the child window's textbox and populates the parent, like so...
  3. dBjason

    Moving values from one window to another

    I have a child window (aspx page) opened from the parent application (using window.open). The child window has some controls, and a textbox. When the user is finished, s/he clicks a button and the following code takes the value from the child window's textbox and populates the parent, like so...
  4. dBjason

    Adding site to broswer's 'Trusted Sites' list

    I have an ASP.NET application and have published to our company's intranet. Problem I have here is getting 350 computers to add the site's IP address (ie: 123.1.1.123) to the Local Intranet trusted sites zone, located in the browser's Tools -> Internet Options -> Security -> Local Intranet ->...
  5. dBjason

    Passing Large Strings Between WCFs

    I'm calling a TCP-hosted WCF from an http-hosted WCFlike this: Client.Write_dat_File_String(BigString, FileNameString) BigString has between 12,000 and 25,000 characters. The string passes to the WCF, which looks like this: Public Sub Write_dat_File_String(ByVal datString As String...
  6. dBjason

    VB.NET WCF Ports

    Hello, I've been writing (several) self-hosted WCFs (hosted as a windows service). Most of these are using TCP binding and function quite well. My question concerns ports. In each app.config / web.config file, we're required to place a tag which usually looks something like this...
  7. dBjason

    Functions that return files

    Hello, I'm trying to write a sub and a function. The function is to return a file to the sub, which will write the file to disk. Something like: Sub Main() File.Create("C:\NewPDF_File.pdf", GetPDF) End Sub Function GetPDF() as System.IO.FileStream GetPDF =...
  8. dBjason

    Populate a textbox without reloading the page.

    Hello, I have a listbox, a textbox, and a button. The button populates the textbox with the selected item & value of the listbox. As below: Protected Sub GetVariables_Click(ByVal sender As Object, ByVal e As EventArgs) Handles GetVariables.Click Me.txtLetter.Text =...
  9. dBjason

    FOR XML AUTO Question

    Here's my query: select letterid, lettername from ltrNames for xml auto, elements Here's what I'm getting: <ltrNames> <letterid>1</letterid> <lettername>First Letter</lettername> </ltrNames> <ltrNames> <letterid>2</letterid> <lettername>Second Letter</lettername> </ltrNames> <ltrNames>...
  10. dBjason

    XML Update

    Hello, I'm a complete noob with XML. Here's what I'm trying to do: UPDATE ltrVars SET LetterVarXML = '<xml version="1.0" encoding="utf-8" standalone="yes"?> <LetterVariables> <Occupant> <VarType>Text</VarType> <Name></Name> </Occupant> <AccidentDate> <VarType>DateTime</VarType>...
  11. dBjason

    Newbie

    Hello, XML and its benefits are very new to me. I have been given a project, and was recently suggested that I explore XML as an option. But I have no idea if it will suffice. Any suggestions/help/whatever would be greatly appreciated. I am designing an application (VB.NET/WCF/SQL Server)...
  12. dBjason

    Multidimensional Parameters

    Not *quite* sure how I'm going to do this, but... I'm trying to design a db-driven system using WCF, VB.NET and SQL Server 2008. Basically, the VB.NET and WCF code capture user-defined data and are supposed to pass it to SQL Server, which will retrieve a single record (nvarchar[max]), parse &...
  13. dBjason

    Multidimensional Parameters

    Not *quite* sure how I'm going to do this, but... I'm trying to design a db-driven system using WCF, VB.NET and SQL Server 2008. Basically, the VB.NET and WCF code capture user-defined data and are supposed to pass it to SQL Server, which will retrieve a single record (nvarchar[max]), parse &...
  14. dBjason

    Separating Nulls &amp; Values

    I have the following query: select b.Const from ltrCompState as a, ltrConst as b where a.LetterID = 3 and a.StateID = 2 and (a.CompID = 20 or a.CompID is null) and b.CSID = a.CSID Works *almost* great. The problem I have is this: It returns two records (which it should). I have to modify this...
  15. dBjason

    Database Design Software

    Hello, This might be considered 'off-topic', but I don't know where else to go. I'm trying to draw a simple database/relational model for a conceptual SQL Server db schema. What I need is to draw something similar to what MS Access creates when you view the table relationships. Real simple...
  16. dBjason

    Increment?

    Hello, I have a table I need to self-insert of sorts. Problem is, there's a sort-order field that's NOT an identity column. But it needs to be incremented as I insert. What I'm trying to do is (something like) this: insert into mytable (var1, var2, sortorder) select var1, var2, sortorder + 1...
  17. dBjason

    General Reporting Application

    Hi All, I'm still relatively new with the .NET framework, and am hoping I can get a little direction from you guys. I've inherited an old VB6 reporting application which I must maintain until a (new) version is ready to roll out. As part of my 'project', I am also supposed to be thinking of...
  18. dBjason

    F5 Key Behavior

    Hello, and hope I'm not posting in the wrong place! I have a legacy VB6 app that runs against a SQL Server 2008 database. Nothing too complex. I also have two monitors. I like to keep the VB6 IDE maximized in one monitor, while having SSMS maximized in the other. This way I can troubleshoot...
  19. dBjason

    Trying to create a db model

    MS Visio 2007 Hello, I'm trying to create a document that will display tables, fields and relationships in a database (similar to the E/R tool in MS Access). Nothing fancy, just the tables with the columns they contain with arrows showing the relationships. The problem I'm having is that I...
  20. dBjason

    DataGridView

    Hello, I have a simple vb.net project with a form, dbSource, DataSet, BindingSource and TableAdapter. On the form there is a DataGridView, that links to a table in SQL Server (all of these are controls, dropped onto the form from the Data Toolbox). When I run the form the DataGridView is...

Part and Inventory Search

Back
Top