CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: firoz.raj

Page 1 of 37 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    821

    Re: help in controlling The Net Traffic

    try the following link . hope it might help .


    [url]http://www.bigresource.com/VB-internet-application-speed-ESvS2JEFNw.html
  2. Replies
    3
    Views
    961

    Re: Fields or Properties?

    filed is the variable in C# . just like
    Private double _hours ; // here _hours is field .

    normally fileld value are stored in the Property .



    public double Hours { get {...
  3. Replies
    2
    Views
    955

    Re: Creating a grid in vb

    as database table itself is in 2D . so you can fill your 2D table of your database in one call .see the following . hope it might help .

    Private Sub Form_Load()
    Dim con As New ADODB.Connection...
  4. Re: MS Word 2013 or Windows 8.1 coerces SaveAs path to user's Documents directory

    try to save your word doucumnet at the following way . hope it might help .


    Private Sub MakeWordDoc(ByVal file_name As String, ByVal _
    title As String, ByVal body As String)
    Dim word_app...
  5. Replies
    5
    Views
    6,757

    Re: [VB6] - how mask the textbox?

    You can try one of the following way .as Dglinena suggested in #2.


    Function IsMultiple(ByVal Number As Integer, ByVal Multiple As Integer) As Boolean
    If Number Mod Multiple = 0 Then
    ...
  6. Microsoft Sharepoint Designer 2007 Sharepoint content tab Issue

    Hi Friends,

    as i have Seen in Some of The Video at You tube . it shows Sharepoint Content . in the 3rd sstab cols. just after website .
    but when i clik new . it does not show sharepoint content ....
  7. Re: Run-time error '91': Object variable or With block variable not set

    at first,Your module1 code is also wrong . check the connection first .then try the following way .

    Global conn As ADODB.Connection
    Global rs As ADODB.Recordset
    Public Sub connect()
    Dim ctr As...
  8. Replies
    0
    Views
    1,248

    Connection string issue in 64 bit Machine

    Hi,Hannes and dataMiser
    i have been using 64 bit machine . and os as well 64 bit . the following connection string is working in vb.net .


    Dim con As New...
  9. Re: getting delimeted value from the list value

    actually i want to adapt the following code in c# .when it will work on vb.net . i would like to prefer to convert in C# . can you tell me
    why i am unable to get all the barcode in textbox2 from...
  10. Re: getting delimeted value from the list value

    i am storing date in list collection only .i don't want to save the list of barcode permanently in the database

    i simple want user will write no of barcode as much as he want in the text box...
  11. getting delimeted value from the list value

    Hi Friends,i want to add list of barcode in the textbox .which have multiline true .so what i want . i want to store all the textbox data in list mydelimeter list .i simple want when user click on...
  12. Replies
    13
    Views
    2,892

    Re: SerialPort Issue

    Still it is showing the same Result . let me know some more idea . it needs to show in one line .any help would be highly appreciated .


    private void SerialPortTest_Load(object sender,...
  13. Replies
    13
    Views
    2,892

    Re: SerialPort Issue

    i want to display 23 character in one line .i don't want to display the following text in two line . let me know please .


    "WELCOME TO SILICONSOFT IT"
  14. Replies
    13
    Views
    2,892

    Re: SerialPort Issue

    Hi Friends, problem is that . i simple want . it needs to print the Text in one line .why it is breaking in Second Line ?.let me know please . any help would be highly appreciated . 30785
  15. Replies
    13
    Views
    2,892

    Re: SerialPort Issue

    Hi Friends, problem is that . i simple want . it needs to print the Text in one line .why it is breaking in Second Line ?.
    let me know please . any help would be highly appreciated .
  16. Replies
    13
    Views
    2,892

    SerialPort Issue

    Hi Friends, the following code showing the Message at Customer Display System Which is on COM1 Port with Pc.
    the problem is that each time i am running the following code . it overwrites in the...
  17. Replies
    18
    Views
    16,602

    Re: Microsoft activesync Issue

    Hi Friends,again to this thread when i tried to update PDA .it says full update was not successful .can anyone
    tell me ? does the PDA SDK is also needed for our PDA device(Hope you person are aware...
  18. Replies
    1
    Views
    1,231

    Filling Property data into DataGridView

    hi friends , i have been trying to fill datagridView .but i am getting the folloiwng error .
    Error 2 The best overloaded method match for...
  19. Replies
    9
    Views
    7,668

    Re: CRC calculation

    please always write the code inside the code tags .it is more readable and much better .

    Private Sub Command1_Click()

    'increase sequence byte value
    Label1.Caption = Val(Label1.Caption) + 1
    ...
  20. Re: VB6 Program on Win7 32bit machine Run time error msg 0

    [quote]Here is the code that gives that error


    Login_Exit:
    On Error Resume Next
    Exit Sub
    Login_Err:
    MsgBox Errors.Count

    Never use on error resume next .remove this line .and look the...
  21. Re: Runtime error '440': unable to make connection,ORA-06413

    as Datamiser suggested .use Ado it is Thousend time better .any Way the following way i connect the oracle database .
    whether it is 9i,10g & 11g Database .that is really no Issue .and it is working...
  22. Replies
    3
    Views
    1,183

    Re: Minimizing a Loaded Application and More

    [/FONT][/COLOR]


    try the following ! .


    Module Module1

    Sub Main()
    dim x as string
  23. Replies
    10
    Views
    1,641

    Re: Dictonary Collection Issue

    if brandcls is not added we need to add .so now it is ok .


    public void AddBrand(BrandCls brandClass){
    Byte key = brandClass.Brandid;
    if...
  24. Re: Hi i have a form and i want to know how to save pictures to it?

    Did you write anything if so please provide what you have written ? .we will give more suggestion .anyway if you want to put the picture .so that when user run the project every time picture will...
  25. Replies
    10
    Views
    1,641

    Re: Dictonary Collection Issue

    30221

    Hi Arjay. why it says count=0 .after collecting so many property .


    public void AddBrand(BrandCls brandClass)
    {
    Byte key = brandClass.Brandid;
    if...
Results 1 to 25 of 916
Page 1 of 37 1 2 3 4





Click Here to Expand Forum to Full Width

Featured