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 Chriss Miller 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: wawanz
  • Content: Threads
  • Order by date
  1. wawanz

    ManagedCompiler?

    Dear guys, I'm using C# 2.0, I have a Windows application that references several dll's. Each time I modify a particular dll, I have to recompile the other dll's that references it, and finally compile the application that references all those dll's. I'm thinking of building a console...
  2. wawanz

    Concat dimension attributes

    Hi all, I'm using SSAS 2005. How do I concatenate two attribute values? For instance, I have two columns: Customer ID="001" and Customer Name="Mike". I want to make it display as one level in the hierarchy. Something like "Mike (001)". Thanks guys.
  3. wawanz

    Sorting Time Dimension

    Hi all, I have a similar problem with thread960-584412. My time dimension have these attributes: Time_Key, Full_Date, Year_Num, Semester_Num, Qtr_num,...and so on. When I created the hierarchy, I have an attribute Week_Name (NameColumn) with Week_Num as the KeyColumn. I already used the OrderBy...
  4. wawanz

    FETCH FIRST

    Hi guys...I have table Y with 700 records, with, say, two columns: column A, column B. I want to update column A with data from a column in table X but, table X only has 50 records. So what I'm trying to do is, update the first 50 rows of column A with data from table X, then loop back to the...
  5. wawanz

    self-install cab file on windows mobile?

    Hi, I'm developing a mobile application for Windows Mobile devices using VB.NET and C#. Everytime I need to upgrade my application on the devices I had to copy the cab file to the device and then click the cab file so it would install. It's a real problem because I had to do it for hundreds of...
  6. wawanz

    windows service to run a vb6.exe

    Hi, I'm planning to develop a windows service on my server, with a filesystemwatcher to watch a certain .zip file. If the .zip file has changed, then the service would launch a VB6 exe. Considering a service can run without having to log on to the server, would the VB6 exe run without logging on...
  7. wawanz

    remote access?

    Hi, I wrote an application (with tek-tips' help, of course) using VB6 and pcAnywhere object, via dial up modem to modem. The application did: 1. send a text file to the host pc via dial up(aaa.txt) 2. run an .exe on the host computer that would generate a text file (bbb.txt) 3. retrieve the...
  8. wawanz

    do I need administrator password?

    Hi, I developed a VB application, with a pcAnywhere object in it. This application's task is to send a .txt file to the remote computer and run an .exe file on the remote computer. I have 3 remote computers. It works fine with 2 computers (logged in as 'administrator'), but the 3rd one is not an...
  9. wawanz

    start an SQL Server from code

    Hi guys, I want to start/stop an MS SQL Server from my VB6 application. Is that possible? Can anyone guide me?
  10. wawanz

    deleting top n

    Hi, if I wanted to select the top 100 records I do it with this query: "SELECT TOP 100 * FROM [table]"... My question is: what if I want to delete the top 100 records, can I do that? What's the query? Thanks
  11. wawanz

    VB6 Service Pack 5

    Hi...I just installed Service Pack 5 on my VB6. My question is: Let's say I have a VB6 application (aaa.exe) running on 50 pc's (Windows 2000). I compiled that aaa.exe using VB6 without the Service Pack. What if I made enhancements to that aaa.exe then compiled it using VB6 SP5, can I just...
  12. wawanz

    Upgrading from 4.6 to 8.5

    Hi, I'm a VB6 programmer and have always used the Crystal Reports (version 4.6 I think) that came with VB6.. I'm thinking of upgrading my Crystal Reports to 8.5 BUT I have worries: will it have the same procedure to call the report from my VB6 application? Example: when I want to show a report...
  13. wawanz

    last record always disappear

    I have one report (CR 4.6) with an Access data source. Every time I print it, it always comes out 1 record short...like if I have 30 records, then it would only print 29... Does anyone know what would be causing it? Is it group sections or suppressions? Help please...
  14. wawanz

    Multiple reports on 1 VB form..help

    Hi guys, I'm writing a VB6 application with Crystal Reports 4.6 And I have this 1 form (Report Manager) that would print many kinds of reports. And I'm using only 1 CrystalReport component on that form. And these reports, they vary in terms of number of formulas and some use...
  15. wawanz

    crsytl32.ocx

    Hi...I have a problem: I built an application with VB6 and Crystal Reports 4.6...The version number of crystl32.ocx that was included in my application: 4.6.3714 Things go fine on my client's computers, until I found out that one of the computers already has a crystl32.ocx version: 5.0.0.106 and...
  16. wawanz

    ADODC to show Excel file in a Datagrid,error

    I use this code to populate a datagrid with an Excel worksheet: '---- Adodc1.ConnectionString = "Driver={Microsoft Excel Driver(*.xls)};DBQ=" & cFileName & ";DriverID=790" Adodc1.RecordSource = "[" & cSheet & "$]" Adodc1.Refresh Set DataGrid1.DataSource...
  17. wawanz

    Cannot initialize data bindings

    Guys, I have a problem...I developed an application with VB 6.0 and SQL Server 7.0 on Win98.I installed the application on 3 client machines (Win2000,using INNO Setup). On one machine (power user) it works fine. But on the other 2 machines (normal users), everytime it loads a form with a...
  18. wawanz

    Using ADODC with password protected database

    I have a problem using adodc to access password protected database, I'm using stand alone PC, I got error message "Can't start your application. The workgroup information file is missing or opened exclusively by another user". anyone can help ? here are my code ...
  19. wawanz

    record numbers per group?

    Hi...I'm using Crystal Report 4.6(still,unfortunately) When I insert a Record Number field, I want the record number to restart from 1 for every group. I can summarize the number of records per group using the summary function, but I can't number the records per group. Help!
  20. wawanz

    multi-client application...cursor?

    Hi guys...I'm developing an application with VB6 and SQL Server 2000. I have thousands of records that would be updated simultaneously by multi-users. My goal is: if user A points to a record(I use datagrid), and user B is doing something with that particular record, I want a msgbox saying...

Part and Inventory Search

Back
Top