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 TouchToneTommy 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: JGALEY
  • Content: Threads
  • Order by date
  1. JGALEY

    strange compiler error I only get sometimes

    I am getting a compiler error that I cannot nail down. When I go to pages that use certain classes, I get an error that looks like this: Compiler Error Message: CS0434: The namespace 'GradeBook' in 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET...
  2. JGALEY

    text rotation does not work on a web form?

    I have a report done in Crystal for Visual Studio.NET 2005 (Crystal 10), as part of an ASP.NET web site. I did 90 degree text rotation in a crosstab header field to save space (so that the column header text flows up in a straight line). It works great in report preview, but when I load the...
  3. JGALEY

    using a master page breaks my SQLDataSource.Insert operation

    I have a working page that I transplanted into master/content page arrangement. When running the page now, things that used to work, like inserting a record using a SQLDataSource, no longer work. SQL Server returns an error saying I cannot insert a null in a column, but the Insert parameters...
  4. JGALEY

    can I use SQLDataSource to populate form fields like textboxes?

    I have SQLDataSource working to load a series of records in a GridView control. Works great for that, and I can insert and update using the SQLDataSource, also with no problem. What if I want to load a single database row for editing on a form, with typical controls like text boxes - can I use...
  5. JGALEY

    IE and Firefox problem - text is all white in FF, ok in IE

    I am in the process of converting a table layout to CSS and divs. Using Dreamweaver MX 2004 with templates. Linking to a style sheet. Basically a two-column layout with a header. Text is normal color in IE - headings like H2 and content in p tags are fine. In Firefox, pretty much all text...
  6. JGALEY

    first row of datareader results not showing in datagrid

    I have simple ASP.NET app (.NET 1.1) that allows the user to build a SQL query and show the results in a datagrid. It works OK, except that the first row does not show in the datagrid. If I run the query directly in SQL Server Query Analyzer, I get 17 rows. When I run it through the app, I...
  7. JGALEY

    DC local computer policy password length setting

    My understanding of settings such as min password length has always been that you set them at the domain level, and that settings made at other levels would either not be applied at all, or would be overriden by the domain level security setting. This allows you to set security at the domain...
  8. JGALEY

    unknown admin share R$

    I have a server that has an admin share R$ listed under Computer Management --> Shared Folders --> Shares. There is no R drive on the server, I cannot do a \\servername\R$ to see the share either from the local server or a remote machine, the path to the share is "unknown." I can remove the...
  9. JGALEY

    images stretched vertically loading external/html text - dyn txt box

    I have the following script code used to load text from a txt file into a dynamic text box, a different text file depending on the button the user clicked: var Status_str:String= status_txt.text; var TextFile_str:String; switch (Status_str) { case "MidAtlantic" : TextFile_str =...
  10. JGALEY

    MSDE problem using Crystal Enterprise

    Hello, I am getting this error when trying to connect to the MSDE through Crystal - or using Query Analyzer or ODBC DSN, for that matter: SQL Server Error: 11 [Microsoft][ODBC SQL Server Driver][Shared Memory]General Network Error It also says "ConnectionOpen" "PreHandshakeLogin" This is...
  11. JGALEY

    CE 9 on Windows 2003 server - SQL General Network Error

    Hello, I am getting this error when trying to connect to the MSDE through Crystal - or using Query Analyzer or ODBC DSN, for that matter: SQL Server Error: 11 [Microsoft][ODBC SQL Server Driver][Shared Memory]General Network Error This is Crystal 9 Enterprise Standard, running on Win2k3...
  12. JGALEY

    "this" in C# like "me" in VB.NET?

    Hello, this is probably a real newbie question, but I could use a bit of advice. I have some experience in VB.NET, and one of the things I like is that I can put "me." in the code, and all the objects on my forms (text boxes, labels, list boxes, etc) show up in an intellisense list. It makes...
  13. JGALEY

    IIS authentication and name resolution with WINS vs DNS

    I developed a web site running on IIS 6. Anonymous is checked off, integrated windows authentication is turned on. It is an ASP.NET site. If I connect to this site using http://servername/virtualdirectoryname, all is well. It goes to the document listed under documents for the default/home...
  14. JGALEY

    setting label text before connecting to db

    I have what may be a newbie question: I am using a label to show status messages. Things like, click an update button, a db update happens, and then the label.text is set to "update complete." I want to set the label text BEFORE a long query runs to say something like "Processing, please...
  15. JGALEY

    flash will not load - "no entry point found"

    Flash MX 2004 used to load fine, but now I get an error that says, "No entry point found" (title of pop up window) with the text being " the procedure entry point [long string of characters] could not be located in the dynamic link library actlib.dll" I have found nothing on...
  16. JGALEY

    Crystal 9 and SQL Server stored procedures: ODBC error

    If I use Crystal 8.5 with a stored procedure (with parameters), I have no problem. When I try to create a report in Crystal 9 with the stored procedure, I get this error: Query Engine Error: '42000:[Microsoft][ODBC SQL Server Driver]Syntax error or access violation' This happens after...
  17. JGALEY

    CE 9 URL Reporting - Printing

    Using CE 9 Standard, printing seems to now require an act of Congress to get done, whether in ePortfolio, or when using my preferred method of reporting, via URL. No printer icon shows when calling the report by URL, leaving the user's only option being to export to pdf and then print. Using...
  18. JGALEY

    selected item in list box set to a newly added row?

    I have a web form with a listbox, and when I add a record to the DB, I have the listbox cleared and then recreated with the new record included. How can I have the new record be the selected row of the list box after the add is complete? Thanks in advance, Jason
  19. JGALEY

    first row missing from listbox when using while loop and datareader

    I have a web app connecting to a SQL Server db. I use a stored procedure with a datareader to populate a listbox with a row for each record occurring on a certain date. I am using the following while loop for this: While drGetPMs.Read lbPMByDate.Items.Add(New...
  20. JGALEY

    while loop to fill listbox, missing first record

    I have a web app connecting to a SQL Server db. I use a stored procedure with a datareader to populate a listbox with a row for each record occurring on a certain date. I am using the following while loop for this: While drGetPMs.Read lbPMByDate.Items.Add(New...

Part and Inventory Search

Back
Top