Prashweenet's Q&A profile
Visual Studio Express Editions short cut activation over network not allowed
Hi, I installed one vbe express project(which creates some excel file) in server. I am trying to access that vbe express edition project exe file from server to terminal system. But i can't. That exe file working fine in server. Error message is: short cut activation over network not allowed what is the problem. Any suggestions please Thanks details: PLATFORM VERSION INFO Windows : 5.2.3790.60051 (Win32NT) Common Language Runtime : 2.0.200.42 System.Deployment.dll : 2.0.200.42 (RTM.0500-4200) mscorwks.dll : 2.0.200.42 (RTM.0500-4200) dfdll.dll : 2.0.200.42 (RTM.0500-4200) SOURCES Deployment url : file://server/tspolicies$/officeuser/StartMenu/Programs/Range.exe.appref-ms ERROR SUMMARY Below is a ...Show All
SQL Server sql job
I need to create a job that running once per sec (around the clock)...checking/update status tables. Can I do this inside sql 2000 server other than using external means(e.g. NT Service) Thanks all! As you can assume , there is a value missing. 0x1 2^0, 0X4 2^2,0X8 2^3, what is missing in the row :-) 2^1 = 0X2, this is an undocumented option in SQL Server which enables you to create jobs which can be executed per second. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Visual Studio Express Editions Hot keys
How can i make a "Hot Key" to something... lets say i want in a key press of Acssi #13 will Close application lets say or anything... .....in VB6 i used to do that using the Acssi API .....Finding etch keyboard button code with keycode and thats it.... i know its probablly obsolete way for .NET...any clues how to do it .. Here is a short answer and a long one. The short one: events . The long one: Events are there to deal with that kind of things. It's not just that they are able to do it, they are the way it should be done! What you want to achieve is task of the KeyPress event, which is intended to allow you responding to keystrokes by the user. The first approach ...Show All
.NET Development delete and update code at the same button cause concurrency violation !!!
hi although the user for the application and the access database is one user i write the code for delete and save at the same time that gives exception says "concurrency violation the delete command affected 0 of expected rows" and i resolve this by merging a fresh copy of the table to it but also the concurrency violation occurs !!!! can any one help me this i want to stop all of concurrency violation happens at many positons of the application although the user for the access database is one user thanks in advance You will see this error if the save is updating the same database record as the delete and the save occurs first. The fix is generally to alter your code so that if the record is going to b ...Show All
Microsoft ISV Community Center Forums Access data to Excel workbook
Hi I use Access VBA to export a recordset into an Excel template. I then save the template as a .xls file. Everything works fine except when I open the Excel file the Workbook is hidden. I have to use Menu:Window:Unhide to unhide the workbook. How can I fix this with VBA from Access Thx Code------------------------------------ Set xl = CreateObject("Excel.Application") Set xlWrkBk = GetObject(FPath & "/FS_Template.xlt") Set xlsht = xlWrkBk.Worksheets("Window & Exterior Door Schedule") do the recordset stuff into cells FName = xl.Application.GetSaveAsFilename xlWrkBk.SaveAs FileName:=FName Set xlsht = Nothing Set xlWrkBk = Nothing Set xl = Nothing ...Show All
SharePoint Products and Technologies Anonymous Access & Variations
Hi If I create a new publishing site and enable anonymous access to this site users don't need to login. This seems to work. But when I enable variations for this site the user is requested to enter a user name and password. No anonymous access anymore exept for the pages which are under the root site. How can I use anonymous access with variations Markus Markus, Any progress We have exactly the same issue. Anonymous access everywhere except the root. And yes, we are using variations. ...Show All
SharePoint Products and Technologies Adding users
Hi, I created a top level website using wss 3.0 Now I added two groups "Users" and "Admin" I'm adding the users from ADS.....problem I'm facing is that now I want to add a user in both the groups.....when I do this I have to first select a group and then add the user and then select second group and again add the same user to this group.... Cant I assign multiple groups at a single place for a user.... Thanks MK I find it easier to set up groups in Active Directory, where you can in fact add a user to multiple groups in a single dialog. You can then add each AD group as the single member of the corresponding SharePoint group to achieve what you seem to wa ...Show All
Smart Device Development _WIN32_WCE is hex and not decimal in VS2005
I just noticed something and I can't figure out how it's working at all for anybody. Surely I'm missing something obvious. If I make a new project in eVC 4.0 then the project settings will define the following: _WIN32_WCE=$(CEVersion) So for my Pocket PC 2003 configuration _WIN32_WCE winds up having a value of 420 (decimal). This makes sense since all of the Windows CE Platform SDK's compare this constant with decimal values like 300, 420, and 500. However if I create a new Smart Device project in VS2005 then the project settings define the following: _WIN32_WCE=$(CEVER) But this time $(CEVER) is defined as 0x420 ( hex ). Now all of the comparisons are incorrect. Am I missing something here Surely this isn't a bug in VS20 ...Show All
Visual Studio Team System Visio for Enterprise Architects and Team Edition for Database Professionals
Hi there, I haven't yet performed the install but I have a question about Visio EA and DBPro. I have had a quick look around but haven't found a definitive answer to the question below... If I just have DBPro installed can I also install Visio EA or do I need to have an Architect Edition installed as well Cheers, James Visio belongs to the MS Office line, not to Visual Studio. The installation of one does not affect the other installation or the prerequisites.. HTH Alle ...Show All
Visual Studio Team System Conditional field rules for field values
I'm trying to make a field readonly except for the creator of a work item. I know that I can use the <READONLY not="Group/User" to restrict readonly access to a particular group etc. What I want to do is restrict ability to change the assignedto field to the person who created the work item. The rule I'd like to exist is <FIELD name="System.AssignedTo"> <READONLY not="System.CreatedBy" /> </FIELD> This fails in the import process Am I missing something obvious Thanks for the posts, this is helpful info. I'm in the process of testing it, but from the outset, it seems like it's exactly what I'm looking for. I'll update if this is a suitable solution. Thanks. Paul Langan. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Runtime model loading
I am trying to make a level editor with XNA. Unfortunately, I've run into a little snag. I need to load a model from a user chosen location, but as far as i know models need to be first loaded into the programming solution before they can be loaded through the content manager. Is there anyway to do this at runtime fora model thats not part of the solution As long as you can get the models into the .xnb format using MSBuild or VS on the back end, your app should be able to load them at run time. You need to derive from ContentManager and override OpenStream to read assets not stored in the local file system. Won't work on XBox, though. ...Show All
.NET Development Connecting to ORACLE 10G XE
How can i create a connection string for oracle 10g xe from vb.net to access the data. The database is at remote location Unfortunately I am not an Oracle DBA and I'm not familiar with your environment. If you have questions with respect to configuring the client software you may want to post a question to an Oracle newsgroup or forum. The following contains some information about creating a DSN: http://www.aspfree.com/c/a/VB.NET/Displaying-an-Oracle-10G-XE-Table-with-Visual-Basic-6/2/ ...Show All
SQL Server Dual Y-Axes
Greetings, I'm wondering if it is possible to have two independent y-axes on a single chart I am wanting to plot data using a hybrid bar/line chart and have the values for the vertical bars show on the left y-axis and the values for the points on the line show on the right y-axis. I've seen this sort of thing done on other platforms before, but don't know if it is possible with SQL Reporting. We are using SQL RS 2000 by the way. Thanks -- Anthony Keep in mind that the CustomReportItem-based extensibility (such as "Dundas Charts for Reporting Services" or similar offers from other third parties) are available for SSRS 2005 only in Standard, Enterprise, or Developer Editions. It is not available for SSR ...Show All
Visual Studio Express Editions seek function in CFile..
Hello all, can i use seek seek function to determine the no. of bytes of a file my coding is try { CFile cfile_object("D:\\IW-Workspace\\yogi\\file1.pmd",CFile::modeRead); int r=cfile_object.Seek(0,CFile::end); char szSampleText[100]; UINT lBytesRead = cfile_object.Read(szSampleText,100); AfxMessageBox(szSampleText); CFile object; object.Open( "D:\\IW-Workspace\\yogi\\filenew1.excel",CFile::modeCreate|CFile::modeReadWrite); object.Write (szSampleText,100); } catch(CFileException e) { AfxMessageBox("error"); } and i want to pass the no of bytes to that character array... can u please help me.... Ahh - just answered your other post. So you figured ou ...Show All
Smart Device Development Compact Framework 2.0 / Web Service Performance
Hi all, I want to connect to my sql server 2005 database from a device (there is compact framework 2.0 on it). But i can do this by connecting to database directly or by using web services. I want to ask you that which one will show better performance Regards.. sourvil wrote: Hi all, I want to connect to my sql server 2005 database from a device (there is compact framework 2.0 on it). But i can do this by connecting to database directly or by using web services. I want to ask you that which one will show better performance Regards.. ...Show All
