vwgolfman's Q&A profile
SQL Server Does Full-text extract searchable metadata (Properties) from documents?
When I create a full-text index on a word document for example. I want it to load metadata (property) fields that can be search independently from the word list. For example, queries like: cat and dog and (Author <contains> 'Mary Jones') This quarantees that Mary Jones only occurs in the word docs author metadata field and not within the document itself. The property fields for an email document would be: to, from, cc, bcc ...Show All
Visual Studio Express Editions Why can’t update my access database?
Hi... I need help with this code, I try to update a register but nothing hapends, no error, no warrnings but no update too. I’m using VWD Express and Access. Protected Sub cmbActualizar_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles cmbActualizar.Click Dim cliente As New ClientesDS Dim taCliente As New ClientesDSTableAdapters.DSICatCtes1TableAdapter taCliente.FillByCodCte(cliente.DSICatCtes1, ...Show All
.NET Development What Iam doing wrong?
OK. What Iam doing wrong here I have wrote this function, but it doesen't work :S. ReadHTMLFile() is a function that reads whole HTML file. GenerateMenuBar() is a function to generate menu bar for the HTML file. Then I do what I need to do (is in WriteHTMLFile() function) and when I write the file I get a page like some tags are missing (truncated :S). I compare the html files (the original one and the generated one) and Ive notice that at the ...Show All
Visual Studio Analyze Message: The NameSet Information for File Name is corrupt
Hi, I have to maintain a SourceSafe database with Japanese content. First I let run the Analyze Tool with the options -f -c -d -v4. To check the status of the database I let run the tool again but only with the option -v4. After the second run there are still a lot of error messages of the same type, e.g. The NameSet Information for cmd.exe_ O I V [ g J b g.lnk is corrupt. According to the KB article 152807 the above decribed procedure is exa ...Show All
SQL Server system error 126
I'm getting this error when trying to run Query Analyzer Server Msg 160 , Level 16 , State 1 . Specified driver could not be loaded due to system error 126 (SQL Server) This is a new SQL Server 2000 install on a PC that has had different versions of SQL Server installed previously, including 2005. I'm assuming this has to do with an incomplete uninstall. Is there a fix or workaround for this I a complete novicebut am also recievein ...Show All
Windows Forms ArrayEditor and Panel Control
Hello, i built a derived control with the base class panel. in the derived class i have the following code: [EditorAttribute(typeof(System.ComponentModel.Design.ArrayEditor), typeof(System.Drawing.Design.UITypeEditor))] public TextBox[] MyTextBox { get { return _myTextBox; } set { _myTextBox = value; } } private TextBox[ ...Show All
Windows Forms DataGridViewComboBox
Using the latest release of 2005. My problem at the moment is really more of a cosmetic one than an acutal serious code/data problem, but its been annoying me all weekend and hopefully someone here will be able to point me in the right direction so I can find a solution. I have a datagridview in a windows form, and I prebind it to a datatable type. I load the datatable and it loads/saves to my remote database correctly. My problem ar ...Show All
Visual C# DataGrid Question...
Hello, I would like to know the basis of a Datagrid. If using a .mdb database as source for the datagrid how do I get the data from a col & row from a Line that the user clicked on... IE: User clicked on the datagrid, I created a Click event, well sort of they have to click way left for the whole row, then the method works, Now in this method I want to grab the data say Firstname and or Lastname how do I do this simply ... My othe ...Show All
Visual Studio Populating a report.
I currently have the following code. reportViewer1.LocalReport.DataSources.Add( new Microsoft.Reporting.WinForms. ReportDataSource ( "Forecast" , forecastDS.Tables[0] ) ); The report loads but I am confused on how I show the actual data on the report. Also is there a way to display images based on values in a row in the datatable If you want all rows to show then you have to first add a List or a Table to ...Show All
Windows Forms cancel DataGridView RowLeave Event?
I want to force the user not to change a row. Can I do this inside the RowLeave Event...Setting the position there seems not to work. Maybe I can workaround the state of a row eg. new,dirty,... Thanks Peter Thanks for your answer! Maybe this is correct in another situation. When I catch this event I receive an: System.Data.NoNullAllowedException before this Event is triggered. I have a datagridview and a ...Show All
Windows Forms Still no luck
My application works fine on my development machines which already have the Framework installed, but trusting the prequestite feature to install the framework or Windows Installer on machines which need the pre-req. install fails. The browser reports CGI Error: The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are: (...with no more info...) I've had no look in searching the ...Show All
Windows Forms Prevent columns in winforms datagrid from scrolling
In Windows Forms DataGrid I don't want first two columns to scroll. Is there any why of doing this thanks What do you mean Are you saying that if there are more rows in the datagrid that can be viewed vertically and th ...Show All
Windows Forms data grid changing sizes of columns
How do you change the size of the column sizes. I have 3 columns that fill from a dataset but not sure how to make the columns sizes larger. Thanks Try the code listed below, there is also am alternating color for rows. ...Show All
.NET Development Compare time
Hi, Im having a lil question. Im trying to compare 2 times with eachother. One time is in an xml file. The other one is the time at this current moment. If the time is older than 1 month, it should remove a whole table from the xml file. This is the code i produced so far: static void Main(string[] args) { try { DataSet xmlFile = new DataSet(); xmlFile.ReadXml("test.xml"); foreach (DataRow dateR ...Show All
SQL Server Do Table Value Functions eliminate parallel execution plans?
In the SQL 2005 help doc on the table data type, it states " Queries that contain table variables do not generate parallel query execution plans. Performance can be affected by the presence of very large table variables, or table variables in complex queries. In these situations, consider using temporary tables instead. " Does the use of a table-valued user-defined function incur the same penalty, since it is returning a table dat ...Show All
