 |
 |
Index ‹ Visual Studio ‹ Visual Studio C++
|
- Previous
- 1
- Visual Studio C++ >> VS 2005 Compatibility ProblemPlease point me to a more appropriate group if there is one.
Thanks.
We have a native Win32 API console program built with VC++ and VS
2005. It will run on any XP box with VS 2005 installed. Then,
we packed it and the needed DLLs up and put it on a server. It
turns out it will run fine on Windows 2000 server but won't start
at all on a Windows 2003 server. The error is "The system cannot
execute the specified program." We get the same thing when
testing on an XP box that DOESN'T have VS 2005 installed.
Any ideas?
- Arnie
- 2
- Visual Basic [VB] >> Disconnected socket still connected! - What then?Hi, I have synchronous communications between a server and client. To save bandwith the connection must persist. So the socket must stay open and only be re-opened in case of communications failure. To simulate failure, the server disconnects the socket. However, the client socket parameter shows an open socket: socket.connected is true, socket. Active is true, socket.poll(1,selectRead) is true. When checking the MS class documentation, it is stated that socket.connected reflects the LAST status of the socket. So far, I have come accross many other programmers having the same problem. Some suggested of using the exceptions errors. But when connecting to a socket which is still open (according to VB.Net) while having the plug pulled out, the excpetion error one gets is, guess.......................Trying to connect on an open socket!! Have anyone found a way out yet? (That is appart from using other objects not designed in .NET)
- 3
- MFC >> COleControl::GetDCHi,
I am attempting to create a windowless control which will be transparent,
apart from animation that it draws to the screen in separate threads. I have
successfully worked out all the thread handling and synchronization thanks
to you lot but I am a bit stuck on the bit about the windowless control
getting a device context, especially as I want to paint to a buffer device
context and then copy that to the screen to avoid problems of bits of the
animation 'getting stuck' as they do when a control draws animates directly
to the screen. I've read the information in the link at the bottom of the
page, but does anybody know the answer to the following?
1) If I use the OLEDC_OFFSCREEN flag, I'm just a bit unsure as to what takes
care of the buffer device context and the copying of it to the screen. Does
the container take care of this (as is my guess), or does MFC take care of
it, or do I have to code that myself?
2) I understand how if OLEDC_PAINTBKGND is the parameter, the container
repaints the area of the window covered by the control with its own contents
in that area before passing the device context to the control in order to
allow it to paint to it, but does this happen if I just use OLEDC_OFFSCREEN?
Can I use OLEDC_OFFSCREEN | OLEDC_PAINTBKGND, i.e. do an OR operation to
specify them both?
Thanks for the help
Regards
Ben
- 4
- Visual Studio C++ >> Class InitializationDumb question,
Does C++ auto-initialize (zero out) data members in a class? Only Class
based members? arrays? or should I always initialize them in the
constructor? I mean I always do and have, but at times it becomes
tedious and I always wonder if it is truly necessary, so I am just asking to
finally get it out of my head! <g>
Many times I'll just create a struct with all my class data members
(non-class based struct fields) and then just have a ZeroMemory() in my
constructor. This way I don't have to worry about initialization when I add
new fields to the struct. But if I need a CString in the struct, I have to
remember that I can't use ZeroMemory on the struct. So that's part of the
reason why I am asking.
Thanks
- 5
- Visual Studio C++ >> self debug informationHello,
I've implemented the following things on another platform, and I'd
like to know whether they could be done with VC++:
- when an uncaught c++ exception occurs, the program prints its
type, and if it's derived from my own exception, it prints an exception
stacktrace (the stacktrace stored in the exception object) - like in java.
Is there anything like abi::__cxa_current_exception_type()?
- when a program causes general protection fault, division by
zero, etc., the program prints the stacktrace
- these things can be added to an already working program without
serious modifications: only a call to initializeSelfDebug() is needed at
the beginning of main()
The stacktrace contains IP address, source:line information.
These things should be available without Visual Studio installed (VS
isn't installed on the machines of testers/users).
When the program crashes, these things give us a lot of valuable
information instead of the usual "your program crashed-click to OK"
messageboxes.
Thanks,
Geza
ps: I'd like to avoid the
int main() {
try {
original_main();
} catch (MyExc &e) {
e.printStackTrace();
} catch (...) {
print("unknown exception occured");
}
}
because in some scenarios it doesn't work (for example: a dll plugin)
- 6
- Visual Basic >> Use XSD to get data types for XML elementsI am using VB6.
I am receiving an XML file and an XSD file.
I understand I can use the XSD file to validate the XML file, but is
it also possible for me to use the XSD file to give me the data types
of the elements in the XML file?
When processing the XML file, I know the name and the value (e.g.
<FirstName>Richard</FirstName>, <Amount>1.23</Amount>).
The XSD has the datatypes defined for each element.
What I want to do is, while processing the XML file in my VB program,
also be able to get the data type for that element.
Thanks for any help.
RichardF
- 7
- Visual Basic [VB] >> Reflection and Menu Merging in MDIsWe have an MDI application that looks for forms in which a common interface
has been implemented. We can instantiate the forms and display them as
children of the mdi and use the functionality on them.
The problem is that the menus from the child forms don't show up. They
don't even show up on the
form itself, much less merge with the mdiparent menus
We have changed the modifiers on the menu and on each item in the menu to
public so they can be seen outside the assembly. We have tried not making
the form an mdichild and using it as a stand-alone application (still
instantiated by the mdi, although not as a child). The child form does
appear in the 'windows' list as a child of the mdi.
Is there any way to make available to the mdi, the menu on a child form
instantiated through reflection?
- 8
- Visual Basic >> Service Pack 6I wanted to know if anyone out there had installed Visual Studio Service Pack 6 and what the consensus was on it. Any one run into problems?
- 9
- 10
- MFC >> Parent window cannot receive mouse click from child control.Hi there, that is strange. I have a form view inside a splitter window
that holds a slider bar. For whatever reason I cannot receive mouse
click messages when I click on the the control. I can receive the
messages when I click besides the control.
I was trying to look through newsgroups but I could find anything.
I know it must be something simple. Anyone that can help me out?
Christian
- 11
- Visual Basic [VB] >> Weird bugHi All
I have this weird bug in the code below:
Dim temp As String = oAction.ActionType.ToString
For Each ctl As Control In Me.Controls
If ctl.Tag IsNot Nothing Then
ctl.Visible = ctl.Tag.ToString.Contains(temp) '<------error here
ctl.Enabled = ctl.Visible
End If
Next
The error is: IndexOutOfRangeException (Index -1 does not have a value)
I have a number of controls on the form that are visible depending on the
value I put in the tag property
- 12
- Visual Basic >> Do Not Show Box AgainHi All,
I have a small form that appears at the start of my program that allows the
user to fix certain parameters that are lised in Combo boxes in the main
program before starting. This works OK but appears everytime the program is
first run.
What I would like is for there to be a Check Box that askes the question "Do
not show this box again" and fixes the selected parameters for all time in
the main programs Combo boxes, and does not appear again.
Can this be done?
Best Rgds,
Dave Robinson
- 13
- 14
- MFC >> Resource limit?I am having a really weird issue that I can't figure out...
I am getting a unhandled exception in my application. Also a "a resource is
unavailable..." error. It appears to be related to opening a large number
of resources. I'm not sure.
I have a CDialog derived class that is embedded in a tabbed dialog type
control which is all part of a CFormView. This dialog view has a custom
control/grid that uses CStatic controls for the cells. Each instance of
the class creates around 250 CStatic controls. This has always worked
well, but recently I modified my code so that more than one of these
CFormViews can be open at a time.
On opening the 6th instance (they all use the same MDI template), the app
blows up. I can't track it down to a single line and I think that's
because it's an application-wide issue.
I don't think it's necessarily a problem with this particular CDialog over
the other ones in the tab dialog view. I think it causes the problem
because it creates so many controls. In fact it's not even this type of
view that is the problem. After opening 5 views, if I open a normal
CDialog that embeds the same grid control it blows. I'm pretty sure the
grid isn't specifically the problem just the source of the problem.
If I debug deep into MFC code it appears the CreateCompatibleDC is failing
in different places.
Is there a limit to the number of controls that can be opened at one time
(that would be odd). Is there a conflict between using the same resource
IDs over and over between views?
I have debugged for hours on this and am baffled. Any clues or direction
would be greatly appreciated!
Thanks much.
Eric
- 15
- Visual Basic [VB] >> System.Diagnostics.ProcessHello All,
I have posted previously regarding the above assembly. I have created a 2
classes and an interface to mask the complexities of using the above
assembly. The purpose of the interface is to allow one to create any UI
that they wish to search for files using the program find.exe. All the user
has to do is implement the interface and instantiate the FileFinderControl.
Class: ProcessController (has two threads that montor StandardOutput and
StandardError, and two delegates and events to pass this information on to
the FileFinderControl which manipulates the IFileFinder Interface)
Class: FileFinderControl (manages the interactions between the
System.Diagnostic.Process and the IFileFinder Interface)
Interface IFileFinder (abstracts the UI implementation so multiple UIs can
be created)
My problem is that I cannot get this architecture to run without the
ProcessController stepping on memory and causing a fault. I can implement
System.Diagnostics.Process seperately but only within my GUI. In the GUI
implementation I use the Invoke method to communicate across the thread but
it does not work when implemented through an interface.
Any Suggestions?
Thanks,
Dan
|
| Author |
Message |
Neshra

|
Posted: Thu Feb 05 19:26:16 CST 2004 |
Top |
Visual Studio C++ >> LNK 2020 error ...
Hi,
I got the following link error in my release build:
-----------------------------------------
Linking...
LINK : error LNK2020: unresolved token (0A000020) _CrtDbgReport
LINK : fatal error LNK1120: 1 unresolved externals
-----------------------------------------
KB 323307 is not helpful to me, because I couldn't find "_CrtDbgReport" in my code using search. It must be from somewhere else, such as dlls, lib files, etc. But how can I track it down? How to fix it?
The debug build is ok.
Thanks,
Peter
Visual Studio63
|
| |
|
| |
 |
William

|
Posted: Thu Feb 05 19:26:16 CST 2004 |
Top |
Visual Studio C++ >> LNK 2020 error ...
"Peter" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> -----------------------------------------
> Linking...
> LINK : error LNK2020: unresolved token (0A000020) _CrtDbgReport
> LINK : fatal error LNK1120: 1 unresolved externals
> -----------------------------------------
This is a guess: Is there any chance that there could be a module compiled
with debug information in your release build?
Regards,
Will
|
| |
|
| |
 |
anonymous

|
Posted: Thu Feb 05 20:06:06 CST 2004 |
Top |
Visual Studio C++ >> LNK 2020 error ...
Will
I am almost sure that I didn't include anything compiled with debug mode. The only 3rd party lib is zlibstat.lib, which I built with 'release' mode
Thanks
Pete
----- William DePalo [MVP VC++] wrote: ----
"Peter" <EMail@HideDomain.com> wrote in messag
news:EMail@HideDomain.com..
> ----------------------------------------
> Linking..
> LINK : error LNK2020: unresolved token (0A000020) _CrtDbgRepor
> LINK : fatal error LNK1120: 1 unresolved external
> ----------------------------------------
This is a guess: Is there any chance that there could be a module compile
with debug information in your release build
Regards
Wil
|
| |
|
| |
 |
| |
 |
Index ‹ Visual Studio ‹ Visual Studio C++ |
- Next
- 1
- Visual Basic [VB] >> vb.net 2008 problem writing to sql 2005 express databaseHi
I am trying to write to a sql database, but the Update method is not
writing the data to the database.
I can view the data coming into the dataset grid ok and no errors are
generated.
I'm really stuck now :/
Private Sub addrow_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles addrow.Click
Dim NewMeetingRow As meetinginfoDataSet.MeetingRow
NewMeetingRow = MeetinginfoDataSet.Meeting.NewMeetingRow()
newmeetingRow.Course = "new course"
MeetinginfoDataSet.Meeting.Rows.Add(NewMeetingRow)
MeetingBindingSource.EndEdit()
TableAdapterManager.UpdateAll(MeetinginfoDataSet)
End Sub
is there something missing here?
thanks ..
PK..
- 2
- Visual Studio C++ >> C++: mutable keywordHi All,
Mutable keyword can be used only with class and structure data members, that
are 'non-static' and 'non-const'.
Can someone tell me what is the reason behind this constraint?
Why 'static' and 'const' data members cannot be made mutable?
Thanks in advance
- 3
- Visual Basic >> Wrox Books sample code download siteThis is just an FYI, and to serve as a hit in anybody searching for
hours for Wrox sample code (like I have been).
Wrox Books went bankrupt recently. Their website and about 32 of their
titles were purchased by Wiley Press. Support for those books is still
available at www.wrox.com.
The REST of the books appear to have been purchased by Apress. Sample
code for THOSE Wrox books is available at support.apress.com. Apress
also bought some or all Glasshaus books.
Anyway, in the hope that this will help somebody ...
Here's a list of the books Apress has sample code for (Sorry for the
length - I'm doing it for the Googlers!):
.NET Compact Framework
.NET Enterprise Development in C#: From Design to Deployment
.NET Enterprise Development in VB .NET: From Design to Deployment
A C# Application from Inspiration to Implementation
A Preview of Active Server Pages +
ADO 2.0 Programmer's Reference
ADO 2.1 Programmer's Reference
ADO 2.6 Programmer's Reference
ADO.NET Programmer's Reference
ADSI ASP Programmer's Reference
Advanced .NET Programming
Alex Homer's Professional ASP Web Techniques
Apache 2 Module Writer's Handbook
Apache Tomcat Performance Handbook
Apache Tomcat Security Handbook
Apache Tomcat Security Handbook
ASP 3.0 Programmer's Reference
ASP Programmer's Reference
ASP Programmer's Resource Kit
ASP to ASP.NET Migration Handbook: Concepts and Strategies for
Successful Migration
ASP.NET 1.0 Namespace Reference with C#
ASP.NET 1.0 Namespace Reference with VB.NET
ASP.NET Components Toolkit
ASP.NET Distributed Data Applications
ASP.NET E-Commerce Programming; Problem - Design - Solution
ASP.NET Mobile Controls Tutorial Guide
ASP.NET Programmer's Reference
ASP.NET Security
Assembly Language MasterClass
ATL COM Programmer's Reference
ATL Programmer's Resource Kit
AutoCAD 2000 VBA Programmer's Reference
AXIS Handbook
Axis: The Next Generation of Java SOAP
BEA WebLogic 7.0 Application Server Deployment and Administration
Handbook
Beginner's Guide to Access 2.0
Beginner's Guide to Access 95
Beginner's Guide to C++
Beginner's Guide to OOP Using C++
Beginner's Guide to QBasic
Beginner's Guide to Turbo Pascal
Beginner's Guide to Visual Basic 3.0
Beginner's Guide to Visual Basic 4.0
Beginner's Guide to Windows Programming with Turbo C++
Beginning .NET Web Services with C#
Beginning .NET Web Services with VB.NET
Beginning Access 95 VBA Programming
Beginning Access 97 VBA Programming
Beginning Access X VBA
Beginning Active Server Pages 2.0
Beginning ASP .NET 3rd Edition
Beginning ASP .NET E-Commerce
Beginning ASP Databases
Beginning ASP.NET Databases using C#
Beginning ASP.NET using C#
Beginning ASP.NET using VB.NET
Beginning ATL 3 COM Programming
Beginning ATL COM Programming
Beginning C
Beginning C#
Beginning C# Databases
Beginning C# Web Applications with Visual Studio .NET
Beginning C# XML: Essential XML Skills for C# Programmers
Beginning Components for ASP
Beginning Databases with MySQL
Beginning Databases with PostgreSQL
Beginning Delphi 2
Beginning E-Commerce with Visual Basic, ASP, SQL Server 7.0 and MTS
Beginning Excel VBA 2003
Beginning GTK+/GNOME Programming
Beginning J2EE 1.4
Beginning Java
Beginning Java 2
Beginning Java 2 - JDK 1.3 Version
Beginning Java Databases
Beginning Java Networking
Beginning Java Objects
Beginning Java Web Services
Beginning JSP 2.0
Beginning JSP Web Development
Beginning Linux Programming
Beginning Linux Programming 3rd Edition
Beginning MFC COM Programming
Beginning MFC Programming
Beginning Networking
Beginning Object-Oriented Analysis and Design with C++
Beginning Objects with Visual Basic 5
Beginning Oracle Programming
Beginning Perl
Beginning PHP 4 Databases
Beginning PHP 5
Beginning PHP, MySQL and Apache
Beginning Red Hat Linux 8.1
Beginning Site Server
Beginning SQL Programming
Beginning SQL Server 2000 for Visual Basic Developers
Beginning SQL Server 2000 Programming
Beginning VB.NET 2003 3rd Edition
Beginning VB.NET XML:Essential XML Skills for VB.NET Programmers
Beginning Visual Basic .NET
- 4
- 5
- MFC >> how to disable device in 98/meI have used the setup** group functions to realized the disabling of device
in 2k/xp.However the same code can not work in 98/me.Anybody know the
solution?
- 6
- MFC >> Help with TestHi,
I am trying to complete a test in MFC (which I am not very familiar with).
Any help would be greatly appreciated!!!!
Rules
· Create a grid of 20 Columns by 50 rows. Marks will be deducted
for using the Microsoft Flexgrid control.
· Each cell in the grid must display a random value between 1 and
999 inclusive.
· Each cell in the grid must allow for a threshold value to be set.
· If a threshold value has been set for a given cell, the cell's
background colour should adhere to the following conditions:
If the random value in the cell is...
§ Below the threshold value - background colour of cell changes
to RED
§ Equal to the threshold value - background colour of cell
changes to GREEN
§ Above the threshold value - background colour of cell changes
to YELLOW
· The randomly generated numbers displayed in the cells must
refresh every 5 seconds.
· The application must also have the ability to switch the refresh
ON/OFF
· The application must also allow for the font name and size for
the values displayed in the cell to be configurable.
- 7
- Visual Basic >> MSDN Help File problemHi guys, My MSDN VB help was working before but know, when
I'm trying to run it, it comes up with this error
message "Attempting to use an invalid compiled help(.chm)
file" with an OK button.
Thanks.
- 8
- MFC >> Catching a message in the App classHi all,
Is it possible to catch a message (such as WM_TIMER) in the app class?
When I try to do it, the compiler (VC.NET) encounters an error in the
message map entry which is....
error C2440: 'static_cast' : cannot convert from 'void (__thiscall
CivHostApp::* )(UINT)' to 'void (__thiscall CWnd::* )(UINT_PTR)'
Can anyone decipher this...??
Thanks.....
- 9
- Mcse >> OT: Beer thirtyI'm ducking out a few minutes early, so Lumbergh can't ask me to work
tomorrow. So 5:20 ET is beer-thirty for me. Enjoy your weekends...see you
Monday.
--
KB - MCNGP "silent thug" #26
first initial last name AT hotmail DOT com
- 10
- Visual Basic [VB] >> Problem viewing text of hyperlink column in datagridI am trying to retrieve the text within each cell in a datagrid in
order to change the color of each cell, depending on the value within
that cell.
This works fine on the cells that are bound columns, but returns an
empty string for the cells that are hyperlink columns.
Here is the code to retrive the text:
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
Dim x As Integer
For x = 0 To e.Item.Cells.Count - 1
Response.Write(e.Item.Cells(x).Text)
Next
End Sub
I have also tried, which gives me the error:
"Specified argument was out of the range of valid values. Parameter
name: index
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code.
Exception Details: System.ArgumentOutOfRangeException: Specified
argument was out of the range of valid values. Parameter name: index
Source Error:
Line 144: Dim H1 As HyperLink
Line 145: For x = 0 To e.Item.Cells.Count - 1
Line 146: H1 = e.Item.Cells(8).Controls(1)
Line 147: Response.Write(H1.Text)
Line 148: Next"
Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemDataBound
Dim x As Integer
Dim H1 As HyperLink
For x = 0 To e.Item.Cells.Count - 1
H1 = e.Item.Cells(8).Controls(1)
Response.Write(H1.Text)
Next
End Sub
This is how I am creating the datagrid:
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Init
'CODEGEN: This method call is required by the Web Form Designer
'Do not modify it using the code editor.
InitializeComponent()
Dim strSql As String = "exec dbo.uspSummaryMatrix"
Dim strCnn As String = "data source=xxxx;integrated
security=false;initial catalog=COPS;uid=xxxx;pwd=xxxx"
objCnn = New SqlConnection(strCnn)
objCmd = New SqlCommand
objCmd.CommandText = "dbo.uspSummaryMatrix"
objCmd.CommandType = CommandType.StoredProcedure
objCmd.Connection = objCnn
objCmd.Parameters.Add(New SqlParameter("@ItemID",
System.Data.SqlDbType.VarChar, 255))
objCmd.Parameters("@ItemID").Value = Request.QueryString("ID")
objCnn.Open()
Dim dReader As SqlDataReader
dReader = Nothing
dReader = objCmd.ExecuteReader()
Dim i As Integer
Dim count As Integer
count = 0
DataGrid1.GridLines = GridLines.Both
DataGrid1.AllowSorting = True
DataGrid1.BorderColor = Color.SlateGray
DataGrid1.BorderStyle = BorderStyle.Solid
DataGrid1.ShowHeader = True
DataGrid1.AutoGenerateColumns = False
DataGrid1.BackColor = Color.White
DataGrid1.AlternatingItemStyle.BackColor = Color.LightGray
DataGrid1.ItemStyle.ForeColor = Color.DarkSlateBlue
DataGrid1.ItemStyle.BackColor = Color.White
DataGrid1.HeaderStyle.Font.Bold = True
DataGrid1.HeaderStyle.ForeColor = Color.White
DataGrid1.HeaderStyle.BackColor = Color.DarkSlateBlue
DataGrid1.Width = Unit.Percentage(100)
DataGrid1.CellPadding = 2
Dim datagridcol
Dim strcolor As String
Do While dReader.Read
If count = 0 Then
For i = 0 To dReader.FieldCount - 1
If InStr(dReader.GetName(i), "container") Then
datagridcol = New BoundColumn
datagridcol.headertext =
Replace(dReader.GetName(i), "c", "C")
datagridcol.datafield = dReader.GetName(i)
DataGrid1.Columns.Add(datagridcol)
End If
If InStr(dReader.GetName(i), "Word") Then
datagridcol = New HyperLinkColumn
datagridcol.HeaderText =
Replace(dReader.GetName(i), "Word", "")
datagridcol.DatatextField = dReader.GetName(i)
End If
If InStr(dReader.GetName(i), "Link") Then
datagridcol.datanavigateurlfield =
dReader.GetName(i)
datagridcol.datanavigateurlformatstring =
"UsageDocuments2.aspx?ID={0}"
datagridcol.target = "iframedocument"
DataGrid1.Columns.Add(datagridcol)
End If
Next
End If
count = count + 1
Loop
dReader.Close()
objDataAdapter = New SqlDataAdapter(objCmd)
objDataSet = New DataSet
objDataView = New DataView
objDataAdapter.Fill(objDataSet)
objDataView.Table = objDataSet.Tables(0)
DataGrid1.DataSource = objDataView
DataGrid1.DataBind()
objCnn.Close()
End Sub
I have also considered creating a template column with a hyperlink
inside the template, but I'm not too sure how to do this or access the
text value within the template column.
Any advice or help is greatly appreciated!
Thank you in advance!
Jill
- 11
- Mcse >> Puntuaciones minimas.Hola a todos.
Tengo intencion de comenzar mi andadura en el duro camino MCSE 2003, pero
antes de nada me gustaria tomarle el pulso y para ello necesito saber que
puntuaciones minimas se exigen para pasar cada uno de los examenes.
¿hay algun tanto por ciento estipulado? ¿depende de cada examen?.
Gracias.
- 12
- Visual Studio C++ >> MSXML.DLLHello,
I have a problem DLL version of MSXML. In my application, I have the
following statements
#import <msxml.dll> named_guids
using namespace MSXML;
I create the instance using CoCreateInstance and use the functionality etc.
etc.
On one of my customer m/c I got an errror like "CLASS_E_NOAGGREGATION". I
was shipping msxml.dll and later I found that msxml3.dll msxml3a.dll
msxml3r.dll are required.
Can anyone explain this?. though I import msxml.dll but still the appln
neads other dlls.
Thanks
Subhash
- 13
- Mcse >> High importance (for me at least jejeje): Audit toolHi all!!!
I am working as System Administrator in a company and i am going to have
an audit next month. The problem is that they want me to have a list
with all files an user can access. I think it is not very common, but
who listen to me???? my boss???? jejeje. So i have to find a solution.
Is there any tool which look through the file system and selecting an
user gives you the files and folders where he/she/it has access?????? or
something like that
Thanks a lot in advance
Diego
- 14
- Visual Basic >> Anyone have the SSPP32.DLL file for SSDBGrid ?I have all files except the sspp32.dll file to open the property pages...
...still using the DataWidgets 2.0 in VB6 from Sheridan, but lost this file
when I changed computer.
If you have it (should be stored in the system32 map), please mail it to me,
or the group.
My mail is: noren_hans @ hot Mail. com (remove spaces)
/Hans
- 15
- Visual Studio C++ >> #import extensionIve got a load of code from an old unix box which I need to port to VC,
unfortunatly it uses #import to ensure single inclusion of header files
(instead of #include). I dont really fancy changing all the #imports to
#includes and adding #define inclusion protection.
After looking at the VC documentation for #import I was wondering, can I
make a simple type library that would allow me to do
#import "myheaderfile.h"
And which would do the same as a #include with #pragma (once) inside ?
Rich
|
|
|