[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.0

Could not convert variant of type / blahdieblahdieblah (Dispatch) into type / blahdieblahd string

Asked by PeterdeB in Delphi Programming

Hi Folks,

I have an error message which causes me a lof of psychological mumbo jumbo. Now I attached the procedure causing this eror but if you need more info, the complete unit or project even with the components please let me know.

My addin searches an entire excel 2k3 workbook for a string, this goes without any errors unless the workbook contains too much data? I'm not sure about this, some workbooks cause no problems but this one does.

If you need more info please let me know!

Thanks,

Dweeep

Ps I attached a screenshot from the error I get from within excel 2k3
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
procedure TCoPDBSearch.DoShow;
var
  Sheet_name : string;
    i, r, c,x,y ,last_column, last_row :integer;
 sheet: variant;
 Iedt: IaxpEdit;
  frmSearch: TfrmSearch;
begin
  frmSearch := TfrmSearch.CreateEx(Self, PDBAddinVer);
  try
     for i:= 1 to HostApp.ActiveWorkbook.WorkSheets.Count do
  begin 
    Sheet_name := Hostapp.ActiveWorkbook.WorkSheets[i].Name;
     Sheet := hostapp.Worksheets.Item[Sheet_name];
     Sheet.Activate;
     Sheet.Cells.SpecialCells(xlCellTypeLastCell,EmptyParam).Activate;
     Last_column := hostapp.ActiveCell.Column;
     Last_row := hostapp.ActiveCell.Row;
     r := 0;
     repeat
        inc(r);
        c := 0;
        repeat
           inc(c);
            IEdt := FindControl(EdtSearchTag, axpEdit) as IaxpEdit;
            if pos(iedt.Text,hostapp.Cells.Item[r,c]) > 0
           then
           // add item to a memo for export
            frmSearch.mmo1.Lines.Add(Trim(hostapp.Cells.Item[r,c].Value));
 until c = Last_column;
     until r = Last_row;
  With frmSearch.mmo1 do
  for x := Lines.Count-1 Downto 0 Do
  for y := Lines.Count-1 Downto 0 Do
if (x <> y) Then If Uppercase(Trim(Lines[x])) = Uppercase(Trim(Lines[y])) Then
 begin
   Lines.Delete(x);
   continue; // it is necessary to break the inner loop once the line is deleted
 end;
  end;
  frmSearch.stat1.Panels[0].Text := PDBSW;
  frmSearch.edtPath.Text := GetShortPath(GetModuleName(hInstance),15);
   frmSearch.stat1.Panels[2].Text := IntToStr(frmSearch.mmo1.Lines.count)+' item(s) found';
   frmSearch.ShowModal;
  finally
    frmSearch.Free;
  end;
end;
Attachments:
 
 
[+][-]11/03/09 07:27 AM, ID: 25729823Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 07:39 AM, ID: 25729983Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/03/09 09:34 AM, ID: 25731375Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 09:43 AM, ID: 25731470Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 09:50 AM, ID: 25731536Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Delphi Programming
Sign Up Now!
Solution Provided By: epasquier
Participating Experts: 1
Solution Grade: A
 
[+][-]11/03/09 02:13 PM, ID: 25734399Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/03/09 02:48 PM, ID: 25734745Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625